blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
327852485eb1f3b4825b61634653e4e1d89496c4
07756f3c0ea84d20caacae0565a11b8961ddb571
/mchf_PA.ino
df3d65b4f2b46b03b36a993f50ec86d0f4f9f8f9
[]
no_license
BG4RFF/K08_mchf_PA
f61865dccd0a28fcabb7cc510d192a6488cd0cf6
50fbf14e78a34cbbfcd04c94b723119e48e46e67
refs/heads/master
2021-04-27T02:01:41.826630
2017-02-21T14:51:00
2017-02-21T14:56:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,409
ino
#include <OneWire.h> #include <LiquidCrystal.h> #include <FreqCount.h> #include "VSWR.h" #include "K08PA.h" #include "ATU.h" PA_State PA; int Pvor_input = A1; int Prueck_input = A0; float Pvor = 0; float Prueck = 0; float Pvor_mw=0; float Prueck_mw=0; float VSWR,Uvor,Urueck; int current_band; //aktuelles Band basierend auf aktuell gemessener Frequenz void setup() { Serial.begin(9600); Serial.println("+++Test+++"); init_CBank(); init_LBank(); for (int a=22; a<43; a++) //definiere 6 Ausgänge (22-27) für den TX_Filter { //definiere 8 Ausgänge (28-35) für die Kondensatoren-Bank und den vorn/hinten-Schalter pinMode(a, OUTPUT); // definiere 7 Ausgänge (36-42) für die Spulen-Bank } for (int a=22; a<28; a++) { digitalWrite(a, HIGH); //setze die Ausgänge für den TX-Filter auf High, da Relais mit 0 angesteuert werden } switch_band(PA.band); //setze initial den höchsten TX-Filter! for (int a=29; a<43; a++) { digitalWrite(a, LOW); //setze die Ausgänge für die bistabilen ATU-Relais auf LOW } //pinMode(48, INPUT); //Eingang fuer den Temperatur Sensor pinMode(49, INPUT); //Eingang fuer PTT pinMode(50, OUTPUT); //Ausgang fuer PTT zur PA digitalWrite(50, LOW); //BIAS abschalten - PTT OFF lcd.begin(16, 4); //Display mit 4 Zeilen a 16 Zeichen lcd.print("K08 mchfPA"); set_Kapa(127); set_Kapa(0); set_Kapa_Position(0); set_Indu(127); set_Indu(0); FreqCount.begin(1); //Den Frequenzzaehler starten Torzeit=1ms -> 7500 entspr. 7.500MHZ analogReference(DEFAULT); //Nutzen der 5V als Analogreferenzquelle } void loop() { static unsigned long lcd_timer=0; PA.Fwd_Pwr_mW = getFwdPwr(Pvor_input); PA.Ref_Pwr_mW = getRefPwr(Prueck_input); if (PA.Fwd_Pwr_mW > 5) PA.VSWR=SWR(PA.Fwd_Pwr_mW,PA.Ref_Pwr_mW); PA.current=get_current(); if ((millis()-lcd_timer) > 200) //alle 200ms das LCD refreshen { PA.temp=getTemp(); refresh_lcd(PA.VSWR,PA.Fwd_Pwr_mW,PA.Ref_Pwr_mW, PA.freq, PA.band, PA.current, PA.temp, PA.PTT_in, PA.active); lcd_timer=millis(); } PA.PTT_in=get_PTT_status(); if (PA.PTT_in == true) // { if (PA.PTT_was_on==false) { PA.PTT_was_on=true; //delay(10); PA.freq=get_freq(); //PA.freq=3.6; if (PA.freq > 0.0) { current_band=get_band(PA.freq); //Achtung anpassen!!!!! - aktuelles Band der gemessenen Frequenz ermitteln if (current_band!=PA.band) // hat die aktuelle Frequenz den aktiven Filterbereich verlassen? { digitalWrite(50,LOW); PA.active=false; //Vermeiden, dass in das falsche Filter gearbeitet wird delay(30); switch_band(current_band); //Filter: Bandwechsel! PA.band=current_band; // im PA-Status neues Band speichern delay(30); PA.active=true; digitalWrite(50, HIGH); } else { //Band ist noch korrekt PA.active=true; digitalWrite(50, HIGH); } } } } else { PA.PTT_was_on=false; PA.active=false; digitalWrite(50, LOW); } }
[ "dl2fw@gmx.de" ]
dl2fw@gmx.de
4a40323ecc1086aa581f0f52e59a995caa9a50e1
cbbcfcb52e48025cb6c83fbdbfa28119b90efbd2
/lastpractice/longgraph/nodetoofar.cpp
e47b2a432311be1e970d3c3d40cb833ba7b44199
[]
no_license
dmehrab06/Time_wasters
c1198b9f2f24e06bfb2199253c74a874696947a8
a158f87fb09d880dd19582dce55861512e951f8a
refs/heads/master
2022-04-02T10:57:05.105651
2019-12-05T20:33:25
2019-12-05T20:33:25
104,850,524
0
1
null
null
null
null
UTF-8
C++
false
false
3,814
cpp
/*-------property of the half blood prince-----*/ #include <bits/stdc++.h> #include <dirent.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> #include <ext/pb_ds/detail/standard_policies.hpp> #define MIN(X,Y) X<Y?X:Y #define MAX(X,Y) X>Y?X:Y #define ISNUM(a) ('0'<=(a) && (a)<='9') #define ISCAP(a) ('A'<=(a) && (a)<='Z') #define ISSML(a) ('a'<=(a) && (a)<='z') #define ISALP(a) (ISCAP(a) || ISSML(a)) #define MXX 10000000000 #define MNN -MXX #define ISVALID(X,Y,N,M) ((X)>=1 && (X)<=(N) && (Y)>=1 && (Y)<=(M)) #define LLI long long int #define VI vector<int> #define VLLI vector<long long int> #define MII map<int,int> #define SI set<int> #define PB push_back #define MSI map<string,int> #define PII pair<int,int> #define PLLI pair<LLI,LLI> #define PDD pair<double,double> #define FREP(i,I,N) for(int (i)=(int)(I);(i)<=(int)(N);(i)++) #define eps 0.0000000001 #define RFREP(i,N,I) for(int (i)=(int)(N);(i)>=(int)(I);(i)--) #define SORTV(VEC) sort(VEC.begin(),VEC.end()) #define SORTVCMP(VEC,cmp) sort(VEC.begin(),VEC.end(),cmp) #define REVV(VEC) reverse(VEC.begin(),VEC.end()) #define INRANGED(val,l,r) (((l)<(val) || fabs((val)-(l))<eps) && ((val)<(r) || fabs((val)-(r))<eps)) #define INRANGEI(val,l,r) ((val)>=(l) && (val)<=(r)) #define MSET(a,b) memset(a,b,sizeof(a)) using namespace std; using namespace __gnu_pbds; //int dx[]={1,0,-1,0};int dy[]={0,1,0,-1}; //4 Direction //int dx[]={1,1,0,-1,-1,-1,0,1};int dy[]={0,1,1,1,0,-1,-1,-1};//8 direction //int dx[]={2,1,-1,-2,-2,-1,1,2};int dy[]={1,2,2,1,-1,-2,-2,-1};//Knight Direction //int dx[]={2,1,-1,-2,-1,1};int dy[]={0,1,1,0,-1,-1}; //Hexagonal Direction //typedef tree < int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update > ordered_set; int g[51][51]; int vis[51]; int v[51]; map<int,int>nodemap; void init(){ memset(g,0,sizeof(g)); memset(vis,-1,sizeof(vis)); nodemap.clear(); memset(v,0,sizeof(v)); } void bfs(int src , int n){ memset(vis,-1,sizeof(vis)); memset(v,0,sizeof(v)); vis[src]=0; v[src]=1; queue<int>nodes; nodes.push(src); while(!nodes.empty()){ int nw = nodes.front(); nodes.pop(); int ll = vis[nw]; FREP(i,1,n){ if(g[nw][i]==1 && !v[i]){ nodes.push(i); vis[i]=ll+1; v[i]=1; } } } return; } int getcnt(int nodes, int ttl){ int c = 0; FREP(i,1,nodes){ //cout<<v[i]<<" "<<vis[i]<<"\n"; if( !v[i] || vis[i]>ttl){ c++; } } return c; } int main(){ int n; int cs = 1; while(scanf("%d",&n)==1){ if(n==0)break; init(); int nodes = 0; FREP(i,1,n){ int u,v; scanf("%d %d",&u,&v); int nu, nv; if(nodemap.find(u)==nodemap.end()){ nodemap[u]=(++nodes); nu = nodes; } else{ nu = nodemap[u]; } if(nodemap.find(v)==nodemap.end()){ nodemap[v]=(++nodes); nv = nodes; } else{ nv = nodemap[v]; } g[nu][nv]=1; g[nv][nu]=1; } int nd,ttl; while(scanf("%d %d",&nd,&ttl)==2){ if(!nd && !ttl)break; if(nodemap.find(nd)==nodemap.end()){ printf("Case %d: %d nodes not reachable from node %d with TTL = %d.\n",cs++,nodes,nd,ttl); } else{ int mynode = nodemap[nd]; bfs(mynode,nodes); int ans = getcnt(nodes,ttl); printf("Case %d: %d nodes not reachable from node %d with TTL = %d.\n",cs++,ans,nd,ttl); } } } return 0; }
[ "1205112.zm@ugrad.cse.buet.ac.bd" ]
1205112.zm@ugrad.cse.buet.ac.bd
b8e8eae80e61ef6b7d2e07c3950f18666e708792
496b9366a80de251733410d933141d81dec74ff2
/Examples/00-Simple/Simple.cpp
c8ff39a13ef246659763d2937da2b2cf8095f7d5
[ "MIT" ]
permissive
GPUWorks/imgui-node-editor
88e9854cfa60cc69174c36ad56536e0639860beb
c718a87bab7d13ff5dfecbdc6e00538214195c61
refs/heads/master
2020-06-09T21:04:37.480015
2019-06-23T10:45:27
2019-06-23T10:45:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,150
cpp
# include "Application.h" # include <imgui_node_editor.h> # define IMGUI_DEFINE_MATH_OPERATORS # include <imgui_internal.h> namespace ed = ax::NodeEditor; static ed::EditorContext* g_Context = nullptr; void Application_Initialize() { ed::Config config; config.SettingsFile = "Simple.json"; g_Context = ed::CreateEditor(&config); } void Application_Finalize() { ed::DestroyEditor(g_Context); } void Application_Frame() { auto& io = ImGui::GetIO(); ImGui::Text("FPS: %.2f (%.2gms)", io.Framerate, io.Framerate ? 1000.0f / io.Framerate : 0.0f); ImGui::Separator(); ed::SetCurrentEditor(g_Context); ed::Begin("My Editor", ImVec2(0.0, 0.0f)); int uniqueId = 1; // Start drawing nodes. ed::BeginNode(uniqueId++); ImGui::Text("Node A"); ed::BeginPin(uniqueId++, ed::PinKind::Input); ImGui::Text("-> In"); ed::EndPin(); ImGui::SameLine(); ed::BeginPin(uniqueId++, ed::PinKind::Output); ImGui::Text("Out ->"); ed::EndPin(); ed::EndNode(); ed::End(); ed::SetCurrentEditor(nullptr); //ImGui::ShowMetricsWindow(); }
[ "michcic@gmail.com" ]
michcic@gmail.com
2794160a3329998e8bc8c94e853f89040f311acb
230b7714d61bbbc9a75dd9adc487706dffbf301e
/content/public/test/hit_test_region_observer.h
ab168b42e7b826aa23077cac4a8222f637bf6d47
[ "BSD-3-Clause" ]
permissive
byte4byte/cloudretro
efe4f8275f267e553ba82068c91ed801d02637a7
4d6e047d4726c1d3d1d119dfb55c8b0f29f6b39a
refs/heads/master
2023-02-22T02:59:29.357795
2021-01-25T02:32:24
2021-01-25T02:32:24
197,294,750
1
2
BSD-3-Clause
2019-09-11T19:35:45
2019-07-17T01:48:48
null
UTF-8
C++
false
false
2,876
h
// Copyright 2018 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 CONTENT_PUBLIC_TEST_HIT_TEST_REGION_OBSERVER_H_ #define CONTENT_PUBLIC_TEST_HIT_TEST_REGION_OBSERVER_H_ #include <memory> #include <vector> #include "base/optional.h" #include "base/run_loop.h" #include "components/viz/common/hit_test/aggregated_hit_test_region.h" #include "components/viz/common/surfaces/frame_sink_id.h" #include "components/viz/host/hit_test/hit_test_region_observer.h" namespace content { class RenderFrameHost; class WebContents; // TODO(jonross): Remove these once Viz Hit Testing is on by default and the // legacy content::browser_test_utils fallbacks are no longer needed. // // Waits until hit test data for |child_frame| has been submitted, see // WaitForHitTestData. void WaitForHitTestDataOrChildSurfaceReady(RenderFrameHost* child_frame); void WaitForHitTestDataOrGuestSurfaceReady(WebContents* guest_web_contents); // TODO(jonross): Move this to components/viz/host/hit_test/ as a standalone // HitTestDataWaiter (is-a HitTestRegionObserver) once Viz HitTesting is on by // default, and there are no longer dependancies upon content. // // Test API which observes the arrival / change of hit test data within a Viz // host. // // HitTestRegionObserver is bound to a viz::FrameSinkId for which it observers // changes in hit test data. class HitTestRegionObserver : public viz::HitTestRegionObserver { public: explicit HitTestRegionObserver(const viz::FrameSinkId& frame_sink_id); ~HitTestRegionObserver() override; // The following functions need to be called in order to wait for the change // in hit test data. The first one should be called before any potential // change to hit test data (to cache the current state) and the second one // should be called after the change. Note that if any change has occurred // after the call to WaitForHitTestData, WaitForHitTestDataChange will return // immediately and the desired data may not be returned. Looping until the // received data match the expected data should be useful in such case. void WaitForHitTestData(); void WaitForHitTestDataChange(); const std::vector<viz::AggregatedHitTestRegion>& GetHitTestData(); private: // viz::HitTestRegionObserver: void OnAggregatedHitTestRegionListUpdated( const viz::FrameSinkId& frame_sink_id, const std::vector<viz::AggregatedHitTestRegion>& hit_test_data) override; viz::FrameSinkId const frame_sink_id_; std::unique_ptr<base::RunLoop> run_loop_; std::unique_ptr<base::RunLoop> hit_test_data_change_run_loop_; std::vector<viz::AggregatedHitTestRegion> cached_hit_test_data_; DISALLOW_COPY_AND_ASSIGN(HitTestRegionObserver); }; } // namespace content #endif // CONTENT_PUBLIC_TEST_HIT_TEST_REGION_OBSERVER_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
8007f69978449d11b16651acec99392abbebd856
c4d0ddd9278e41e96e00facef891db3a2c202300
/API3D/API3D/API3D.cpp
74de3bb7be90b427db7dc61fd25da79088e9614b
[]
no_license
Bandyck/DirectX
5976020145fc61dd8201a2d86f57b588ab5fe840
c2d70ec7468d5857ed0684f930d91b0d8f160665
refs/heads/master
2022-12-21T03:20:46.464385
2020-09-22T08:37:48
2020-09-22T08:37:48
296,558,673
0
0
null
null
null
null
UTF-8
C++
false
false
3,701
cpp
#include "stdafx.h" #include "API3D.h" #include "cMainGame.h" // << : #define MAX_LOADSTRING 100 // >> : HWND g_hWnd; cMainGame * g_pMainGame; #define TIMER_ID 123 // << : // Global Variables: HINSTANCE hInst; // current instance WCHAR szTitle[MAX_LOADSTRING]; // The title bar text WCHAR szWindowClass[MAX_LOADSTRING]; // the main window class name // Forward declarations of functions included in this code module: ATOM MyRegisterClass(HINSTANCE hInstance); BOOL InitInstance(HINSTANCE, int); LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); int APIENTRY wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPWSTR lpCmdLine, _In_ int nCmdShow) { UNREFERENCED_PARAMETER(hPrevInstance); UNREFERENCED_PARAMETER(lpCmdLine); // TODO: Place code here. // Initialize global strings LoadStringW(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING); LoadStringW(hInstance, IDC_API3D, szWindowClass, MAX_LOADSTRING); MyRegisterClass(hInstance); // Perform application initialization: if (!InitInstance (hInstance, nCmdShow)) { return FALSE; } HACCEL hAccelTable = LoadAccelerators(hInstance, MAKEINTRESOURCE(IDC_API3D)); // >> : g_pMainGame = new cMainGame; g_pMainGame->Setup(); SetTimer(g_hWnd, TIMER_ID, 10, NULL); // << : MSG msg; // Main message loop: while (GetMessage(&msg, nullptr, 0, 0)) { if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) { TranslateMessage(&msg); DispatchMessage(&msg); } } // >> : KillTimer(g_hWnd, TIMER_ID); delete g_pMainGame; // << : return (int) msg.wParam; } ATOM MyRegisterClass(HINSTANCE hInstance) { WNDCLASSEXW wcex; wcex.cbSize = sizeof(WNDCLASSEX); wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc = WndProc; wcex.cbClsExtra = 0; wcex.cbWndExtra = 0; wcex.hInstance = hInstance; wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_API3D)); wcex.hCursor = LoadCursor(nullptr, IDC_ARROW); wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); wcex.lpszMenuName = MAKEINTRESOURCEW(IDC_API3D); wcex.lpszClassName = szWindowClass; wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_SMALL)); return RegisterClassExW(&wcex); } BOOL InitInstance(HINSTANCE hInstance, int nCmdShow) { hInst = hInstance; // Store instance handle in our global variable HWND hWnd = CreateWindowW(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, nullptr, nullptr, hInstance, nullptr); if (!hWnd) { return FALSE; } // >> : g_hWnd = hWnd; // << : ShowWindow(hWnd, nCmdShow); UpdateWindow(hWnd); return TRUE; } LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { // >> : if (g_pMainGame) { g_pMainGame->WndProc(hWnd, message, wParam, lParam); } // << : switch (message) { // >> : case WM_TIMER: if (g_pMainGame) g_pMainGame->Update(); InvalidateRect(g_hWnd, NULL, false); break; // << : case WM_CREATE: { } break; case WM_PAINT: { PAINTSTRUCT ps; HDC hdc = BeginPaint(hWnd, &ps); // << : if (g_pMainGame) g_pMainGame->Render(hdc); // >> : EndPaint(hWnd, &ps); } break; case WM_DESTROY: PostQuitMessage(0); break; default: return DefWindowProc(hWnd, message, wParam, lParam); } return 0; }
[ "bandyck@gmail.com" ]
bandyck@gmail.com
e9440ba57cdec7f99f33c345f7f638006f0d3972
abff3f461cd7d740cfc1e675b23616ee638e3f1e
/opencascade/IGESSolid_ToolConeFrustum.hxx
59cd011c7059bb37228c609cb199194636bff6bc
[ "Apache-2.0" ]
permissive
CadQuery/pywrap
4f93a4191d3f033f67e1fc209038fc7f89d53a15
f3bcde70fd66a2d884fa60a7a9d9f6aa7c3b6e16
refs/heads/master
2023-04-27T04:49:58.222609
2023-02-10T07:56:06
2023-02-10T07:56:06
146,502,084
22
25
Apache-2.0
2023-05-01T12:14:52
2018-08-28T20:18:59
C++
UTF-8
C++
false
false
3,040
hxx
// Created on: 1993-10-14 // Created by: Christian CAILLET // Copyright (c) 1993-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _IGESSolid_ToolConeFrustum_HeaderFile #define _IGESSolid_ToolConeFrustum_HeaderFile #include <Standard.hxx> #include <Standard_DefineAlloc.hxx> #include <Standard_Handle.hxx> #include <Standard_Integer.hxx> class Standard_DomainError; class IGESSolid_ConeFrustum; class IGESData_IGESReaderData; class IGESData_ParamReader; class IGESData_IGESWriter; class Interface_EntityIterator; class IGESData_DirChecker; class Interface_ShareTool; class Interface_Check; class Interface_CopyTool; class IGESData_IGESDumper; class Message_Messenger; //! Tool to work on a ConeFrustum. Called by various Modules //! (ReadWriteModule, GeneralModule, SpecificModule) class IGESSolid_ToolConeFrustum { public: DEFINE_STANDARD_ALLOC //! Returns a ToolConeFrustum, ready to work Standard_EXPORT IGESSolid_ToolConeFrustum(); //! Reads own parameters from file. <PR> gives access to them, //! <IR> detains parameter types and values Standard_EXPORT void ReadOwnParams (const Handle(IGESSolid_ConeFrustum)& ent, const Handle(IGESData_IGESReaderData)& IR, IGESData_ParamReader& PR) const; //! Writes own parameters to IGESWriter Standard_EXPORT void WriteOwnParams (const Handle(IGESSolid_ConeFrustum)& ent, IGESData_IGESWriter& IW) const; //! Lists the Entities shared by a ConeFrustum <ent>, from //! its specific (own) parameters Standard_EXPORT void OwnShared (const Handle(IGESSolid_ConeFrustum)& ent, Interface_EntityIterator& iter) const; //! Returns specific DirChecker Standard_EXPORT IGESData_DirChecker DirChecker (const Handle(IGESSolid_ConeFrustum)& ent) const; //! Performs Specific Semantic Check Standard_EXPORT void OwnCheck (const Handle(IGESSolid_ConeFrustum)& ent, const Interface_ShareTool& shares, Handle(Interface_Check)& ach) const; //! Copies Specific Parameters Standard_EXPORT void OwnCopy (const Handle(IGESSolid_ConeFrustum)& entfrom, const Handle(IGESSolid_ConeFrustum)& entto, Interface_CopyTool& TC) const; //! Dump of Specific Parameters Standard_EXPORT void OwnDump (const Handle(IGESSolid_ConeFrustum)& ent, const IGESData_IGESDumper& dumper, const Handle(Message_Messenger)& S, const Standard_Integer own) const; protected: private: }; #endif // _IGESSolid_ToolConeFrustum_HeaderFile
[ "adam.jan.urbanczyk@gmail.com" ]
adam.jan.urbanczyk@gmail.com
20bfe21770a75749bbd001e7ceae085e737dcfd3
a164137cccd11c91fedddeb4e8693177ea0ad7a4
/vendor/lazyfoo/ltimer.h
d1b158010d85b55c4ea67deb9bf1cde104ed90a2
[ "MIT" ]
permissive
tasaif/2dfgf
20dbbb5b1170541c246c7917e2d71c5c86ead0dc
699c6d28e67c8a913b42e6e772b3c3a5157a753e
refs/heads/master
2021-01-21T13:11:58.086982
2016-04-16T00:03:55
2016-04-16T00:03:55
52,074,256
0
0
null
null
null
null
UTF-8
C++
false
false
587
h
#ifndef LTIMER_H #define LTIMER_H #include <SDL.h> //The application time based timer class LTimer { public: //Initializes variables LTimer(); //The various clock actions void start(); void stop(); void pause(); void unpause(); //Gets the timer's time Uint32 getTicks(); //Checks the status of the timer bool isStarted(); bool isPaused(); private: //The clock time when the timer started Uint32 mStartTicks; //The ticks stored when the timer was paused Uint32 mPausedTicks; //The timer status bool mPaused; bool mStarted; }; #endif
[ "saif.tareq@gmail.com" ]
saif.tareq@gmail.com
11de8b69c0c511a3a96be1d509cdf974dca957d1
6a1436c6c937348d1389877d37204f2cd14336ab
/c++/classes/operator_overloading/member_double_argument_plus_operator.cpp
ce0c45c12340b170631939de4d141966d660c6e6
[]
no_license
katheroine/languagium
45bdc9888ca20121b16c3d19f5e60d7524b11726
d5ebfb4d8050e2a24bc4ca98be0edf7167e4bfee
refs/heads/main
2023-09-01T21:21:44.848400
2023-08-23T12:09:18
2023-08-23T12:09:18
231,378,443
0
0
null
null
null
null
UTF-8
C++
false
false
1,995
cpp
#include <iostream> class Folder { public: Folder(int folder_capacity = 3): capacity(folder_capacity) { files = new std::string[capacity]; } Folder(const Folder &folder_pattern): capacity(folder_pattern.capacity) { files = new std::string[folder_pattern.capacity]; for (int i = 0; i < folder_pattern.capacity; i++) { files[i] = folder_pattern.files[i]; } } ~Folder() { delete [] files; } int getCapacity() const { return capacity; } std::string getFile(int index) const { std::string result_file = ""; if (index < capacity) result_file = files[index]; return result_file; } void show() { for (int i = 0; i < capacity; i++) { std::cout << files[i] << std::endl; } } void putFile(int index, std::string file) { if (index >= capacity) return; files[index] = file; } Folder operator+(const Folder &folder) const; private: const int capacity; std::string *files; }; Folder Folder::operator+(const Folder &folder) const { int result_capacity = getCapacity() + folder.getCapacity(); Folder result_folder(result_capacity); int i = 0; for(int j = 0; j < getCapacity(); i++, j++) { std::string file = getFile(j); result_folder.putFile(i, file); } for(int j = 0; j < folder.getCapacity(); i++, j++) { std::string file = folder.getFile(j); result_folder.putFile(i, file); } return result_folder; } int main() { Folder briefcase; briefcase.putFile(0, "document"); briefcase.putFile(1, "blueprint"); briefcase.putFile(2, "photo"); briefcase.show(); std::cout << std::endl; Folder manila(2); manila.putFile(0, "article"); manila.putFile(1, "manual"); manila.show(); std::cout << std::endl; Folder archieve = briefcase + manila; archieve.show(); std::cout << std::endl; Folder file(1); file.putFile(0, "paper"); Folder storage = file + manila + briefcase; storage.show(); std::cout << std::endl; }
[ "katheroine@gmail.com" ]
katheroine@gmail.com
9a07a9ba8b87d7e691b418a0407f47aab0cb8171
4d69aa02ebdb11f68683dfb5e7b58d4830ca6ce6
/RTTheNextWeek/aabb.h
aa9e2f41f5e82c9897b3a5fcf98b0492b6d5a2d3
[]
no_license
CU2018/CPU-Ray-Tracer
0622b50bfe5899b7da54331157b212325ef93cc4
326550638d483db878b2cd0b969d11220caa97c5
refs/heads/master
2023-01-11T04:41:34.620867
2020-10-13T18:15:25
2020-10-13T18:15:25
303,775,758
0
0
null
null
null
null
UTF-8
C++
false
false
1,709
h
#ifndef AABB_H #define AABB_H #include "rtweekend.h" class aabb { public: aabb() {} aabb(const point3& a, const point3& b) { _min = a; _max = b; } point3 min() const { return _min; } point3 max() const { return _max; } bool hit(const ray& r, double tmin, double tmax) const { //for (int a = 0; a < 3; a++) { // auto t0 = fmin((_min[a] - r.origin()[a]) / r.direction()[a], // (_max[a] - r.origin()[a]) / r.direction()[a]); // auto t1 = fmax((_min[a] - r.origin()[a]) / r.direction()[a], // (_max[a] - r.origin()[a]) / r.direction()[a]); // tmin = fmax(t0, tmin); // tmax = fmin(t1, tmax); // if (tmax <= tmin) // return false; //} //return true; // optimized AABB hit for (int a = 0; a < 3; a++) { auto invD = 1.0f / r.direction()[a]; auto t0 = (min()[a] - r.origin()[a]) * invD; auto t1 = (max()[a] - r.origin()[a]) * invD; if (invD < 0.0f) std::swap(t0, t1); tmin = t0 > tmin ? t0 : tmin; tmax = t1 < tmax ? t1 : tmax; if (tmax <= tmin) return false; } return true; } public: point3 _min; point3 _max; }; aabb surrounding_box(aabb box0, aabb box1) { point3 small(fmin(box0.min().x(), box1.min().x()), fmin(box0.min().y(), box1.min().y()), fmin(box0.min().z(), box1.min().z())); point3 big(fmin(box0.max().x(), box1.max().x()), fmin(box0.max().y(), box1.max().y()), fmin(box0.max().z(), box1.max().z())); return aabb(small, big); } #endif
[ "42912106+CU2018@users.noreply.github.com" ]
42912106+CU2018@users.noreply.github.com
bb5878c7dbae17084c2ee2cb43ade726bfecfd34
f9707ad99bbebd08139d25084a0949bc261ec548
/src/ice/json/types.cc
79c6776ce4627af1cd5a47d9493ae942ca97988a
[ "LicenseRef-scancode-gary-s-brown", "BSD-3-Clause", "MIT", "Zlib", "BSL-1.0", "BSD-2-Clause" ]
permissive
respu/ice
b804c483f4bed983ac8b5924c8efd0fb25decd13
b8461846dd5316095b0a89e82f0995716c16701b
refs/heads/master
2021-01-14T13:48:50.631194
2016-04-19T18:03:40
2016-04-19T18:03:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
626
cc
#include <ice/json/types.h> #include <ice/json/exception.h> #include <ice/json/value.h> #include <sstream> namespace ice { namespace json { std::ostream& operator<<(std::ostream& os, json::type type) { switch (type) { case json::type::null: return os << "null"; case json::type::boolean: return os << "boolean"; case json::type::number: return os << "number"; case json::type::string: return os << "string"; case json::type::array: return os << "array"; case json::type::object: return os << "object"; } return os << "unknown (" << static_cast<int>(type) << ")"; } } // namespace json } // namespace ice
[ "alexej.h@xiphos.de" ]
alexej.h@xiphos.de
a1c557081ddd7870c9a82144ffc9107e79ba68e7
bf897e4ab8a114e2f7a90a836a18dd6c09bcc070
/try/list.h
a8ab7b4ad0786ba14b746b4048752cdd7a08569e
[]
no_license
PVLam/DataStructures
6f249f904f6686cb89e8c8ba431df2dcb5885b93
d41c90c86be545e31b7e8e1b97e935f6d7009f19
refs/heads/master
2020-03-28T15:09:58.616887
2018-09-27T03:40:02
2018-09-27T03:40:02
148,562,782
0
0
null
2018-09-13T01:14:41
2018-09-13T01:14:41
null
UTF-8
C++
false
false
1,336
h
#ifndef list_h #define list_h #include "node.h" template<class T> class List { private: Node<T> *head; public: List(): head(0){}; List(T const &val, int const &loop) { head =0; for(int i=0; i < loop; i++) { Node <T>*n = new Node<T>; n->data = val; n->next = 0; if(head == 0) { head = n; } else { Node<T> *p = head; while( p->next != 0 ) { p = p->next; } p->next = n; } } }; void pushBack(T v) { Node<T> *n = new Node<T>; n->data = v; n->next = 0; if(head == 0) { head =n; } else { Node <T> * p = head; while( p->next != 0 ) { p = p->next; } p->next = n; } }; void deleteAt(int const &pos) { if(pos ==1) { Node<T> *p = head; head = head->next; delete p; return; } Node<T> *p = head; for(int i=1; i< pos-1; i++) { p = p->next; } Node<T> *q = new Node<T>; q = p->next; p->next = p->next->next; delete q; }; void deletebyValue(int v) { Node<T> *n = new Node<T>; n->data = v; n->next = 0; while() } int Size()const { Node<T> * p = head; int counter=0; while(p!= 0) { counter++; p=p->next; } return counter; }; void print() { Node<T> *p = head; while(p != 0) { cout<<p->data<<" "; p = p->next; } cout<<endl; }; }; #endif
[ "phamphamhai99@gmail.com" ]
phamphamhai99@gmail.com
ddbe40079c0ccc1b95856f75a90a8e4930d89ab9
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE122_Heap_Based_Buffer_Overflow/s04/CWE122_Heap_Based_Buffer_Overflow__cpp_CWE806_char_ncpy_52c.cpp
df8d1aa3acc6d9430242c81234ff351254fea308
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C++
false
false
1,691
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE122_Heap_Based_Buffer_Overflow__cpp_CWE806_char_ncpy_52c.cpp Label Definition File: CWE122_Heap_Based_Buffer_Overflow__cpp_CWE806.label.xml Template File: sources-sink-52c.tmpl.cpp */ /* * @description * CWE: 122 Heap Based Buffer Overflow * BadSource: Initialize data as a large string * GoodSource: Initialize data as a small string * Sink: ncpy * BadSink : Copy data to string using strncpy * Flow Variant: 52 Data flow: data passed as an argument from one function to another to another in three different source files * * */ #include "std_testcase.h" #include <wchar.h> namespace CWE122_Heap_Based_Buffer_Overflow__cpp_CWE806_char_ncpy_52 { /* all the sinks are the same, we just want to know where the hit originated if a tool flags one */ #ifndef OMITBAD void badSink_c(char * data) { { char dest[50] = ""; /* POTENTIAL FLAW: Possible buffer overflow if data is larger than dest */ strncpy(dest, data, strlen(data)); dest[50-1] = '\0'; /* Ensure the destination buffer is null terminated */ printLine(data); delete [] data; } } #endif /* OMITBAD */ #ifndef OMITGOOD /* goodG2B uses the GoodSource with the BadSink */ void goodG2BSink_c(char * data) { { char dest[50] = ""; /* POTENTIAL FLAW: Possible buffer overflow if data is larger than dest */ strncpy(dest, data, strlen(data)); dest[50-1] = '\0'; /* Ensure the destination buffer is null terminated */ printLine(data); delete [] data; } } #endif /* OMITGOOD */ } /* close namespace */
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
624fc24775f7fda599ca22037c358e0161c1a0cd
c925d488f6f60bd31278319bf8b099d5d8d93ede
/Reverse_Linked_List_II.cpp
89ccd018bd205369c0ed48b3f6b516efb34d9486
[]
no_license
ShailendraAgarwal/LeetCode-1
ba24af46752d8a284b2582c42f931af36b8ac068
2155036b1f0423c22a446128f95b024f2e6a37c5
refs/heads/master
2021-01-16T20:55:02.417735
2013-03-06T07:36:02
2013-03-06T07:36:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,632
cpp
/* Author: Timon Cui, timonbaby@163.com Title: Reverse Linked List II Description: Reverse a linked list from position m to n. Do it in-place and in one-pass. For example: Given 1->2->3->4->5->NULL, m = 2 and n = 4, return 1->4->3->2->5->NULL. Note: Given m, n satisfy the following condition: 1 <= m <= n <= length of list. Difficulty rating: Notes: A small trick is to append a dummy node in front of the true head so that the special case when the range contains the true head doesn't need to be handled. Another way is to open a new list and append node i to: i in range ? before tail : after tail. */ /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: // Prepend a dummy node so the reversed range won't contain head node of the new list ListNode *reverseBetween(ListNode *head, int m, int n) { ListNode dummy(0); dummy.next = head; reverseBetweenNotContainingHead(&dummy, m + 1, n + 1); return dummy.next; } void reverseBetweenNotContainingHead(ListNode *head, int m, int n) { n -= m; // n now contains length of region - 1 while (m -- > 2) head = head->next; ListNode *start = head->next, *pre = head->next, *cur = pre->next; while (n --) { ListNode *cur_next = cur->next; cur->next = pre; pre = cur; cur = cur_next; } head->next = pre; // Append to the part of list before the reversed ange start->next = cur; // Connect to rest of the list } };
[ "timonbaby@163.com" ]
timonbaby@163.com
d074c9e8b2c00539ad39f49a00bef2539a636a67
a9d0fb7b0e4f802bd3857b803e6c5c23d87fef91
/src/library/tactic/init_module.cpp
1119616878a4642de1235c26f6f47ad40253bdca
[ "Apache-2.0" ]
permissive
soonhokong/lean-osx
4a954262c780e404c1369d6c06516161d07fcb40
3670278342d2f4faa49d95b46d86642d7875b47c
refs/heads/master
2021-01-23T13:58:54.552309
2016-09-21T02:41:26
2016-09-21T02:41:26
12,043,103
5
1
null
null
null
null
UTF-8
C++
false
false
3,010
cpp
/* Copyright (c) 2016 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura */ #include "library/tactic/kabstract.h" #include "library/tactic/tactic_state.h" #include "library/tactic/intro_tactic.h" #include "library/tactic/revert_tactic.h" #include "library/tactic/rename_tactic.h" #include "library/tactic/clear_tactic.h" #include "library/tactic/app_builder_tactics.h" #include "library/tactic/subst_tactic.h" #include "library/tactic/exact_tactic.h" #include "library/tactic/change_tactic.h" #include "library/tactic/assert_tactic.h" #include "library/tactic/apply_tactic.h" #include "library/tactic/fun_info_tactics.h" #include "library/tactic/congr_lemma_tactics.h" #include "library/tactic/match_tactic.h" #include "library/tactic/ac_tactics.h" #include "library/tactic/induction_tactic.h" #include "library/tactic/cases_tactic.h" #include "library/tactic/generalize_tactic.h" #include "library/tactic/rewrite_tactic.h" #include "library/tactic/unfold_tactic.h" #include "library/tactic/elaborate.h" #include "library/tactic/user_attribute.h" #include "library/tactic/defeq_simplifier.h" #include "library/tactic/simplifier/init_module.h" #include "library/tactic/backward/init_module.h" namespace lean { void initialize_tactic_module() { initialize_kabstract(); initialize_tactic_state(); initialize_intro_tactic(); initialize_revert_tactic(); initialize_rename_tactic(); initialize_clear_tactic(); initialize_app_builder_tactics(); initialize_subst_tactic(); initialize_exact_tactic(); initialize_change_tactic(); initialize_assert_tactic(); initialize_apply_tactic(); initialize_fun_info_tactics(); initialize_congr_lemma_tactics(); initialize_match_tactic(); initialize_ac_tactics(); initialize_induction_tactic(); initialize_cases_tactic(); initialize_generalize_tactic(); initialize_rewrite_tactic(); initialize_unfold_tactic(); initialize_defeq_simplifier(); initialize_simplifier_module(); initialize_backward_module(); initialize_elaborate(); initialize_user_attribute(); } void finalize_tactic_module() { finalize_user_attribute(); finalize_elaborate(); finalize_backward_module(); finalize_simplifier_module(); finalize_defeq_simplifier(); finalize_unfold_tactic(); finalize_rewrite_tactic(); finalize_generalize_tactic(); finalize_cases_tactic(); finalize_induction_tactic(); finalize_ac_tactics(); finalize_match_tactic(); finalize_congr_lemma_tactics(); finalize_fun_info_tactics(); finalize_apply_tactic(); finalize_assert_tactic(); finalize_change_tactic(); finalize_exact_tactic(); finalize_subst_tactic(); finalize_app_builder_tactics(); finalize_clear_tactic(); finalize_rename_tactic(); finalize_revert_tactic(); finalize_intro_tactic(); finalize_tactic_state(); finalize_kabstract(); } }
[ "leonardo@microsoft.com" ]
leonardo@microsoft.com
40c9c4e2a51fbae976d173a43f53f311bd8a9f1e
bbc78e9f9f39c17abac7c13ca11c8ef401d3fe30
/src/world_frame.h
0f8b49e7dad6e481387bf6be806fe03a2d04269b
[ "MIT" ]
permissive
foxdog-studios/node-kinect
3af6e4768aa78ca615836c1b63ae5138f2719148
f3621a6ff6787ffb3c03d519eb20e2e884360715
refs/heads/master
2020-05-29T11:04:11.807239
2015-04-08T12:37:02
2015-04-08T12:37:02
33,124,173
2
0
null
2015-03-30T13:19:03
2015-03-30T13:19:03
null
UTF-8
C++
false
false
838
h
#ifndef WORLD_FRAME_H #define WORLD_FRAME_H #include <cstdint> #include <Eigen/Dense> #include <node.h> #include <node_buffer.h> namespace kinect { class WorldFrame { public: WorldFrame(); ~WorldFrame(); void update(uint8_t *depth, uint8_t *video); void set_callback(v8::Arguments const &args); void unset_callback(); void call_callback(); private: node::Buffer *buffer_; v8::Persistent<v8::Value> buffer_handle_; v8::Persistent<v8::Function> callback_; Eigen::Matrix3d R_; // Rotation Eigen::Vector3d t_; // Translation void world_to_video(Eigen::Vector3d const &world, Eigen::Vector2i &video) const; }; } #endif // WORLD_FRAME_H
[ "foxxy@foxdogstudios.com" ]
foxxy@foxdogstudios.com
938790182bb023eb35f585861e19296a9894958a
1ea28fb9c81e6ce70644dd633756f9992ed8c1e3
/SmartHouse/SmsNotification.cpp
28de3f33c12164bbfca899350be99b869f783f7c
[]
no_license
Kamo98/Patterns_Smart_House1
66ba281e379b86e116dc95dacd553dfb438f61fa
3a31da24a86f2954ef588d1a7cab426d01925ff8
refs/heads/master
2020-12-12T14:15:32.581022
2020-02-22T15:55:39
2020-02-22T15:55:39
234,144,683
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
465
cpp
#include "SmsNotification.h" #include <stdio.h> SmsNotification::SmsNotification(ISensorListener *sub) : DecoratorSListener(sub) { } SmsNotification::~SmsNotification() { } void SmsNotification::onIndicatorChange(Indicator * indicator) { subject->onIndicatorChange(indicator); printf("***SMS***\nТип сенсора = %d\n", indicator->get_type_of_sensor()); printf("Новое значение = %d\n", indicator->get_value()); printf("******\n\n"); }
[ "avanesjan.k@gmail.com" ]
avanesjan.k@gmail.com
f31ad999377916f80f9a5deea651de7981503b40
8d88a003afadc24084b949fdf517a0b820d12c92
/src/kalman_filter.cpp
5821dd84ad37f9a919c67662bdc048dbf724eb95
[]
no_license
Mahmoodsalah/extended-Kalman-filter
918a7b55b40db6f9c396d0a28e71f640df62dc80
66b20398f27ee42c68ab2ac1f81727933a3226e8
refs/heads/master
2021-01-19T18:38:35.720067
2017-04-21T22:31:42
2017-04-21T22:31:42
88,370,331
0
0
null
null
null
null
UTF-8
C++
false
false
1,792
cpp
#include "kalman_filter.h" using Eigen::MatrixXd; using Eigen::VectorXd; KalmanFilter::KalmanFilter() {} KalmanFilter::~KalmanFilter() {} void KalmanFilter::Init(VectorXd &x_in, MatrixXd &P_in, MatrixXd &F_in, MatrixXd &H_in, MatrixXd &R_in, MatrixXd &Q_in) { x_ = x_in; P_ = P_in; F_ = F_in; H_ = H_in; R_ = R_in; Q_ = Q_in; } void KalmanFilter::Predict() { //Predict the state x_ = F_* x_; MatrixXd Ft = F_.transpose(); P_ = F_*P_*Ft + Q_; } void KalmanFilter::Update(const VectorXd &z) { //update the state by using Kalman Filter equations MatrixXd y = z - H_*x_; MatrixXd Ht = H_.transpose(); MatrixXd P_Ht = P_*Ht; MatrixXd S = H_*P_Ht + R_; MatrixXd Si = S.inverse(); MatrixXd K = P_Ht*Si; x_ += K*y; P_ = (MatrixXd::Identity(4,4) - K*H_)*P_; } void KalmanFilter::UpdateEKF(const VectorXd &z) { //update the state by using Extended Kalman Filter equations VectorXd z_pred=VectorXd(3); double px=x_(0); double py=x_(1); double vx=x_(2); double vy=x_(3); double roh_pred = sqrt(px*px + py*py); double psi_pred = atan(py/px); float dot_psi_pred = (px*vx+py*vy)/roh_pred; if (roh_pred < 0.01) { roh_pred=0.01; psi_pred = atan(py/roh_pred)*px/(fabs(px)+0.0001); dot_psi_pred = (px*vx+py*vy)/roh_pred; } z_pred << roh_pred, psi_pred, dot_psi_pred; //cout<<"z pred"<<z_pred<<endl; VectorXd y = z - z_pred; MatrixXd Ht = H_.transpose(); MatrixXd S = H_ * P_ * Ht + R_; MatrixXd Si = S.inverse(); MatrixXd PHt = P_ * Ht; MatrixXd K = PHt * Si; //cout<<"x="<<x_<<endl; //cout<<"y="<<y<<"\n"<<endl; //cout<<"K="<<K<<endl; //new estimate x_ = x_ + (K * y); long x_size = x_.size(); MatrixXd I = MatrixXd::Identity(x_size, x_size); P_ = (I - K * H_) * P_; }
[ "mahmoodsalah89@gmail.com" ]
mahmoodsalah89@gmail.com
f7bf762f0f2ad2e8b7fa8a4aea94253a5afcaf26
04b1803adb6653ecb7cb827c4f4aa616afacf629
/third_party/blink/renderer/core/paint/text_control_single_line_painter.h
8c9f898fef53d114863e99d02fae0cd5f7361f4e
[ "LGPL-2.0-only", "BSD-2-Clause", "LGPL-2.1-only", "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "GPL-1.0-or-later", "GPL-2.0-only", "LicenseRef-scancode-other-copyleft", "MIT", "Apache-2.0", "BSD-3-Clause" ]
permissive
Samsung/Castanets
240d9338e097b75b3f669604315b06f7cf129d64
4896f732fc747dfdcfcbac3d442f2d2d42df264a
refs/heads/castanets_76_dev
2023-08-31T09:01:04.744346
2021-07-30T04:56:25
2021-08-11T05:45:21
125,484,161
58
49
BSD-3-Clause
2022-10-16T19:31:26
2018-03-16T08:07:37
null
UTF-8
C++
false
false
862
h
// Copyright 2018 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 THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_TEXT_CONTROL_SINGLE_LINE_PAINTER_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_TEXT_CONTROL_SINGLE_LINE_PAINTER_H_ #include "third_party/blink/renderer/platform/wtf/allocator.h" namespace blink { class LayoutTextControlSingleLine; struct PaintInfo; class TextControlSingleLinePainter { STACK_ALLOCATED(); public: TextControlSingleLinePainter(const LayoutTextControlSingleLine& text_control) : text_control_(text_control) {} void Paint(const PaintInfo&); private: const LayoutTextControlSingleLine& text_control_; }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_TEXT_CONTROL_SINGLE_LINE_PAINTER_H_
[ "sunny.nam@samsung.com" ]
sunny.nam@samsung.com
f5df6e7d141eeec133e61eac9e481496ff4e5ff8
3ad968797a01a4e4b9a87e2200eeb3fb47bf269a
/Programming WDM/Chap12/Fastinst/StdAfx.cpp
b0bd0eed2f5375cc415c7fd101017b074492f28e
[]
no_license
LittleDrogon/MFC-Examples
403641a1ae9b90e67fe242da3af6d9285698f10b
1d8b5d19033409cd89da3aba3ec1695802c89a7a
refs/heads/main
2023-03-20T22:53:02.590825
2020-12-31T09:56:37
2020-12-31T09:56:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
202
cpp
// stdafx.cpp : source file that includes just the standard includes // fastinst.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h"
[ "pkedpekr@gmail.com" ]
pkedpekr@gmail.com
9e9145e3f4b96f26efc0666b7d83d60b058b77ed
5563a924306cdd54d77e76cea9f068ea5582e6f5
/solved_probs/lightoj_catagory/greedy/1198.cpp
50000b9e217833a5c00d9c2f1ddd667fd0ce7f41
[]
no_license
QuwsarOhi/CodeTree
b13878cc0f28cc9fd444a6e65f31a3fadce67b1c
66f6d679527474f3dd88f7ad2864e69bdbd436b9
refs/heads/master
2023-03-16T00:34:45.267063
2023-03-14T01:55:15
2023-03-14T01:55:15
75,394,567
5
3
null
null
null
null
UTF-8
C++
false
false
1,247
cpp
// LightOJ // 1198 - Karate Competition #include <bits/stdc++.h> using namespace std; int main() { int t, n, v1[60], v2[60], cnt[1010], used[1010]; scanf("%d", &t); for(int Case = 1; Case <= t; ++Case) { scanf("%d", &n); memset(cnt, 0, sizeof cnt); memset(used, 0, sizeof used); for(int i = 0; i < n; ++i) scanf("%d", &v1[i]); for(int i = 0; i < n; ++i) { scanf("%d", &v2[i]); cnt[v2[i]]++; } sort(v1, v1+n); sort(v2, v2+n); reverse(v2, v2+n); int ans = 0; for(int i = 0; i < n; ++i) { for(int j = 0; j < n; ++j) if(v2[j] < v1[i] && cnt[v2[j]] > 0) { ans += 2; used[i] = 1; cnt[v2[j]]--; break; } } for(int i = 0; i < n; ++i) { for(int j = 0; j < n; ++j) if(!used[i] && v2[j] == v1[i] && cnt[v2[j]] > 0) { ans += 1; cnt[v2[j]]--; break; } } printf("Case %d: %d\n", Case, ans); } return 0; }
[ "quwsarohi@gmail.com" ]
quwsarohi@gmail.com
4a771037d44d7d00cd9e644cc4d08978780692ab
9eb61cc62ea3965892f0515600a96d123edb6000
/src/System/inputmanager.cpp
2ffa2c25d7cf71a38acec66364ff48db006c44cd
[ "BSD-2-Clause" ]
permissive
MaGetzUb/SoftwareRenderer
8cbdbb60cc64e737bf336c5bb5aa61d26ea9099f
e1d6242617863a1d9fdc272c1011a3938d1dbbc9
refs/heads/master
2020-03-22T13:42:03.166242
2019-02-10T18:34:12
2019-02-10T18:34:12
140,126,027
1
1
null
null
null
null
UTF-8
C++
false
false
5,062
cpp
/* Copyright © 2018, Marko Ranta All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include <windows.h> #include <windowsx.h> #include <functional> #include "inputmanager.hpp" InputManager::InputManager(): mKeyStates{}, mButtonStates{}, mMouseX(0), mMouseY(0), mMouseZ(0), mMouseMoveX(0), mMouseMoveY(0), mMouseMoveZ(0), mTextInput(false), mInputChar(0), mCallbackProcesor(std::bind(&InputManager::process, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4)) {} InputManager::~InputManager() {} void InputManager::update() { mTextInput = false; mInputChar = 0; mMouseMoveX = mMouseMoveY = mMouseMoveZ = 0; for(unsigned int i = 0; i < 256; i++) mKeyStates[i] &= 0x1; for(unsigned int i = 0; i < 5; i++) mButtonStates[i] &= 0x1; } bool InputManager::isKeyDown(unsigned char key) const { return mKeyStates[key] & 0x1; } bool InputManager::isKeyHit(unsigned char key) const { return mKeyStates[key] == 0x3; } bool InputManager::isKeyUp(unsigned char key) const { return mKeyStates[key] == 0x2; } bool InputManager::isMouseDown(unsigned char button) const { return mButtonStates[button] & 0x1; } bool InputManager::isMouseHit(unsigned char button) const { return mButtonStates[button] == 0x3; } bool InputManager::isMouseUp(unsigned char button) const { return mButtonStates[button] == 0x2; } int InputManager::mouseX() const { return mMouseX; } int InputManager::mouseY() const { return mMouseY; } int InputManager::mouseZ() const { return mMouseZ; } int InputManager::mouseMoveX() const { return mMouseMoveX; } int InputManager::mouseMoveY() const { return mMouseMoveY; } int InputManager::mouseMoveZ() const { return mMouseMoveZ; } bool InputManager::isTextInput(unsigned int& c) const { c = mInputChar; return mTextInput; } void InputManager::ignoreMouseMoveEvents(Window& window) { MSG msg; for(;PeekMessage(&msg, window.handle(), WM_MOUSEMOVE, WM_MOUSEMOVE, PM_REMOVE);); } LRESULT InputManager::process(Window& window, UINT msg, WPARAM wparam, LPARAM lparam) { switch(msg) { case WM_MOUSEMOVE: /* TRACKMOUSEEVENT trackInfo; trackInfo.cbSize = sizeof(trackInfo); trackInfo.dwFlags = TME_LEAVE; trackInfo.hwndTrack = window.handle(); trackInfo.dwHoverTime = HOVER_DEFAULT; TrackMouseEvent(&trackInfo); */ case WM_LBUTTONDOWN: case WM_LBUTTONUP: case WM_RBUTTONDOWN: case WM_RBUTTONUP: case WM_MBUTTONDOWN: case WM_MBUTTONUP: { int index = -1; /*SetCapture(window.handle());*/ switch(msg) { case WM_LBUTTONDOWN: case WM_LBUTTONUP: mButtonStates[0] ^= 1; mButtonStates[0] |= 2; break; case WM_RBUTTONDOWN: case WM_RBUTTONUP: mButtonStates[1] ^= 1; mButtonStates[1] |= 2; break; case WM_MBUTTONDOWN: case WM_MBUTTONUP: mButtonStates[2] ^= 1; mButtonStates[2] |= 2; break; } int x = GET_X_LPARAM(lparam); int y = GET_Y_LPARAM(lparam); mMouseMoveX = x - mMouseX; mMouseMoveY = y - mMouseY; mMouseX = x; mMouseY = y; return 0; } break; case WM_MOUSELEAVE: for(int i = 0; i < 3; i++) { if(mButtonStates[i] & 0x2) { mButtonStates[2] ^= 1; mButtonStates[2] |= 2; } } /*ReleaseCapture();*/ return 0; break; case WM_CHAR: mTextInput = true; mInputChar = (unsigned int)wparam; return 0; break; case WM_KEYDOWN: case WM_KEYUP: { if(((lparam >> 31) & 1) == (mKeyStates[wparam] & 0x1)) { mKeyStates[wparam] ^= 1; mKeyStates[wparam] |= 2; } return 0; } break; case WM_MOUSEWHEEL: mMouseMoveZ = GET_WHEEL_DELTA_WPARAM(wparam) / (SHORT)WHEEL_DELTA; mMouseZ += mMouseMoveZ; return 0; break; } if(mCustomMessages) return mCustomMessages(window, msg, wparam, lparam); return window.defaultWindowProc(msg, wparam, lparam); }
[ "marko.ranta95@gmail.com" ]
marko.ranta95@gmail.com
4f954d70081ec855ed93ab2866bbce1d1efaadfd
94b8f58837d4dd948fcdb0b4372caab9f3115c79
/游戏组件/常规游戏/德州扑克/游戏客户端/SmallCardControl.cpp
5544239bba5faa30fb2724996a77f4413bcf1701
[]
no_license
zwong91/qpserver
ed364701c363d164bcb695bed02ba9131a9cc3b2
6e2de86fe60e3c45cc192f69a137f61e58f02325
refs/heads/master
2020-07-27T14:01:05.894864
2017-11-13T11:54:27
2017-11-13T11:54:27
null
0
0
null
null
null
null
GB18030
C++
false
false
10,713
cpp
#include "StdAfx.h" #include "GameClient.h" #include "SmallCardControl.h" ////////////////////////////////////////////////////////////////////////// CPngImageEx CSmallCardControl::m_ImageCard; ////////////////////////////////////////////////////////////////////////// //构造函数 CSmallCardControl::CSmallCardControl() { //状态变量 m_bHorizontal=true; m_bPositively=false; m_bDisplayItem=false; //扑克数据 m_wCardCount=0; ZeroMemory(m_CardItemArray,sizeof(m_CardItemArray)); //间隔变量 m_nXDistance=DEF_X_DISTANCE; m_nYDistance=DEF_Y_DISTANCE; m_nShootDistance=DEF_SHOOT_DISTANCE; //位置变量 m_YCollocateMode=enYTop; m_XCollocateMode=enXLeft; m_BenchmarkPos.SetPoint(0,0); return; } //析构函数 CSmallCardControl::~CSmallCardControl() { } //设置扑克 bool CSmallCardControl::SetCardData(WORD wCardCount) { //ASSERT(wCardCount>=m_wCardCount); //if(m_wCardCount==2 && (wCardCount>=m_wCardCount))return false; //效验参数 ASSERT(wCardCount<=CountArray(m_CardItemArray)); if(wCardCount>CountArray(m_CardItemArray)) { return false; } //设置变量 m_wCardCount=wCardCount; ZeroMemory(m_CardItemArray,sizeof(m_CardItemArray)); return true; } //设置扑克 bool CSmallCardControl::SetCardData(const BYTE cbCardData[], WORD wCardCount) { //效验参数 ASSERT(wCardCount<=CountArray(m_CardItemArray)); if(wCardCount>CountArray(m_CardItemArray)) { return false; } //设置变量 m_wCardCount=wCardCount; //设置扑克 for(WORD i=0; i<wCardCount; i++) { m_CardItemArray[i].bShoot=false; m_CardItemArray[i].cbCardData=cbCardData[i]; } return true; } //设置扑克 bool CSmallCardControl::SetShootCard(const BYTE cbCardData[], WORD wCardCount) { //变量定义 bool bChangeStatus=false; //收起扑克 for(WORD i=0; i<m_wCardCount; i++) { if(m_CardItemArray[i].bShoot==true) { bChangeStatus=true; m_CardItemArray[i].bShoot=false; } } //弹起扑克 for(WORD i=0; i<wCardCount; i++) { for(WORD j=0; j<m_wCardCount; j++) { if((m_CardItemArray[j].bShoot==false)&&(m_CardItemArray[j].cbCardData==cbCardData[i])) { bChangeStatus=true; m_CardItemArray[j].bShoot=true; break; } } } return bChangeStatus; } //设置扑克 bool CSmallCardControl::SetCardItem(const tagCardItem CardItemArray[], WORD wCardCount) { //效验参数 ASSERT(wCardCount<=CountArray(m_CardItemArray)); if(wCardCount>CountArray(m_CardItemArray)) { return false; } //设置扑克 m_wCardCount=wCardCount; CopyMemory(m_CardItemArray,CardItemArray,wCardCount*sizeof(tagCardItem)); return true; } //获取扑克 tagCardItem * CSmallCardControl::GetCardFromIndex(WORD wIndex) { return (wIndex<m_wCardCount)?&m_CardItemArray[wIndex]:NULL; } //获取扑克 tagCardItem * CSmallCardControl::GetCardFromPoint(CPoint & MousePoint) { WORD wIndex=SwitchCardPoint(MousePoint); return (wIndex!=INVALID_ITEM)?&m_CardItemArray[wIndex]:NULL; } //获取扑克 WORD CSmallCardControl::GetCardData(BYTE cbCardData[], WORD wBufferCount) { //效验参数 ASSERT(wBufferCount>=m_wCardCount); if(wBufferCount<m_wCardCount) { return 0; } //拷贝扑克 for(WORD i=0; i<m_wCardCount; i++) { cbCardData[i]=m_CardItemArray[i].cbCardData; } return m_wCardCount; } //获取扑克 WORD CSmallCardControl::GetShootCard(BYTE cbCardData[], WORD wBufferCount) { //变量定义 WORD wShootCount=0; //拷贝扑克 for(WORD i=0; i<m_wCardCount; i++) { //效验参数 ASSERT(wBufferCount>wShootCount); if(wBufferCount<=wShootCount) { break; } //拷贝扑克 if(m_CardItemArray[i].bShoot==true) { cbCardData[wShootCount++]=m_CardItemArray[i].cbCardData; } } return wShootCount; } //获取扑克 WORD CSmallCardControl::GetCardData(tagCardItem CardItemArray[], WORD wBufferCount) { //效验参数 ASSERT(wBufferCount>=m_wCardCount); if(wBufferCount<m_wCardCount) { return 0; } //拷贝扑克 CopyMemory(CardItemArray,m_CardItemArray,sizeof(tagCardItem)*m_wCardCount); return m_wCardCount; } //设置距离 VOID CSmallCardControl::SetCardDistance(UINT nXDistance, UINT nYDistance, UINT nShootDistance) { //设置变量 m_nXDistance=nXDistance; m_nYDistance=nYDistance; m_nShootDistance=nShootDistance; return; } //获取中心 VOID CSmallCardControl::GetCenterPoint(CPoint & CenterPoint) { //获取原点 CPoint OriginPoint; GetOriginPoint(OriginPoint); //获取位置 CSize ControlSize; GetControlSize(ControlSize); //设置中心 CenterPoint.x=OriginPoint.x+ControlSize.cx/2; CenterPoint.y=OriginPoint.y+ControlSize.cy/2; return; } //基准位置 VOID CSmallCardControl::SetBenchmarkPos(INT nXPos, INT nYPos, enXCollocateMode XCollocateMode, enYCollocateMode YCollocateMode) { //设置变量 m_BenchmarkPos.x=nXPos; m_BenchmarkPos.y=nYPos; m_XCollocateMode=XCollocateMode; m_YCollocateMode=YCollocateMode; return; } //基准位置 VOID CSmallCardControl::SetBenchmarkPos(const CPoint & BenchmarkPos, enXCollocateMode XCollocateMode, enYCollocateMode YCollocateMode) { //设置变量 m_BenchmarkPos=BenchmarkPos; m_XCollocateMode=XCollocateMode; m_YCollocateMode=YCollocateMode; return; } //绘画扑克 VOID CSmallCardControl::DrawCardControl(CDC * pDC) { //获取位置 CPoint OriginPoint; GetOriginPoint(OriginPoint); //变量定义 INT nXDrawPos=0,nYDrawPos=0; INT nXImagePos=0,nYImagePos=0; //绘画扑克 for(WORD i=0; i<m_wCardCount; i++) { //获取扑克 bool bShoot=m_CardItemArray[i].bShoot; BYTE cbCardData=m_CardItemArray[i].cbCardData; //间隙过滤 if(cbCardData==SPACE_CARD_DATA) { continue; } //图片位置 if((m_bDisplayItem==true)&&(cbCardData!=0)) { if((cbCardData==0x4E)||(cbCardData==0x4F)) { nXImagePos=((cbCardData&CARD_MASK_VALUE)%14)*m_CardSize.cx; nYImagePos=((cbCardData&CARD_MASK_COLOR)>>4)*m_CardSize.cy; } else { nXImagePos=((cbCardData&CARD_MASK_VALUE)-1)*m_CardSize.cx; nYImagePos=((cbCardData&CARD_MASK_COLOR)>>4)*m_CardSize.cy; } } else { nXImagePos=0; nYImagePos=0; } //屏幕位置 if(m_bHorizontal==true) { nXDrawPos=m_nXDistance*i; nYDrawPos=(bShoot==false)?m_nShootDistance:0; } else { nXDrawPos=0; nYDrawPos=m_nYDistance*i; } //绘画扑克 m_ImageCard.AlphaDrawImage(pDC,OriginPoint.x+nXDrawPos,OriginPoint.y+nYDrawPos,m_CardSize.cx,m_CardSize.cy,nXImagePos,nYImagePos,255); } return; } //光标消息 bool CSmallCardControl::OnEventSetCursor(CPoint Point) { //光标处理 if(m_bPositively==true) { //获取索引 WORD wHoverItem=SwitchCardPoint(Point); //更新判断 if(wHoverItem!=INVALID_ITEM) { SetCursor(LoadCursor(AfxGetInstanceHandle(),MAKEINTRESOURCE(IDC_CARD_CUR))); return true; } } return false; } //获取大小 VOID CSmallCardControl::GetControlSize(CSize & ControlSize) { //获取大小 if(m_bHorizontal==true) { ControlSize.cy=m_CardSize.cy+m_nShootDistance; ControlSize.cx=(m_wCardCount>0)?(m_CardSize.cx+(m_wCardCount-1)*m_nXDistance):0; } else { ControlSize.cx=m_CardSize.cx; ControlSize.cy=(m_wCardCount>0)?(m_CardSize.cy+(m_wCardCount-1)*m_nYDistance):0; } return; } //获取原点 VOID CSmallCardControl::GetOriginPoint(CPoint & OriginPoint) { //获取位置 CSize ControlSize; GetControlSize(ControlSize); //横向位置 switch(m_XCollocateMode) { case enXLeft: { OriginPoint.x=m_BenchmarkPos.x; break; } case enXCenter: { OriginPoint.x=m_BenchmarkPos.x-ControlSize.cx/2; break; } case enXRight: { OriginPoint.x=m_BenchmarkPos.x-ControlSize.cx; break; } } //竖向位置 switch(m_YCollocateMode) { case enYTop: { OriginPoint.y=m_BenchmarkPos.y; break; } case enYCenter: { OriginPoint.y=m_BenchmarkPos.y-ControlSize.cy/2; break; } case enYBottom: { OriginPoint.y=m_BenchmarkPos.y-ControlSize.cy; break; } } return; } //索引切换 WORD CSmallCardControl::SwitchCardPoint(CPoint & MousePoint) { //获取位置 CSize ControlSize; CPoint OriginPoint; GetControlSize(ControlSize); GetOriginPoint(OriginPoint); //基准位置 INT nXPos=MousePoint.x-OriginPoint.x; INT nYPos=MousePoint.y-OriginPoint.y; //横向模式 if(m_bHorizontal==true) { //越界判断 if((nXPos<=0)||(nXPos>=ControlSize.cx)) { return INVALID_ITEM; } if((nYPos<=0)||(nYPos>=ControlSize.cy)) { return INVALID_ITEM; } //计算索引 WORD wCardIndex=nXPos/m_nXDistance; if(wCardIndex>=m_wCardCount) { wCardIndex=(m_wCardCount-1); } //扑克搜索 for(WORD i=0; i<=wCardIndex; i++) { //变量定义 WORD wCurrentIndex=wCardIndex-i; //横向测试 if(nXPos>=(INT)(wCurrentIndex*m_nXDistance+m_CardSize.cx)) { break; } //竖向测试 bool bShoot=m_CardItemArray[wCurrentIndex].bShoot; if((bShoot==true)&&(nYPos<=m_CardSize.cy)) { return wCurrentIndex; } if((bShoot==false)&&(nYPos>=(INT)m_nShootDistance)) { return wCurrentIndex; } } } return INVALID_ITEM; } // 在指定位置绘制一张牌, bCardData为0时绘制背面 void CSmallCardControl::DrawOneCard(CDC* pDC, BYTE bCardData,int nX , int nY) { //变量定义 m_ImageCard.AlphaDrawImage(pDC, nX, nY, SMALL_CARD_WIDTH, SMALL_CARD_HEIGHT, 0, 0, 255); return; } //加载资源 bool CSmallCardControl::LoadResource(CWnd* pWnd) { //加载资源 if(m_ImageCard.IsNull()) { m_ImageCard.LoadImage(pWnd,AfxGetInstanceHandle(),TEXT("SMALL_CARD")); } //获取大小 m_CardSize.SetSize(m_ImageCard.GetWidth(),m_ImageCard.GetHeight()); return true; } //////////////////////////////////////////////////////////////////////////
[ "wuliangyue7@163.com" ]
wuliangyue7@163.com
8a410930d08c6aad96e3ce8d0435c579714aede3
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/net/ias/sdo/sdoias/sdoservergroup.h
0750d9266a25738117d4abe67f639e135c961ff3
[]
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
1,463
h
/////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2000, Microsoft Corp. All rights reserved. // // FILE // // sdoservergroup.h // // SYNOPSIS // // Declares the classes SdoServerGroup and SdoServer. // // MODIFICATION HISTORY // // 02/03/2000 Original version. // /////////////////////////////////////////////////////////////////////////////// #ifndef SDOSERVERGROUP_H #define SDOSERVERGROUP_H #if _MSC_VER >= 1000 #pragma once #endif #include <sdo.h> #include <sdofactory.h> /////////////////////////////////////////////////////////////////////////////// // // CLASS // // SdoServerGroup // /////////////////////////////////////////////////////////////////////////////// class SdoServerGroup : public CSdo { public: BEGIN_COM_MAP(SdoServerGroup) COM_INTERFACE_ENTRY(ISdo) COM_INTERFACE_ENTRY(IDispatch) END_COM_MAP() DECLARE_SDO_FACTORY(SdoServerGroup); HRESULT FinalInitialize( bool fInitNew, ISdoMachine* pAttachedMachine ); }; /////////////////////////////////////////////////////////////////////////////// // // CLASS // // SdoServerGroup // /////////////////////////////////////////////////////////////////////////////// class SdoServer : public CSdo { public: BEGIN_COM_MAP(SdoServer) COM_INTERFACE_ENTRY(ISdo) COM_INTERFACE_ENTRY(IDispatch) END_COM_MAP() DECLARE_SDO_FACTORY(SdoServer); }; #endif // SDOSERVERGROUP_H
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
4da2d11ea4cb4b49f2f436f418af042176fd3bbf
ecadb984b00652c9a746852a023e59d397299b34
/minimum_path_sum.cpp
bcbfd6ece4bc72242f3720d02e03a32130207038
[]
no_license
sylcrq/leetcode
12dfa56451cfeac7e34020f505f1c7e1efcaec25
315bb79471a91e74a43262ce5762eb2a40986a10
refs/heads/master
2021-01-20T02:46:45.683702
2015-07-13T06:31:42
2015-07-13T06:31:42
23,686,865
7
1
null
null
null
null
UTF-8
C++
false
false
907
cpp
#include <algorithm> #include <iostream> #include <vector> using namespace std; // 二维DP // Grid[i][j] = Min(Grid[i-1][j], Grid[i][j-1]) + Grid[i][j] int minPathSum(vector<vector<int> > &grid) { if(grid.empty()) return 0; int m = grid.size(); int n = grid[0].size(); // Path Sum Info vector<vector<int> > info(m, vector<int>(n, 0)); info[0][0] = grid[0][0]; for(int i=1; i<n; i++) { info[0][i] = grid[0][i] + info[0][i-1]; //cout << info[0][i] << endl; } for(int i=1; i<m; i++) { info[i][0] = grid[i][0] + info[i-1][0]; //cout << info[i][0] << endl; } for(int i=1; i<m; i++) { for(int j=1; j<n; j++) { info[i][j] = min(info[i-1][j], info[i][j-1]) + grid[i][j]; //cout << info[i][j] << "-"; } //cout << endl; } return info[m-1][n-1]; }
[ "syl272365943@126.com" ]
syl272365943@126.com
87dc038f52f3c2018b40bdda8c4985f5bbcb997b
602e0f4bae605f59d23688cab5ad10c21fc5a34f
/MyToolKit/NumericalRecipes/examples/xsprsin.cpp
fbb37d8fc84f4bd0eef3284eb02e51322f9fa322
[]
no_license
yanbcxf/cpp
d7f26056d51f85254ae1dd2c4e8e459cfefb2fb6
e059b02e7f1509918bbc346c555d42e8d06f4b8f
refs/heads/master
2023-08-04T04:40:43.475657
2023-08-01T14:03:44
2023-08-01T14:03:44
172,408,660
8
5
null
null
null
null
UTF-8
C++
false
false
1,299
cpp
#include <iostream> #include <iomanip> #include "nr.h" using namespace std; // Driver for routine sprsin int main(void) { const int NP=5,NMAX=2*NP*NP+1; int i,j,msize; Vec_INT ija(NMAX); Vec_DP sa(NMAX); DP a_d[NP*NP]= {3.0,0.0,1.0,0.0,0.0, 0.0,4.0,0.0,0.0,0.0, 0.0,7.0,5.0,9.0,0.0, 0.0,0.0,0.0,0.0,2.0, 0.0,0.0,0.0,6.0,5.0}; Mat_DP aa(0.0,NP,NP), a(a_d,NP,NP); NR::sprsin(a,0.5,sa,ija); msize=ija[ija[0]-1]; sa[NP]=0.0; cout << "index" << setw(8) << "ija" << setw(12) << "sa" << endl; cout << fixed << setprecision(6); for (i=0;i<msize;i++) { cout << setw(4) << i << setw(8) << ija[i]; cout << setw(16) << sa[i] << endl; } for (i=0;i<NP;i++) { aa[i][i]=sa[i]; for (j=ija[i];j<ija[i+1];j++) aa[i][ija[j]]=sa[j]; } cout << endl << "Original Matrix" << endl; for (i=0;i<NP;i++) { for (j=0;j<NP;j++) cout << setw(12) << a[i][j]; cout << endl; } cout << endl << "Reconstructed Matrix" << endl; for (i=0;i<NP;i++) { for (j=0;j<NP;j++) cout << setw(12) << aa[i][j]; cout << endl; } return 0; }
[ "yangbin@star-net.cn" ]
yangbin@star-net.cn
dca03c241aa7f72e3324dc609665a3fb09e33734
cb8e88ff64833b96cd495ee059418086289ccea6
/src/posix_disk_io.cpp
38b4a330355563da5a5ce981cfba7f89258789c0
[ "BSD-3-Clause", "Zlib", "BSL-1.0" ]
permissive
spiraltech/libtorrent
63d878230daad509269e5ccb0a202c690a31e4a2
7df35ee1690502105d4591e0000e0a5c854cf029
refs/heads/master
2020-04-24T21:37:45.256921
2019-02-23T20:42:26
2019-02-24T00:01:54
172,285,040
0
0
NOASSERTION
2019-02-24T01:57:25
2019-02-24T01:57:24
null
UTF-8
C++
false
false
11,243
cpp
/* Copyright (c) 2017, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "libtorrent/config.hpp" #include "libtorrent/posix_disk_io.hpp" #include "libtorrent/disk_interface.hpp" #include "libtorrent/disk_buffer_pool.hpp" #include "libtorrent/io_context.hpp" #include "libtorrent/performance_counters.hpp" #include "libtorrent/aux_/session_settings.hpp" #include "libtorrent/aux_/path.hpp" #include "libtorrent/aux_/numeric_cast.hpp" #include "libtorrent/aux_/posix_storage.hpp" #include "libtorrent/stat_cache.hpp" #include "libtorrent/file_storage.hpp" #include "libtorrent/hasher.hpp" #include "libtorrent/add_torrent_params.hpp" #include <vector> namespace libtorrent { namespace { storage_index_t pop(std::vector<storage_index_t>& q) { TORRENT_ASSERT(!q.empty()); storage_index_t const ret = q.back(); q.pop_back(); return ret; } using aux::posix_storage; } // anonymous namespace struct TORRENT_EXTRA_EXPORT posix_disk_io final : disk_interface , buffer_allocator_interface { posix_disk_io(io_context& ios, counters& cnt) : m_buffer_pool(ios) , m_stats_counters(cnt) , m_ios(ios) {} void set_settings(settings_pack const* pack) override { apply_pack(pack, m_settings); m_buffer_pool.set_settings(m_settings); } storage_holder new_torrent(storage_params params , std::shared_ptr<void> const&) override { storage_index_t const idx = m_free_slots.empty() ? m_torrents.end_index() : pop(m_free_slots); auto storage = std::make_unique<posix_storage>(std::move(params)); if (idx == m_torrents.end_index()) m_torrents.emplace_back(std::move(storage)); else m_torrents[idx] = std::move(storage); return storage_holder(idx, *this); } void remove_torrent(storage_index_t const idx) override { m_torrents[idx].reset(); m_free_slots.push_back(idx); } void abort(bool) override {} void async_read(storage_index_t storage, peer_request const& r , std::function<void(disk_buffer_holder block, storage_error const& se)> handler , disk_job_flags_t) override { disk_buffer_holder buffer = disk_buffer_holder(*this, m_buffer_pool.allocate_buffer("send buffer"), default_block_size); storage_error error; if (!buffer) { error.ec = errors::no_memory; error.operation = operation_t::alloc_cache_piece; post(m_ios, [=, h = std::move(handler)]{ h(disk_buffer_holder(*this, nullptr, 0), error); }); return; } time_point const start_time = clock_type::now(); iovec_t buf = {buffer.data(), r.length}; m_torrents[storage]->readv(m_settings, buf, r.piece, r.start, error); if (!error.ec) { std::int64_t const read_time = total_microseconds(clock_type::now() - start_time); m_stats_counters.inc_stats_counter(counters::num_read_back); m_stats_counters.inc_stats_counter(counters::num_blocks_read); m_stats_counters.inc_stats_counter(counters::num_read_ops); m_stats_counters.inc_stats_counter(counters::disk_read_time, read_time); m_stats_counters.inc_stats_counter(counters::disk_job_time, read_time); } post(m_ios, [h = std::move(handler), b = std::move(buffer), error] () mutable { h(std::move(b), error); }); } bool async_write(storage_index_t storage, peer_request const& r , char const* buf, std::shared_ptr<disk_observer> , std::function<void(storage_error const&)> handler , disk_job_flags_t) override { // TODO: 3 this const_cast can be removed once iovec_t is no longer a // thing, but we just use plain spans iovec_t const b = { const_cast<char*>(buf), r.length }; time_point const start_time = clock_type::now(); storage_error error; m_torrents[storage]->writev(m_settings, b, r.piece, r.start, error); if (!error.ec) { std::int64_t const write_time = total_microseconds(clock_type::now() - start_time); m_stats_counters.inc_stats_counter(counters::num_blocks_written); m_stats_counters.inc_stats_counter(counters::num_write_ops); m_stats_counters.inc_stats_counter(counters::disk_write_time, write_time); m_stats_counters.inc_stats_counter(counters::disk_job_time, write_time); } post(m_ios, [=, h = std::move(handler)]{ h(error); }); return false; } void async_hash(storage_index_t storage, piece_index_t const piece, disk_job_flags_t , std::function<void(piece_index_t, sha1_hash const&, storage_error const&)> handler) override { time_point const start_time = clock_type::now(); disk_buffer_holder buffer = disk_buffer_holder(*this, m_buffer_pool.allocate_buffer("hash buffer"), default_block_size); storage_error error; if (!buffer) { error.ec = errors::no_memory; error.operation = operation_t::alloc_cache_piece; post(m_ios, [=, h = std::move(handler)]{ h(piece, sha1_hash{}, error); }); return; } hasher ph; posix_storage* st = m_torrents[storage].get(); int const piece_size = st->files().piece_size(piece); int const blocks_in_piece = (piece_size + default_block_size - 1) / default_block_size; int offset = 0; for (int i = 0; i < blocks_in_piece; ++i) { auto const len = std::min(default_block_size, piece_size - offset); iovec_t b = {buffer.data(), len}; int const ret = st->readv(m_settings, b, piece, offset, error); offset += default_block_size; if (ret <= 0) break; ph.update(b.first(ret)); } sha1_hash const hash = ph.final(); if (!error.ec) { std::int64_t const read_time = total_microseconds(clock_type::now() - start_time); m_stats_counters.inc_stats_counter(counters::num_read_back); m_stats_counters.inc_stats_counter(counters::num_blocks_read); m_stats_counters.inc_stats_counter(counters::num_read_ops); m_stats_counters.inc_stats_counter(counters::disk_hash_time, read_time); m_stats_counters.inc_stats_counter(counters::disk_job_time, read_time); } post(m_ios, [=, h = std::move(handler)]{ h(piece, hash, error); }); } void async_move_storage(storage_index_t, std::string p, move_flags_t , std::function<void(status_t, std::string const&, storage_error const&)> handler) override { post(m_ios, [=, h = std::move(handler)]{ h(status_t::fatal_disk_error, p , storage_error(error_code(boost::system::errc::operation_not_supported, system_category()))); }); } void async_release_files(storage_index_t storage, std::function<void()> handler) override { posix_storage* st = m_torrents[storage].get(); st->release_files(); if (!handler) return; post(m_ios, [=]{ handler(); }); } void async_delete_files(storage_index_t storage, remove_flags_t const options , std::function<void(storage_error const&)> handler) override { storage_error error; posix_storage* st = m_torrents[storage].get(); st->delete_files(options, error); post(m_ios, [=, h = std::move(handler)]{ h(error); }); } void async_check_files(storage_index_t storage , add_torrent_params const* resume_data , aux::vector<std::string, file_index_t>& links , std::function<void(status_t, storage_error const&)> handler) override { posix_storage* st = m_torrents[storage].get(); add_torrent_params tmp; add_torrent_params const* rd = resume_data ? resume_data : &tmp; storage_error error; status_t ret = status_t::no_error; storage_error se; if ((rd->have_pieces.empty() || !st->verify_resume_data(*rd, links, error)) && !m_settings.get_bool(settings_pack::no_recheck_incomplete_resume)) { bool const has_files = st->has_any_file(se); if (has_files && !se) { ret = status_t::need_full_check; } } if (!se) st->initialize(m_settings, se); if (se) { error = se; ret = status_t::fatal_disk_error; } post(m_ios, [error, ret, h = std::move(handler)]{ h(ret, error); }); } void async_rename_file(storage_index_t const storage , file_index_t const idx , std::string name , std::function<void(std::string const&, file_index_t, storage_error const&)> handler) override { posix_storage* st = m_torrents[storage].get(); storage_error error; st->rename_file(idx, name, error); post(m_ios, [idx, error, h = std::move(handler), n = std::move(name)] () mutable { h(std::move(n), idx, error); }); } void async_stop_torrent(storage_index_t, std::function<void()> handler) override { if (!handler) return; post(m_ios, std::move(handler)); } void async_set_file_priority(storage_index_t , aux::vector<download_priority_t, file_index_t> prio , std::function<void(storage_error const& , aux::vector<download_priority_t, file_index_t>)> handler) override { post(m_ios, [p = std::move(prio), h = std::move(handler)] () mutable { h(storage_error(), std::move(p)); }); } void async_clear_piece(storage_index_t, piece_index_t index , std::function<void(piece_index_t)> handler) override { post(m_ios, [=, h = std::move(handler)]{ h(index); }); } // implements buffer_allocator_interface void free_disk_buffer(char* b) override { m_buffer_pool.free_buffer(b); } void update_stats_counters(counters&) const override {} std::vector<open_file_state> get_status(storage_index_t) const override { return {}; } void submit_jobs() override {} private: aux::vector<std::unique_ptr<posix_storage>, storage_index_t> m_torrents; // slots that are unused in the m_torrents vector std::vector<storage_index_t> m_free_slots; aux::session_settings m_settings; // disk cache disk_buffer_pool m_buffer_pool; counters& m_stats_counters; // callbacks are posted on this io_context& m_ios; }; TORRENT_EXPORT std::unique_ptr<disk_interface> posix_disk_io_constructor( io_context& ios, counters& cnt) { return std::make_unique<posix_disk_io>(ios, cnt); } }
[ "arvid.norberg@gmail.com" ]
arvid.norberg@gmail.com
26ea48bfc0b27f2a16ed569cfd745526ca723d31
e27d9e460c374473e692f58013ca692934347ef1
/drafts/quickSpectrogram_2/libraries/liblsl/external/src/serialization/src/binary_iarchive.cpp
69173681dac8f5b8d1918e5ceb40422ba050a0b2
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
thoughtworksarts/Dual_Brains
84a0edf69d95299021daf4af9311aed5724a2e84
a7a6586b91a280950693b427d8269bd68bf8a7ab
refs/heads/master
2021-09-18T15:50:51.397078
2018-07-16T23:20:18
2018-07-16T23:20:18
119,759,649
3
0
null
2018-07-16T23:14:34
2018-02-01T00:09:16
HTML
UTF-8
C++
false
false
1,781
cpp
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 // binary_iarchive.cpp: // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.lslboost.org/LICENSE_1_0.txt) // See http://www.lslboost.org for updates, documentation, and revision history. #include <istream> #define BOOST_ARCHIVE_SOURCE #include <lslboost/archive/binary_iarchive.hpp> #include <lslboost/archive/detail/archive_serializer_map.hpp> #include <lslboost/archive/impl/archive_serializer_map.ipp> #include <lslboost/archive/impl/basic_binary_iprimitive.ipp> #include <lslboost/archive/impl/basic_binary_iarchive.ipp> namespace lslboost { namespace archive { // explicitly instantiate for this type of stream template class detail::archive_serializer_map<naked_binary_iarchive>; template class basic_binary_iprimitive< naked_binary_iarchive, std::istream::char_type, std::istream::traits_type >; template class basic_binary_iarchive<naked_binary_iarchive> ; template class binary_iarchive_impl< naked_binary_iarchive, std::istream::char_type, std::istream::traits_type >; // explicitly instantiate for this type of stream template class detail::archive_serializer_map<binary_iarchive>; template class basic_binary_iprimitive< binary_iarchive, std::istream::char_type, std::istream::traits_type >; template class basic_binary_iarchive<binary_iarchive> ; template class binary_iarchive_impl< binary_iarchive, std::istream::char_type, std::istream::traits_type >; } // namespace archive } // namespace lslboost
[ "gabriel.ibagon@gmail.com" ]
gabriel.ibagon@gmail.com
61595b6045bedfd7799ec2024985f0e4c649b441
094a1baacdd64e6d4567842844e4c79207323dcd
/naming.cpp
4710340cc37e1a867d8e691566cd8d20650e44b0
[]
no_license
Schnullerpip/coop
35ddae59f3c7d908dd43855440418e48b55e666b
09658c9cdd610b0d019e35ef5c7953a590855ac4
refs/heads/master
2020-03-15T12:14:02.820421
2019-05-15T09:44:59
2019-05-15T09:44:59
132,139,339
1
0
null
null
null
null
UTF-8
C++
false
false
2,032
cpp
#include"naming.hpp" #include"Logger.hpp" namespace coop { namespace naming{ const char * get_from_end_until(const char *file, const char delimiter) { const char *relevant_token; size_t iterations = 0, file_length = strlen(file); for(relevant_token = file+strlen(file); *(relevant_token-1) != delimiter && (iterations < file_length); --relevant_token){ ++iterations; } return relevant_token; } const char * get_from_start_until(const char *file, const char delimiter) { const char *relevant_token; size_t iterations = 0, file_length = strlen(file); for(relevant_token = file; *relevant_token != delimiter && (iterations < file_length); ++relevant_token){ ++iterations; } return ++relevant_token; } const char * get_relevant_token(const char *file) { return get_from_end_until(file, '/'); } std::string get_without(std::string s, const char * without) { s.replace(s.find(without), strlen(without), ""); return s; } std::string get_for_loop_identifier(const ForStmt* loop, SourceManager *srcMgr) { std::stringstream dest; const char *fileName = get_relevant_token(srcMgr->getFilename(loop->getForLoc()).str().c_str()); dest << "[FLoop:" << fileName << ":" << srcMgr->getPresumedLineNumber(loop->getLocStart()) << ":" << srcMgr->getPresumedColumnNumber(loop->getLocStart()) << "]"; return dest.str(); } std::string get_while_loop_identifier(const WhileStmt* loop, SourceManager *srcMgr) { std::stringstream dest; const char *fileName = get_relevant_token(srcMgr->getFilename(loop->getWhileLoc()).str().c_str()); dest << "[WLoop:" << fileName << ":" << srcMgr->getPresumedLineNumber(loop->getLocStart()) << ":" << srcMgr->getPresumedColumnNumber(loop->getLocStart()) << "]"; return dest.str(); } }//namespace naming }//namespace coop
[ "schnullerpip@gmail.com" ]
schnullerpip@gmail.com
f5427eb4119fd2b67ed17877f7b207a0616ac6b4
fcaf1485389e7fc7bf5345e65e212f5d4db85b5a
/ventas.h
74741f24c364829e977a15f131181d75257059b1
[]
no_license
AdrielChambi/AED-TP13-MATRICES
b1e025d00ab42b25516478d413228e42784ddecb
28651d39fc2bb5ed595ea2d2bc01988a9409d8fe
refs/heads/master
2021-01-19T21:29:38.874634
2015-09-17T15:56:10
2015-09-17T15:56:10
42,464,183
0
0
null
null
null
null
UTF-8
C++
false
false
409
h
#ifndef _ventas_h #define _ventas_h #include <iostream> #include <array> // Se necesita activar C++11 using namespace std; //DECLARACIONES: struct Ventas { //Tipo de Dato Ventas array<array<double,100>,100> Matrix; unsigned i; unsigned j; }; istream& leer_dato(double &par_dato); //Lee un Dato void mostrar_matrix(Ventas &par_matrix); //Muestra la matriz de n x m #endif
[ "dchambi@fuerzas-armadas.mil.ar" ]
dchambi@fuerzas-armadas.mil.ar
2e3676a14335d6114bff144062d9dd71ecf129b0
0d429169e7bbd6b3f741176ac07b415d0953b37e
/Source/XLibrary/XTcpMessageReceiverThread.h
4d3ece15d7db074d63bd3c6b53e9dd29ad496a20
[ "MIT" ]
permissive
xylamic/lightrail-pubsub-integration-framework
5d98786e530002b5aa74a64cafd81f059e006e25
a7abc543982dca46119c0135af1d31c6f182797c
refs/heads/master
2020-04-27T21:17:41.310151
2019-03-09T14:14:48
2019-03-09T14:14:48
174,690,980
1
0
null
null
null
null
UTF-8
C++
false
false
1,537
h
/*! @file XTcpMessageReceiverThread.h @author Adam Jordan This file is part of the Xylasoft Lightrail product. Copyright (c) 2011 Adam Jordan, Xylasoft, All Rights Reserved http://www.xylasoft.com Licensed for use under the MIT License See accompanying LICENSE file for more information */ #ifndef XTCPMESSAGERECEIVERTHREAD_H #define XTCPMESSAGERECEIVERTHREAD_H #include "XThread.h" #include "XSingleEventCallback.h" #include "XSocketDevice.h" #include "XByteArray.h" namespace Xylasoft { /*! This provides an individual message receiver on a specific socket. This accepts a message and returns it to the creator. */ class XTcpMessageReceiverThread : public XThread, public XSocketDevice { public: /*! Construct the receiver thread. @param[in] socket The socket to use to receive the message. @param[in] callback The callback for when the message is accepted. */ XTcpMessageReceiverThread(SOCKET socket, XSingleEventCallback<const XByteArray&>& callback); /*! Destroy the receiver thread. */ virtual ~XTcpMessageReceiverThread(); /*! Get the receiver socket handle. */ SOCKET SocketHandle(); /*! Get whether this thread has completed execution. */ bool CompletedExecution(); /*! Kill the execution of the receiver thread and close any open connection. */ void KillConnection(); protected: virtual void Execution(); private: SOCKET m_socket; volatile bool m_completed; volatile bool m_wasKilled; XSingleEventCallback<const XByteArray&>& m_callback; }; } #endif
[ "xylamic@xylasoft.com" ]
xylamic@xylasoft.com
4f466db72acf8a6aa9efa9e9b0d9a324edb18585
cd8af3712fdad2a0ad401862cc733e01fdfcd4d4
/dubdelay/denormalnoise.h
31459cb3066c0bdb08e753a213e82c4378cf7a17
[]
no_license
eriser/buzzmachines
154d8516af7718776cbdd460829396b9e4c5f27b
dfc3ac3d26bec2b895628047b7b1ded6b89c33e6
refs/heads/master
2021-01-17T23:04:14.043252
2015-04-15T11:49:20
2015-04-15T11:49:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,107
h
class denormalnoise { public: denormalnoise(int size) { rand_state = 1; noisetbl = new float[size]; for (int i = 0; i<size;i++){ noisetbl[i] = white_noise(); } } denormalnoise() { rand_state = 1; noisetbl = new float[257]; for (int i = 0; i<257;i++){ noisetbl[i] = white_noise(); } } ~denormalnoise() { delete [] noisetbl; } private: unsigned int rand_state; float * noisetbl; float white_noise () { rand_state = rand_state * 1234567UL + 890123UL; int mantissa = rand_state & 0x807F0000; // Keep only most significant bits int flt_rnd = mantissa | 0x1E000000; // Set exponent return *reinterpret_cast <const float *> (&flt_rnd); } public: inline float get(const int p) { return noisetbl[p]; } };
[ "kjnilsson@gmail.com" ]
kjnilsson@gmail.com
d75ac387128549b17844aae14203134d7bc3129e
8bc4266550a533c1c8842c57fe2d864849843bbe
/components/safe_browsing/realtime/url_lookup_service.cc
e03f53020bfba7478d5bb45a243e058052884b48
[ "BSD-3-Clause" ]
permissive
KeithPiTsui/chromium
5c7102da0f3cb2f6f90d27fbdb325e1b3f7b24a5
6e5b52720c923f7e567722431068eceebc61afdd
refs/heads/master
2023-01-16T04:08:13.017492
2019-12-11T05:01:20
2019-12-11T05:01:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,936
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 "components/safe_browsing/realtime/url_lookup_service.h" #include "base/base64url.h" #include "base/metrics/histogram_macros.h" #include "base/strings/string_piece.h" #include "base/time/time.h" #include "components/safe_browsing/db/v4_protocol_manager_util.h" #include "content/public/browser/browser_thread.h" #include "net/base/ip_address.h" #include "net/base/load_flags.h" #include "net/base/url_util.h" #include "net/http/http_status_code.h" #include "net/traffic_annotation/network_traffic_annotation.h" #include "services/network/public/cpp/resource_request.h" #include "services/network/public/cpp/resource_response.h" #include "services/network/public/cpp/shared_url_loader_factory.h" #include "services/network/public/cpp/simple_url_loader.h" namespace safe_browsing { namespace { const char kRealTimeLookupUrlPrefix[] = "https://safebrowsing.google.com/safebrowsing/clientreport/realtime"; const size_t kMaxFailuresToEnforceBackoff = 3; const size_t kBackOffResetDurationInSeconds = 5 * 60; // 5 minutes. const size_t kURLLookupTimeoutDurationInSeconds = 10; // 10 seconds. // Fragements, usernames and passwords are removed, becuase fragments are only // used for local navigations and usernames/passwords are too privacy sensitive. GURL SanitizeURL(const GURL& url) { GURL::Replacements replacements; replacements.ClearRef(); replacements.ClearUsername(); replacements.ClearPassword(); return url.ReplaceComponents(replacements); } } // namespace RealTimeUrlLookupService::RealTimeUrlLookupService( scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory) : url_loader_factory_(url_loader_factory) {} void RealTimeUrlLookupService::StartLookup( const GURL& url, RTLookupRequestCallback request_callback, RTLookupResponseCallback response_callback) { DCHECK_CURRENTLY_ON(content::BrowserThread::IO); DCHECK(url.is_valid()); std::unique_ptr<RTLookupRequest> request = FillRequestProto(url); std::string req_data; request->SerializeToString(&req_data); net::NetworkTrafficAnnotationTag traffic_annotation = net::DefineNetworkTrafficAnnotation("safe_browsing_realtime_url_lookup", R"( semantics { sender: "Safe Browsing" description: "When Safe Browsing can't detect that a URL is safe based on its " "local database, it sends the top-level URL to Google to verify it " "before showing a warning to the user." trigger: "When a main frame URL fails to match the local hash-prefix " "database of known safe URLs and a valid result from a prior " "lookup is not already cached, this will be sent." data: "The main frame URL that did not match the local safelist." destination: GOOGLE_OWNED_SERVICE } policy { cookies_allowed: YES cookies_store: "Safe Browsing cookie store" setting: "Users can disable Safe Browsing real time URL checks by " "unchecking 'Protect you and your device from dangerous sites' in " "Chromium settings under Privacy, or by unchecking 'Make searches " "and browsing better (Sends URLs of pages you visit to Google)' in " "Chromium settings under Privacy." chrome_policy { SafeBrowsingRealTimeLookupEnabled { policy_options {mode: MANDATORY} SafeBrowsingRealTimeLookupEnabled: false } } })"); auto resource_request = std::make_unique<network::ResourceRequest>(); resource_request->url = GURL(kRealTimeLookupUrlPrefix); resource_request->load_flags = net::LOAD_DISABLE_CACHE; resource_request->method = "POST"; std::unique_ptr<network::SimpleURLLoader> owned_loader = network::SimpleURLLoader::Create(std::move(resource_request), traffic_annotation); network::SimpleURLLoader* loader = owned_loader.get(); owned_loader->AttachStringForUpload(req_data, "application/octet-stream"); owned_loader->SetTimeoutDuration( base::TimeDelta::FromSeconds(kURLLookupTimeoutDurationInSeconds)); owned_loader->DownloadToStringOfUnboundedSizeUntilCrashAndDie( url_loader_factory_.get(), base::BindOnce(&RealTimeUrlLookupService::OnURLLoaderComplete, GetWeakPtr(), loader, base::TimeTicks::Now())); pending_requests_[owned_loader.release()] = std::move(response_callback); std::move(request_callback).Run(std::move(request)); } RealTimeUrlLookupService::~RealTimeUrlLookupService() { for (auto& pending : pending_requests_) { // An empty response is treated as safe. auto response = std::make_unique<RTLookupResponse>(); std::move(pending.second).Run(std::move(response)); delete pending.first; } pending_requests_.clear(); } void RealTimeUrlLookupService::OnURLLoaderComplete( network::SimpleURLLoader* url_loader, base::TimeTicks request_start_time, std::unique_ptr<std::string> response_body) { DCHECK_CURRENTLY_ON(content::BrowserThread::IO); auto it = pending_requests_.find(url_loader); DCHECK(it != pending_requests_.end()) << "Request not found"; UMA_HISTOGRAM_TIMES("SafeBrowsing.RT.Network.Time", base::TimeTicks::Now() - request_start_time); int net_error = url_loader->NetError(); int response_code = 0; if (url_loader->ResponseInfo() && url_loader->ResponseInfo()->headers) response_code = url_loader->ResponseInfo()->headers->response_code(); V4ProtocolManagerUtil::RecordHttpResponseOrErrorCode( "SafeBrowsing.RT.Network.Result", net_error, response_code); auto response = std::make_unique<RTLookupResponse>(); bool success = (net_error == net::OK) && (response_code == net::HTTP_OK) && response->ParseFromString(*response_body); success ? HandleLookupSuccess() : HandleLookupError(); std::move(it->second).Run(std::move(response)); delete it->first; pending_requests_.erase(it); } bool RealTimeUrlLookupService::CanCheckUrl(const GURL& url) const { if (!url.SchemeIsHTTPOrHTTPS()) { return false; } if (net::IsLocalhost(url)) { // Includes: "//localhost/", "//localhost.localdomain/", "//127.0.0.1/" return false; } net::IPAddress ip_address; if (url.HostIsIPAddress() && ip_address.AssignFromIPLiteral(url.host()) && !ip_address.IsPubliclyRoutable()) { // Includes: "//192.168.1.1/", "//172.16.2.2/", "//10.1.1.1/" return false; } return true; } std::unique_ptr<RTLookupRequest> RealTimeUrlLookupService::FillRequestProto( const GURL& url) { auto request = std::make_unique<RTLookupRequest>(); request->set_url(SanitizeURL(url).spec()); request->set_lookup_type(RTLookupRequest::NAVIGATION); // TODO(crbug.com/1017499): Set ChromeUserPopulation. return request; } void RealTimeUrlLookupService::ExitBackoff() { DCHECK_CURRENTLY_ON(content::BrowserThread::IO); ResetFailures(); } void RealTimeUrlLookupService::HandleLookupError() { DCHECK_CURRENTLY_ON(content::BrowserThread::IO); consecutive_failures_++; if (IsInBackoffMode()) { reset_backoff_timer_.Stop(); reset_backoff_timer_.Start( FROM_HERE, base::TimeDelta::FromSeconds(kBackOffResetDurationInSeconds), this, &RealTimeUrlLookupService::ExitBackoff); } } void RealTimeUrlLookupService::HandleLookupSuccess() { DCHECK_CURRENTLY_ON(content::BrowserThread::IO); ResetFailures(); } bool RealTimeUrlLookupService::IsInBackoffMode() { DCHECK_CURRENTLY_ON(content::BrowserThread::IO); return consecutive_failures_ >= kMaxFailuresToEnforceBackoff; } void RealTimeUrlLookupService::ResetFailures() { DCHECK_CURRENTLY_ON(content::BrowserThread::IO); consecutive_failures_ = 0; reset_backoff_timer_.Stop(); } // static SBThreatType RealTimeUrlLookupService::GetSBThreatTypeForRTThreatType( RTLookupResponse::ThreatInfo::ThreatType rt_threat_type) { switch (rt_threat_type) { case RTLookupResponse::ThreatInfo::WEB_MALWARE: return SB_THREAT_TYPE_URL_MALWARE; case RTLookupResponse::ThreatInfo::SOCIAL_ENGINEERING: return SB_THREAT_TYPE_URL_PHISHING; case RTLookupResponse::ThreatInfo::UNWANTED_SOFTWARE: return SB_THREAT_TYPE_URL_UNWANTED; case RTLookupResponse::ThreatInfo::UNCLEAR_BILLING: return SB_THREAT_TYPE_BILLING; case RTLookupResponse::ThreatInfo::THREAT_TYPE_UNSPECIFIED: NOTREACHED() << "Unexpected RTLookupResponse::ThreatType encountered"; return SB_THREAT_TYPE_SAFE; } } base::WeakPtr<RealTimeUrlLookupService> RealTimeUrlLookupService::GetWeakPtr() { return weak_factory_.GetWeakPtr(); } } // namespace safe_browsing
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
9d3559ba4c7e2f8398d2cda4f15e82fa33eaee8b
ab2c8f75630b3f3d99e80cc887833d754bf144e4
/output/Il2CppOutputProject/Source/il2cppOutput/Il2CppInvokerTable.cpp
95b1b15964ec90f030dfdc0292d821a54c8aa0ae
[]
no_license
L200150144/gameFarm
3a13ec68cbed79b0ad9000a2c491595c888f7c35
8d9129cb544b39f3411cc5f494aecf4ff837e298
refs/heads/master
2020-08-19T15:40:48.653154
2019-10-26T16:05:33
2019-10-26T16:05:33
215,930,613
0
0
null
null
null
null
UTF-8
C++
false
false
2,819,457
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" // Mono.RuntimeStructs/MonoClass struct MonoClass_t70E8387B50321F8F4934A7012C88827A4C921301; // System.Action struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579; // System.Action`1<System.Object> struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0; // System.Boolean[] struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884; // System.Collections.Generic.Dictionary`2<System.Object,System.Boolean> struct Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21; // System.Collections.Generic.Dictionary`2<System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>> struct Dictionary_2_tF6ACA785446F02853DE47796DE50BA62011B4BC3; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum> struct Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA; // System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator> struct Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6; // System.Collections.Generic.Dictionary`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object> struct Dictionary_2_t283EECF1507E23DEAA390A103471739BF608C018; // System.Collections.Generic.HashSet`1<System.Object> struct HashSet_1_t725419BA457D845928B505ACE877FF46BC71E897; // System.Collections.Generic.LinkedListNode`1<System.Object> struct LinkedListNode_1_t29FE2977C490DD49F9F19A1FCBD4B2510F580683; // System.Collections.Generic.LinkedList`1<System.Object> struct LinkedList_1_t53CE3B6C8AC75667A89B320FD72FAF18BAB09384; // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1; // System.Collections.Generic.List`1<System.Int32> struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226; // System.Collections.Generic.List`1<System.Int32Enum> struct List_1_t116A3B8CE581BED3D4552A7F22FE553557ADC4C5; // System.Collections.Generic.List`1<System.Object> struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D; // System.Collections.Generic.List`1<System.Single> struct List_1_t8980FA0E6CB3848F706C43D859930435C34BCC37; // System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock> struct List_1_t53AD896B2509A4686D143641030CF022753D3B04; // System.Collections.Generic.List`1<UnityEngine.Color32> struct List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5; // System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult> struct List_1_tB291263EEE72B9F137CA4DC19F039DE672D08028; // System.Collections.Generic.List`1<UnityEngine.RaycastHit2D> struct List_1_t0F62CCE949E86085F8C12C989DB33BF40F2B73A9; // System.Collections.Generic.List`1<UnityEngine.UICharInfo> struct List_1_tD850FBA632A52824016AAA9B3748BA38F51E087E; // System.Collections.Generic.List`1<UnityEngine.UILineInfo> struct List_1_t7687D8368357F4437252DC75BFCE9DE76F3143A0; // System.Collections.Generic.List`1<UnityEngine.UIVertex> struct List_1_t4CE16E1B496C9FE941554BB47727DFDD7C3D9554; // System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest> struct List_1_t6E5C746AF7DE21972A905DE655062193862839D6; // System.Collections.Generic.List`1<UnityEngine.Vector2> struct List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB; // System.Collections.Generic.List`1<UnityEngine.Vector3> struct List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5; // System.Collections.Generic.List`1<UnityEngine.Vector4> struct List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; // System.Reflection.ConstructorInfo struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF; // System.Reflection.ConstructorInfo[] struct ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E; // System.Reflection.EventInfo struct EventInfo_t; // System.Reflection.EventInfo[] struct EventInfoU5BU5D_t507AD5C5E08DCF89B8FCAC6A8897F3152D03433C; // System.Reflection.FieldInfo struct FieldInfo_t; // System.Reflection.FieldInfo[] struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Reflection.MethodInfo[] struct MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B; // System.Reflection.PropertyInfo struct PropertyInfo_t; // System.Reflection.PropertyInfo[] struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E; // System.Runtime.CompilerServices.IAsyncStateMachine struct IAsyncStateMachine_tEFDFBE18E061A6065AB2FF735F1425FB59F919BC; // System.Runtime.Remoting.Messaging.CADMethodReturnMessage struct CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C; // System.Runtime.Remoting.Messaging.LogicalCallContext struct LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2; // System.String struct String_t; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; // System.Threading.CancellationCallbackInfo struct CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36; // System.Threading.CancellationTokenSource struct CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE; // System.Threading.ExecutionContext struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70; // System.Threading.ManualResetEvent struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408; // System.Threading.SendOrPostCallback struct SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01; // System.Threading.SparselyPopulatedArrayFragment`1<System.Object> struct SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364; // System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo> struct SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7; // System.Threading.Tasks.Task`1<System.Boolean> struct Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439; // System.Threading.Tasks.Task`1<System.Int32> struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87; // System.Threading.Tasks.Task`1<System.Object> struct Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09; // System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult> struct Task_1_t1359D75350E9D976BFA28AD96E417450DE277673; // System.Threading.Thread struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7; // System.Type struct Type_t; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; // System.UInt32[] struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017; // UnityEngine.Camera struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34; // UnityEngine.EventSystems.BaseRaycaster struct BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966; // UnityEngine.Events.UnityAction struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem/UpdateFunction struct UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem[] struct PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2; // UnityEngine.Experimental.XR.XRCameraSubsystem struct XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701; // UnityEngine.Experimental.XR.XRDepthSubsystem struct XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089; // UnityEngine.Experimental.XR.XRPlaneSubsystem struct XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B; // UnityEngine.Experimental.XR.XRSessionSubsystem struct XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F; // UnityEngine.Font struct Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26; // UnityEngine.GameObject struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F; // UnityEngine.Mesh struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C; // UnityEngine.MeshCollider struct MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE; // UnityEngine.MeshFilter struct MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0; // UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0; // UnityEngine.Playables.PlayableBinding/CreateOutputMethod struct CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3; // UnityEngine.Playables.PlayableBinding[] struct PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB; // UnityEngine.PostProcessing.AntialiasingModel/FxaaConsoleSettings[] struct FxaaConsoleSettingsU5BU5D_t6627EE986966C1CA0E712FB09F4C2235D4440C86; // UnityEngine.PostProcessing.AntialiasingModel/FxaaQualitySettings[] struct FxaaQualitySettingsU5BU5D_t12A497E489D5AD46034F201274B5B7350763CC9F; // UnityEngine.PostProcessing.ColorGradingCurve struct ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D; // UnityEngine.RenderTexture struct RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6; // UnityEngine.Rendering.RenderTargetIdentifier[] struct RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4; // UnityEngine.Sprite struct Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198; // UnityEngine.Sprite[] struct SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7; // UnityEngine.Texture struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4; // UnityEngine.Texture2D struct Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C; // UnityEngine.UI.CoroutineTween.ColorTween/ColorTweenCallback struct ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0; // UnityEngine.UI.CoroutineTween.FloatTween/FloatTweenCallback struct FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502; // UnityEngine.UI.Selectable struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A; // UnityEngine.Windows.Speech.SemanticMeaning[] struct SemanticMeaningU5BU5D_t3FC0A968EA1C540EEA6B6F92368A430CA596D23D; // UnityEngine.XR.WSA.WorldAnchor struct WorldAnchor_tD6275232D14415769601A3BD6AE1E7D5622F96EE; struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com; struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_com; struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_pinvoke; struct RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B ; struct SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_marshaled_com; struct SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_marshaled_pinvoke; 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.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com { }; // Mono.Globalization.Unicode.CodePointIndexer_TableRange struct TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 { public: // System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::Start int32_t ___Start_0; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::End int32_t ___End_1; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::Count int32_t ___Count_2; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::IndexStart int32_t ___IndexStart_3; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::IndexEnd int32_t ___IndexEnd_4; public: inline static int32_t get_offset_of_Start_0() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___Start_0)); } inline int32_t get_Start_0() const { return ___Start_0; } inline int32_t* get_address_of_Start_0() { return &___Start_0; } inline void set_Start_0(int32_t value) { ___Start_0 = value; } inline static int32_t get_offset_of_End_1() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___End_1)); } inline int32_t get_End_1() const { return ___End_1; } inline int32_t* get_address_of_End_1() { return &___End_1; } inline void set_End_1(int32_t value) { ___End_1 = value; } inline static int32_t get_offset_of_Count_2() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___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_IndexStart_3() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___IndexStart_3)); } inline int32_t get_IndexStart_3() const { return ___IndexStart_3; } inline int32_t* get_address_of_IndexStart_3() { return &___IndexStart_3; } inline void set_IndexStart_3(int32_t value) { ___IndexStart_3 = value; } inline static int32_t get_offset_of_IndexEnd_4() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___IndexEnd_4)); } inline int32_t get_IndexEnd_4() const { return ___IndexEnd_4; } inline int32_t* get_address_of_IndexEnd_4() { return &___IndexEnd_4; } inline void set_IndexEnd_4(int32_t value) { ___IndexEnd_4 = value; } }; // Mono.RuntimeClassHandle struct RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 { public: // Mono.RuntimeStructs_MonoClass* Mono.RuntimeClassHandle::value MonoClass_t70E8387B50321F8F4934A7012C88827A4C921301 * ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5, ___value_0)); } inline MonoClass_t70E8387B50321F8F4934A7012C88827A4C921301 * get_value_0() const { return ___value_0; } inline MonoClass_t70E8387B50321F8F4934A7012C88827A4C921301 ** get_address_of_value_0() { return &___value_0; } inline void set_value_0(MonoClass_t70E8387B50321F8F4934A7012C88827A4C921301 * value) { ___value_0 = value; } }; // Mono.Security.Uri_UriScheme struct UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 { public: // System.String Mono.Security.Uri_UriScheme::scheme String_t* ___scheme_0; // System.String Mono.Security.Uri_UriScheme::delimiter String_t* ___delimiter_1; // System.Int32 Mono.Security.Uri_UriScheme::defaultPort int32_t ___defaultPort_2; public: inline static int32_t get_offset_of_scheme_0() { return static_cast<int32_t>(offsetof(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, ___scheme_0)); } inline String_t* get_scheme_0() const { return ___scheme_0; } inline String_t** get_address_of_scheme_0() { return &___scheme_0; } inline void set_scheme_0(String_t* value) { ___scheme_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___scheme_0), (void*)value); } inline static int32_t get_offset_of_delimiter_1() { return static_cast<int32_t>(offsetof(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, ___delimiter_1)); } inline String_t* get_delimiter_1() const { return ___delimiter_1; } inline String_t** get_address_of_delimiter_1() { return &___delimiter_1; } inline void set_delimiter_1(String_t* value) { ___delimiter_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___delimiter_1), (void*)value); } inline static int32_t get_offset_of_defaultPort_2() { return static_cast<int32_t>(offsetof(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, ___defaultPort_2)); } inline int32_t get_defaultPort_2() const { return ___defaultPort_2; } inline int32_t* get_address_of_defaultPort_2() { return &___defaultPort_2; } inline void set_defaultPort_2(int32_t value) { ___defaultPort_2 = value; } }; // Native definition for P/Invoke marshalling of Mono.Security.Uri/UriScheme struct UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_marshaled_pinvoke { char* ___scheme_0; char* ___delimiter_1; int32_t ___defaultPort_2; }; // Native definition for COM marshalling of Mono.Security.Uri/UriScheme struct UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_marshaled_com { Il2CppChar* ___scheme_0; Il2CppChar* ___delimiter_1; int32_t ___defaultPort_2; }; // System.Boolean struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 { public: // System.Object System.Collections.DictionaryEntry::_key RuntimeObject * ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject * ____value_1; public: inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value); } inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object> struct Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D { 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 RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___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_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___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_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___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_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean> struct Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value bool ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, ___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_t495C47A91D5A1899AF832D603308B663495EC5A8, ___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_t495C47A91D5A1899AF832D603308B663495EC5A8, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, ___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.Object,System.Int32> struct Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___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_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___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_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___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_Entry<System.Object,System.Object> struct Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Int32,System.Object> struct Enumerator_t95C250C5AE20EE169657CA9FE77127647391DEDF { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t95C250C5AE20EE169657CA9FE77127647391DEDF, ___dictionary_0)); } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * 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_t95C250C5AE20EE169657CA9FE77127647391DEDF, ___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_t95C250C5AE20EE169657CA9FE77127647391DEDF, ___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_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t95C250C5AE20EE169657CA9FE77127647391DEDF, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Object,System.Boolean> struct Enumerator_t43B68EC9234C7A0A75CEFA2AC6BB72DADB85EE4E { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t43B68EC9234C7A0A75CEFA2AC6BB72DADB85EE4E, ___dictionary_0)); } inline Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * 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_t43B68EC9234C7A0A75CEFA2AC6BB72DADB85EE4E, ___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_t43B68EC9234C7A0A75CEFA2AC6BB72DADB85EE4E, ___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_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t43B68EC9234C7A0A75CEFA2AC6BB72DADB85EE4E, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>> struct Enumerator_tD806BA1896505DF328E1524919D22FD766AFA98D { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary Dictionary_2_tF6ACA785446F02853DE47796DE50BA62011B4BC3 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tD806BA1896505DF328E1524919D22FD766AFA98D, ___dictionary_0)); } inline Dictionary_2_tF6ACA785446F02853DE47796DE50BA62011B4BC3 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tF6ACA785446F02853DE47796DE50BA62011B4BC3 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tF6ACA785446F02853DE47796DE50BA62011B4BC3 * 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_tD806BA1896505DF328E1524919D22FD766AFA98D, ___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_tD806BA1896505DF328E1524919D22FD766AFA98D, ___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_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tD806BA1896505DF328E1524919D22FD766AFA98D, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Object,System.Int32> struct Enumerator_t428D4B9665D853418E89F6F24EA1E9B0BCA42ADC { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t428D4B9665D853418E89F6F24EA1E9B0BCA42ADC, ___dictionary_0)); } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * 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_t428D4B9665D853418E89F6F24EA1E9B0BCA42ADC, ___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_t428D4B9665D853418E89F6F24EA1E9B0BCA42ADC, ___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_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t428D4B9665D853418E89F6F24EA1E9B0BCA42ADC, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Object,System.Int32Enum> struct Enumerator_t297717F4088863DFAC93BB43C6B2B6E56DB7462B { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t297717F4088863DFAC93BB43C6B2B6E56DB7462B, ___dictionary_0)); } inline Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t297717F4088863DFAC93BB43C6B2B6E56DB7462B, ___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_t297717F4088863DFAC93BB43C6B2B6E56DB7462B, ___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_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t297717F4088863DFAC93BB43C6B2B6E56DB7462B, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Object,System.Object> struct Enumerator_t725320A9593FFA06C5F8F058B3705F530FC9D210 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t725320A9593FFA06C5F8F058B3705F530FC9D210, ___dictionary_0)); } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t725320A9593FFA06C5F8F058B3705F530FC9D210, ___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_t725320A9593FFA06C5F8F058B3705F530FC9D210, ___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_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t725320A9593FFA06C5F8F058B3705F530FC9D210, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<System.Object,System.Resources.ResourceLocator> struct Enumerator_t5511F23E2799C7AB88F2654739BF13F1BBD48129 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t5511F23E2799C7AB88F2654739BF13F1BBD48129, ___dictionary_0)); } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t5511F23E2799C7AB88F2654739BF13F1BBD48129, ___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_t5511F23E2799C7AB88F2654739BF13F1BBD48129, ___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_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t5511F23E2799C7AB88F2654739BF13F1BBD48129, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,System.Object> struct Enumerator_t6263B19C656D07B62170719F737CBF2B12E52B0D { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___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_t6263B19C656D07B62170719F737CBF2B12E52B0D, ___dictionary_0)); } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * 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_t6263B19C656D07B62170719F737CBF2B12E52B0D, ___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_t6263B19C656D07B62170719F737CBF2B12E52B0D, ___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_t6263B19C656D07B62170719F737CBF2B12E52B0D, ___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.Object,System.Boolean> struct Enumerator_t82386E2240FFD4007511705D063202265D0078D1 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * ___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_t82386E2240FFD4007511705D063202265D0078D1, ___dictionary_0)); } inline Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * 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_t82386E2240FFD4007511705D063202265D0078D1, ___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_t82386E2240FFD4007511705D063202265D0078D1, ___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_t82386E2240FFD4007511705D063202265D0078D1, ___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.Object,System.Int32> struct Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___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_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A, ___dictionary_0)); } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * 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_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A, ___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_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A, ___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_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A, ___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; } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Object> struct Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F, ___dictionary_0)); } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F, ___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_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F, ___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_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F, ___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<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object> struct Enumerator_tA1F73074643A75A2368389A536DAD767B976E7AC { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t283EECF1507E23DEAA390A103471739BF608C018 * ___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_tA1F73074643A75A2368389A536DAD767B976E7AC, ___dictionary_0)); } inline Dictionary_2_t283EECF1507E23DEAA390A103471739BF608C018 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t283EECF1507E23DEAA390A103471739BF608C018 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t283EECF1507E23DEAA390A103471739BF608C018 * 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_tA1F73074643A75A2368389A536DAD767B976E7AC, ___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_tA1F73074643A75A2368389A536DAD767B976E7AC, ___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_tA1F73074643A75A2368389A536DAD767B976E7AC, ___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.HashSet`1_Enumerator<System.Object> struct Enumerator_t8434FF623060595DB1C2B2231A4DC225034F0A7A { public: // System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1_Enumerator::_set HashSet_1_t725419BA457D845928B505ACE877FF46BC71E897 * ____set_0; // System.Int32 System.Collections.Generic.HashSet`1_Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.HashSet`1_Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.HashSet`1_Enumerator::_current RuntimeObject * ____current_3; public: inline static int32_t get_offset_of__set_0() { return static_cast<int32_t>(offsetof(Enumerator_t8434FF623060595DB1C2B2231A4DC225034F0A7A, ____set_0)); } inline HashSet_1_t725419BA457D845928B505ACE877FF46BC71E897 * get__set_0() const { return ____set_0; } inline HashSet_1_t725419BA457D845928B505ACE877FF46BC71E897 ** get_address_of__set_0() { return &____set_0; } inline void set__set_0(HashSet_1_t725419BA457D845928B505ACE877FF46BC71E897 * value) { ____set_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____set_0), (void*)value); } inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(Enumerator_t8434FF623060595DB1C2B2231A4DC225034F0A7A, ____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_t8434FF623060595DB1C2B2231A4DC225034F0A7A, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(Enumerator_t8434FF623060595DB1C2B2231A4DC225034F0A7A, ____current_3)); } inline RuntimeObject * get__current_3() const { return ____current_3; } inline RuntimeObject ** get_address_of__current_3() { return &____current_3; } inline void set__current_3(RuntimeObject * value) { ____current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____current_3), (void*)value); } }; // System.Collections.Generic.HashSet`1_Slot<System.Object> struct Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 { public: // System.Int32 System.Collections.Generic.HashSet`1_Slot::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.HashSet`1_Slot::next int32_t ___next_1; // T System.Collections.Generic.HashSet`1_Slot::value RuntimeObject * ___value_2; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___value_2)); } inline RuntimeObject * get_value_2() const { return ___value_2; } inline RuntimeObject ** get_address_of_value_2() { return &___value_2; } inline void set_value_2(RuntimeObject * value) { ___value_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_2), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32> struct KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object> struct KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean> struct KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value bool ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1, ___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_tF975BF5238F06AC9CCA19111DD41484E071258C1, ___value_1)); } inline bool get_value_1() const { return ___value_1; } inline bool* get_address_of_value_1() { return &___value_1; } inline void set_value_1(bool value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32> struct KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___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_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object> struct KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.LinkedList`1_Enumerator<System.Object> struct Enumerator_tD2E008C377B02B56DD6AF067E72CE996FC350483 { public: // System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedList`1_Enumerator::_list LinkedList_1_t53CE3B6C8AC75667A89B320FD72FAF18BAB09384 * ____list_0; // System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1_Enumerator::_node LinkedListNode_1_t29FE2977C490DD49F9F19A1FCBD4B2510F580683 * ____node_1; // System.Int32 System.Collections.Generic.LinkedList`1_Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.LinkedList`1_Enumerator::_current RuntimeObject * ____current_3; // System.Int32 System.Collections.Generic.LinkedList`1_Enumerator::_index int32_t ____index_4; public: inline static int32_t get_offset_of__list_0() { return static_cast<int32_t>(offsetof(Enumerator_tD2E008C377B02B56DD6AF067E72CE996FC350483, ____list_0)); } inline LinkedList_1_t53CE3B6C8AC75667A89B320FD72FAF18BAB09384 * get__list_0() const { return ____list_0; } inline LinkedList_1_t53CE3B6C8AC75667A89B320FD72FAF18BAB09384 ** get_address_of__list_0() { return &____list_0; } inline void set__list_0(LinkedList_1_t53CE3B6C8AC75667A89B320FD72FAF18BAB09384 * value) { ____list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____list_0), (void*)value); } inline static int32_t get_offset_of__node_1() { return static_cast<int32_t>(offsetof(Enumerator_tD2E008C377B02B56DD6AF067E72CE996FC350483, ____node_1)); } inline LinkedListNode_1_t29FE2977C490DD49F9F19A1FCBD4B2510F580683 * get__node_1() const { return ____node_1; } inline LinkedListNode_1_t29FE2977C490DD49F9F19A1FCBD4B2510F580683 ** get_address_of__node_1() { return &____node_1; } inline void set__node_1(LinkedListNode_1_t29FE2977C490DD49F9F19A1FCBD4B2510F580683 * value) { ____node_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____node_1), (void*)value); } inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Enumerator_tD2E008C377B02B56DD6AF067E72CE996FC350483, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(Enumerator_tD2E008C377B02B56DD6AF067E72CE996FC350483, ____current_3)); } inline RuntimeObject * get__current_3() const { return ____current_3; } inline RuntimeObject ** get_address_of__current_3() { return &____current_3; } inline void set__current_3(RuntimeObject * value) { ____current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____current_3), (void*)value); } inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(Enumerator_tD2E008C377B02B56DD6AF067E72CE996FC350483, ____index_4)); } inline int32_t get__index_4() const { return ____index_4; } inline int32_t* get_address_of__index_4() { return &____index_4; } inline void set__index_4(int32_t value) { ____index_4 = value; } }; // System.Collections.Generic.List`1_Enumerator<System.Int32> struct Enumerator_t1A13F370EC7EA46EA20204D8881CCE685A3C348C { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current int32_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1A13F370EC7EA46EA20204D8881CCE685A3C348C, ___list_0)); } inline List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * get_list_0() const { return ___list_0; } inline List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1A13F370EC7EA46EA20204D8881CCE685A3C348C, ___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_t1A13F370EC7EA46EA20204D8881CCE685A3C348C, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1A13F370EC7EA46EA20204D8881CCE685A3C348C, ___current_3)); } inline int32_t get_current_3() const { return ___current_3; } inline int32_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(int32_t value) { ___current_3 = value; } }; // System.Collections.Generic.List`1_Enumerator<System.Object> struct Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current RuntimeObject * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___list_0)); } inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * get_list_0() const { return ___list_0; } inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___current_3)); } inline RuntimeObject * get_current_3() const { return ___current_3; } inline RuntimeObject ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(RuntimeObject * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<System.Single> struct Enumerator_tFAFBEAFCC7B8C7F0A58F04A243A8773B576C4EFD { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t8980FA0E6CB3848F706C43D859930435C34BCC37 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current float ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tFAFBEAFCC7B8C7F0A58F04A243A8773B576C4EFD, ___list_0)); } inline List_1_t8980FA0E6CB3848F706C43D859930435C34BCC37 * get_list_0() const { return ___list_0; } inline List_1_t8980FA0E6CB3848F706C43D859930435C34BCC37 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t8980FA0E6CB3848F706C43D859930435C34BCC37 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tFAFBEAFCC7B8C7F0A58F04A243A8773B576C4EFD, ___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_tFAFBEAFCC7B8C7F0A58F04A243A8773B576C4EFD, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tFAFBEAFCC7B8C7F0A58F04A243A8773B576C4EFD, ___current_3)); } inline float get_current_3() const { return ___current_3; } inline float* get_address_of_current_3() { return &___current_3; } inline void set_current_3(float value) { ___current_3 = value; } }; // System.Collections.Hashtable_bucket struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 { public: // System.Object System.Collections.Hashtable_bucket::key RuntimeObject * ___key_0; // System.Object System.Collections.Hashtable_bucket::val RuntimeObject * ___val_1; // System.Int32 System.Collections.Hashtable_bucket::hash_coll int32_t ___hash_coll_2; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___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_val_1() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___val_1)); } inline RuntimeObject * get_val_1() const { return ___val_1; } inline RuntimeObject ** get_address_of_val_1() { return &___val_1; } inline void set_val_1(RuntimeObject * value) { ___val_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___val_1), (void*)value); } inline static int32_t get_offset_of_hash_coll_2() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___hash_coll_2)); } inline int32_t get_hash_coll_2() const { return ___hash_coll_2; } inline int32_t* get_address_of_hash_coll_2() { return &___hash_coll_2; } inline void set_hash_coll_2(int32_t value) { ___hash_coll_2 = value; } }; // Native definition for P/Invoke marshalling of System.Collections.Hashtable/bucket struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_pinvoke { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___val_1; int32_t ___hash_coll_2; }; // Native definition for COM marshalling of System.Collections.Hashtable/bucket struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_com { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___val_1; int32_t ___hash_coll_2; }; // System.DateTime struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 { public: // System.UInt64 System.DateTime::dateData uint64_t ___dateData_44; public: inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); } inline uint64_t get_dateData_44() const { return ___dateData_44; } inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; } inline void set_dateData_44(uint64_t value) { ___dateData_44 = value; } }; struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MaxValue_32 = value; } }; // System.Decimal struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value); } inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearPositiveZero_13 = value; } }; // System.Double struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF { public: public: }; struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com { }; // System.Globalization.CultureInfo_Data struct Data_t25CAFAACB31D34B4A9385638281C56D4D250BA2F { public: // System.Int32 System.Globalization.CultureInfo_Data::ansi int32_t ___ansi_0; // System.Int32 System.Globalization.CultureInfo_Data::ebcdic int32_t ___ebcdic_1; // System.Int32 System.Globalization.CultureInfo_Data::mac int32_t ___mac_2; // System.Int32 System.Globalization.CultureInfo_Data::oem int32_t ___oem_3; // System.Boolean System.Globalization.CultureInfo_Data::right_to_left bool ___right_to_left_4; // System.Byte System.Globalization.CultureInfo_Data::list_sep uint8_t ___list_sep_5; public: inline static int32_t get_offset_of_ansi_0() { return static_cast<int32_t>(offsetof(Data_t25CAFAACB31D34B4A9385638281C56D4D250BA2F, ___ansi_0)); } inline int32_t get_ansi_0() const { return ___ansi_0; } inline int32_t* get_address_of_ansi_0() { return &___ansi_0; } inline void set_ansi_0(int32_t value) { ___ansi_0 = value; } inline static int32_t get_offset_of_ebcdic_1() { return static_cast<int32_t>(offsetof(Data_t25CAFAACB31D34B4A9385638281C56D4D250BA2F, ___ebcdic_1)); } inline int32_t get_ebcdic_1() const { return ___ebcdic_1; } inline int32_t* get_address_of_ebcdic_1() { return &___ebcdic_1; } inline void set_ebcdic_1(int32_t value) { ___ebcdic_1 = value; } inline static int32_t get_offset_of_mac_2() { return static_cast<int32_t>(offsetof(Data_t25CAFAACB31D34B4A9385638281C56D4D250BA2F, ___mac_2)); } inline int32_t get_mac_2() const { return ___mac_2; } inline int32_t* get_address_of_mac_2() { return &___mac_2; } inline void set_mac_2(int32_t value) { ___mac_2 = value; } inline static int32_t get_offset_of_oem_3() { return static_cast<int32_t>(offsetof(Data_t25CAFAACB31D34B4A9385638281C56D4D250BA2F, ___oem_3)); } inline int32_t get_oem_3() const { return ___oem_3; } inline int32_t* get_address_of_oem_3() { return &___oem_3; } inline void set_oem_3(int32_t value) { ___oem_3 = value; } inline static int32_t get_offset_of_right_to_left_4() { return static_cast<int32_t>(offsetof(Data_t25CAFAACB31D34B4A9385638281C56D4D250BA2F, ___right_to_left_4)); } inline bool get_right_to_left_4() const { return ___right_to_left_4; } inline bool* get_address_of_right_to_left_4() { return &___right_to_left_4; } inline void set_right_to_left_4(bool value) { ___right_to_left_4 = value; } inline static int32_t get_offset_of_list_sep_5() { return static_cast<int32_t>(offsetof(Data_t25CAFAACB31D34B4A9385638281C56D4D250BA2F, ___list_sep_5)); } inline uint8_t get_list_sep_5() const { return ___list_sep_5; } inline uint8_t* get_address_of_list_sep_5() { return &___list_sep_5; } inline void set_list_sep_5(uint8_t value) { ___list_sep_5 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo/Data struct Data_t25CAFAACB31D34B4A9385638281C56D4D250BA2F_marshaled_pinvoke { int32_t ___ansi_0; int32_t ___ebcdic_1; int32_t ___mac_2; int32_t ___oem_3; int32_t ___right_to_left_4; uint8_t ___list_sep_5; }; // Native definition for COM marshalling of System.Globalization.CultureInfo/Data struct Data_t25CAFAACB31D34B4A9385638281C56D4D250BA2F_marshaled_com { int32_t ___ansi_0; int32_t ___ebcdic_1; int32_t ___mac_2; int32_t ___oem_3; int32_t ___right_to_left_4; uint8_t ___list_sep_5; }; // System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 { public: // System.UInt16 System.Globalization.InternalCodePageDataItem::codePage uint16_t ___codePage_0; // System.UInt16 System.Globalization.InternalCodePageDataItem::uiFamilyCodePage uint16_t ___uiFamilyCodePage_1; // System.UInt32 System.Globalization.InternalCodePageDataItem::flags uint32_t ___flags_2; // System.String System.Globalization.InternalCodePageDataItem::Names String_t* ___Names_3; public: inline static int32_t get_offset_of_codePage_0() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___codePage_0)); } inline uint16_t get_codePage_0() const { return ___codePage_0; } inline uint16_t* get_address_of_codePage_0() { return &___codePage_0; } inline void set_codePage_0(uint16_t value) { ___codePage_0 = value; } inline static int32_t get_offset_of_uiFamilyCodePage_1() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___uiFamilyCodePage_1)); } inline uint16_t get_uiFamilyCodePage_1() const { return ___uiFamilyCodePage_1; } inline uint16_t* get_address_of_uiFamilyCodePage_1() { return &___uiFamilyCodePage_1; } inline void set_uiFamilyCodePage_1(uint16_t value) { ___uiFamilyCodePage_1 = value; } inline static int32_t get_offset_of_flags_2() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___flags_2)); } inline uint32_t get_flags_2() const { return ___flags_2; } inline uint32_t* get_address_of_flags_2() { return &___flags_2; } inline void set_flags_2(uint32_t value) { ___flags_2 = value; } inline static int32_t get_offset_of_Names_3() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___Names_3)); } inline String_t* get_Names_3() const { return ___Names_3; } inline String_t** get_address_of_Names_3() { return &___Names_3; } inline void set_Names_3(String_t* value) { ___Names_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Names_3), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_pinvoke { uint16_t ___codePage_0; uint16_t ___uiFamilyCodePage_1; uint32_t ___flags_2; char* ___Names_3; }; // Native definition for COM marshalling of System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_com { uint16_t ___codePage_0; uint16_t ___uiFamilyCodePage_1; uint32_t ___flags_2; Il2CppChar* ___Names_3; }; // System.Globalization.InternalEncodingDataItem struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 { public: // System.String System.Globalization.InternalEncodingDataItem::webName String_t* ___webName_0; // System.UInt16 System.Globalization.InternalEncodingDataItem::codePage uint16_t ___codePage_1; public: inline static int32_t get_offset_of_webName_0() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, ___webName_0)); } inline String_t* get_webName_0() const { return ___webName_0; } inline String_t** get_address_of_webName_0() { return &___webName_0; } inline void set_webName_0(String_t* value) { ___webName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___webName_0), (void*)value); } inline static int32_t get_offset_of_codePage_1() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, ___codePage_1)); } inline uint16_t get_codePage_1() const { return ___codePage_1; } inline uint16_t* get_address_of_codePage_1() { return &___codePage_1; } inline void set_codePage_1(uint16_t value) { ___codePage_1 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.InternalEncodingDataItem struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_marshaled_pinvoke { char* ___webName_0; uint16_t ___codePage_1; }; // Native definition for COM marshalling of System.Globalization.InternalEncodingDataItem struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_marshaled_com { Il2CppChar* ___webName_0; uint16_t ___codePage_1; }; // System.Globalization.TimeSpanFormat_FormatLiterals struct FormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223 { public: // System.String System.Globalization.TimeSpanFormat_FormatLiterals::AppCompatLiteral String_t* ___AppCompatLiteral_0; // System.Int32 System.Globalization.TimeSpanFormat_FormatLiterals::dd int32_t ___dd_1; // System.Int32 System.Globalization.TimeSpanFormat_FormatLiterals::hh int32_t ___hh_2; // System.Int32 System.Globalization.TimeSpanFormat_FormatLiterals::mm int32_t ___mm_3; // System.Int32 System.Globalization.TimeSpanFormat_FormatLiterals::ss int32_t ___ss_4; // System.Int32 System.Globalization.TimeSpanFormat_FormatLiterals::ff int32_t ___ff_5; // System.String[] System.Globalization.TimeSpanFormat_FormatLiterals::literals StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___literals_6; public: inline static int32_t get_offset_of_AppCompatLiteral_0() { return static_cast<int32_t>(offsetof(FormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223, ___AppCompatLiteral_0)); } inline String_t* get_AppCompatLiteral_0() const { return ___AppCompatLiteral_0; } inline String_t** get_address_of_AppCompatLiteral_0() { return &___AppCompatLiteral_0; } inline void set_AppCompatLiteral_0(String_t* value) { ___AppCompatLiteral_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___AppCompatLiteral_0), (void*)value); } inline static int32_t get_offset_of_dd_1() { return static_cast<int32_t>(offsetof(FormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223, ___dd_1)); } inline int32_t get_dd_1() const { return ___dd_1; } inline int32_t* get_address_of_dd_1() { return &___dd_1; } inline void set_dd_1(int32_t value) { ___dd_1 = value; } inline static int32_t get_offset_of_hh_2() { return static_cast<int32_t>(offsetof(FormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223, ___hh_2)); } inline int32_t get_hh_2() const { return ___hh_2; } inline int32_t* get_address_of_hh_2() { return &___hh_2; } inline void set_hh_2(int32_t value) { ___hh_2 = value; } inline static int32_t get_offset_of_mm_3() { return static_cast<int32_t>(offsetof(FormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223, ___mm_3)); } inline int32_t get_mm_3() const { return ___mm_3; } inline int32_t* get_address_of_mm_3() { return &___mm_3; } inline void set_mm_3(int32_t value) { ___mm_3 = value; } inline static int32_t get_offset_of_ss_4() { return static_cast<int32_t>(offsetof(FormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223, ___ss_4)); } inline int32_t get_ss_4() const { return ___ss_4; } inline int32_t* get_address_of_ss_4() { return &___ss_4; } inline void set_ss_4(int32_t value) { ___ss_4 = value; } inline static int32_t get_offset_of_ff_5() { return static_cast<int32_t>(offsetof(FormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223, ___ff_5)); } inline int32_t get_ff_5() const { return ___ff_5; } inline int32_t* get_address_of_ff_5() { return &___ff_5; } inline void set_ff_5(int32_t value) { ___ff_5 = value; } inline static int32_t get_offset_of_literals_6() { return static_cast<int32_t>(offsetof(FormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223, ___literals_6)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_literals_6() const { return ___literals_6; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_literals_6() { return &___literals_6; } inline void set_literals_6(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___literals_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___literals_6), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Globalization.TimeSpanFormat/FormatLiterals struct FormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223_marshaled_pinvoke { char* ___AppCompatLiteral_0; int32_t ___dd_1; int32_t ___hh_2; int32_t ___mm_3; int32_t ___ss_4; int32_t ___ff_5; char** ___literals_6; }; // Native definition for COM marshalling of System.Globalization.TimeSpanFormat/FormatLiterals struct FormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223_marshaled_com { Il2CppChar* ___AppCompatLiteral_0; int32_t ___dd_1; int32_t ___hh_2; int32_t ___mm_3; int32_t ___ss_4; int32_t ___ff_5; Il2CppChar** ___literals_6; }; // System.Guid struct Guid_t { public: // System.Int32 System.Guid::_a int32_t ____a_1; // System.Int16 System.Guid::_b int16_t ____b_2; // System.Int16 System.Guid::_c int16_t ____c_3; // System.Byte System.Guid::_d uint8_t ____d_4; // System.Byte System.Guid::_e uint8_t ____e_5; // System.Byte System.Guid::_f uint8_t ____f_6; // System.Byte System.Guid::_g uint8_t ____g_7; // System.Byte System.Guid::_h uint8_t ____h_8; // System.Byte System.Guid::_i uint8_t ____i_9; // System.Byte System.Guid::_j uint8_t ____j_10; // System.Byte System.Guid::_k uint8_t ____k_11; public: inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); } inline int32_t get__a_1() const { return ____a_1; } inline int32_t* get_address_of__a_1() { return &____a_1; } inline void set__a_1(int32_t value) { ____a_1 = value; } inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); } inline int16_t get__b_2() const { return ____b_2; } inline int16_t* get_address_of__b_2() { return &____b_2; } inline void set__b_2(int16_t value) { ____b_2 = value; } inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); } inline int16_t get__c_3() const { return ____c_3; } inline int16_t* get_address_of__c_3() { return &____c_3; } inline void set__c_3(int16_t value) { ____c_3 = value; } inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); } inline uint8_t get__d_4() const { return ____d_4; } inline uint8_t* get_address_of__d_4() { return &____d_4; } inline void set__d_4(uint8_t value) { ____d_4 = value; } inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); } inline uint8_t get__e_5() const { return ____e_5; } inline uint8_t* get_address_of__e_5() { return &____e_5; } inline void set__e_5(uint8_t value) { ____e_5 = value; } inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); } inline uint8_t get__f_6() const { return ____f_6; } inline uint8_t* get_address_of__f_6() { return &____f_6; } inline void set__f_6(uint8_t value) { ____f_6 = value; } inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); } inline uint8_t get__g_7() const { return ____g_7; } inline uint8_t* get_address_of__g_7() { return &____g_7; } inline void set__g_7(uint8_t value) { ____g_7 = value; } inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); } inline uint8_t get__h_8() const { return ____h_8; } inline uint8_t* get_address_of__h_8() { return &____h_8; } inline void set__h_8(uint8_t value) { ____h_8 = value; } inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); } inline uint8_t get__i_9() const { return ____i_9; } inline uint8_t* get_address_of__i_9() { return &____i_9; } inline void set__i_9(uint8_t value) { ____i_9 = value; } inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); } inline uint8_t get__j_10() const { return ____j_10; } inline uint8_t* get_address_of__j_10() { return &____j_10; } inline void set__j_10(uint8_t value) { ____j_10 = value; } inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); } inline uint8_t get__k_11() const { return ____k_11; } inline uint8_t* get_address_of__k_11() { return &____k_11; } inline void set__k_11(uint8_t value) { ____k_11 = value; } }; struct Guid_t_StaticFields { public: // System.Guid System.Guid::Empty Guid_t ___Empty_0; // System.Object System.Guid::_rngAccess RuntimeObject * ____rngAccess_12; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); } inline Guid_t get_Empty_0() const { return ___Empty_0; } inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(Guid_t value) { ___Empty_0 = value; } inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); } inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; } inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; } inline void set__rngAccess_12(RuntimeObject * value) { ____rngAccess_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value); } inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; } inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value) { ____rng_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value); } }; // System.Int16 struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; // System.Int32 struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.Nullable`1<System.Boolean> struct Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 { public: // T System.Nullable`1::value bool ___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_t9E6A67BECE376F0623B5C857F5674A0311C41793, ___value_0)); } inline bool get_value_0() const { return ___value_0; } inline bool* get_address_of_value_0() { return &___value_0; } inline void set_value_0(bool value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793, ___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; } }; // System.Nullable`1<System.Int32> struct Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB { 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_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, ___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_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, ___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; } }; // System.ParameterizedStrings_FormatParam struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 { public: // System.Int32 System.ParameterizedStrings_FormatParam::_int32 int32_t ____int32_0; // System.String System.ParameterizedStrings_FormatParam::_string String_t* ____string_1; public: inline static int32_t get_offset_of__int32_0() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____int32_0)); } inline int32_t get__int32_0() const { return ____int32_0; } inline int32_t* get_address_of__int32_0() { return &____int32_0; } inline void set__int32_0(int32_t value) { ____int32_0 = value; } inline static int32_t get_offset_of__string_1() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____string_1)); } inline String_t* get__string_1() const { return ____string_1; } inline String_t** get_address_of__string_1() { return &____string_1; } inline void set__string_1(String_t* value) { ____string_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____string_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.ParameterizedStrings/FormatParam struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_pinvoke { int32_t ____int32_0; char* ____string_1; }; // Native definition for COM marshalling of System.ParameterizedStrings/FormatParam struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_com { int32_t ____int32_0; Il2CppChar* ____string_1; }; // System.ParamsArray struct ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 { public: // System.Object System.ParamsArray::arg0 RuntimeObject * ___arg0_3; // System.Object System.ParamsArray::arg1 RuntimeObject * ___arg1_4; // System.Object System.ParamsArray::arg2 RuntimeObject * ___arg2_5; // System.Object[] System.ParamsArray::args ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args_6; public: inline static int32_t get_offset_of_arg0_3() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023, ___arg0_3)); } inline RuntimeObject * get_arg0_3() const { return ___arg0_3; } inline RuntimeObject ** get_address_of_arg0_3() { return &___arg0_3; } inline void set_arg0_3(RuntimeObject * value) { ___arg0_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___arg0_3), (void*)value); } inline static int32_t get_offset_of_arg1_4() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023, ___arg1_4)); } inline RuntimeObject * get_arg1_4() const { return ___arg1_4; } inline RuntimeObject ** get_address_of_arg1_4() { return &___arg1_4; } inline void set_arg1_4(RuntimeObject * value) { ___arg1_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___arg1_4), (void*)value); } inline static int32_t get_offset_of_arg2_5() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023, ___arg2_5)); } inline RuntimeObject * get_arg2_5() const { return ___arg2_5; } inline RuntimeObject ** get_address_of_arg2_5() { return &___arg2_5; } inline void set_arg2_5(RuntimeObject * value) { ___arg2_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___arg2_5), (void*)value); } inline static int32_t get_offset_of_args_6() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023, ___args_6)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_args_6() const { return ___args_6; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_args_6() { return &___args_6; } inline void set_args_6(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___args_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___args_6), (void*)value); } }; struct ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023_StaticFields { public: // System.Object[] System.ParamsArray::oneArgArray ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___oneArgArray_0; // System.Object[] System.ParamsArray::twoArgArray ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___twoArgArray_1; // System.Object[] System.ParamsArray::threeArgArray ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___threeArgArray_2; public: inline static int32_t get_offset_of_oneArgArray_0() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023_StaticFields, ___oneArgArray_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_oneArgArray_0() const { return ___oneArgArray_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_oneArgArray_0() { return &___oneArgArray_0; } inline void set_oneArgArray_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___oneArgArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___oneArgArray_0), (void*)value); } inline static int32_t get_offset_of_twoArgArray_1() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023_StaticFields, ___twoArgArray_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_twoArgArray_1() const { return ___twoArgArray_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_twoArgArray_1() { return &___twoArgArray_1; } inline void set_twoArgArray_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___twoArgArray_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___twoArgArray_1), (void*)value); } inline static int32_t get_offset_of_threeArgArray_2() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023_StaticFields, ___threeArgArray_2)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_threeArgArray_2() const { return ___threeArgArray_2; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_threeArgArray_2() { return &___threeArgArray_2; } inline void set_threeArgArray_2(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___threeArgArray_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___threeArgArray_2), (void*)value); } }; // Native definition for P/Invoke marshalling of System.ParamsArray struct ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023_marshaled_pinvoke { Il2CppIUnknown* ___arg0_3; Il2CppIUnknown* ___arg1_4; Il2CppIUnknown* ___arg2_5; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args_6; }; // Native definition for COM marshalling of System.ParamsArray struct ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023_marshaled_com { Il2CppIUnknown* ___arg0_3; Il2CppIUnknown* ___arg1_4; Il2CppIUnknown* ___arg2_5; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args_6; }; // System.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 { public: // System.Type System.Reflection.CustomAttributeTypedArgument::argumentType Type_t * ___argumentType_0; // System.Object System.Reflection.CustomAttributeTypedArgument::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_argumentType_0() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, ___argumentType_0)); } inline Type_t * get_argumentType_0() const { return ___argumentType_0; } inline Type_t ** get_address_of_argumentType_0() { return &___argumentType_0; } inline void set_argumentType_0(Type_t * value) { ___argumentType_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___argumentType_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_pinvoke { Type_t * ___argumentType_0; Il2CppIUnknown* ___value_1; }; // Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_com { Type_t * ___argumentType_0; Il2CppIUnknown* ___value_1; }; // System.Reflection.ParameterModifier struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E { public: // System.Boolean[] System.Reflection.ParameterModifier::_byRef BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____byRef_0; public: inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, ____byRef_0)); } inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__byRef_0() const { return ____byRef_0; } inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__byRef_0() { return &____byRef_0; } inline void set__byRef_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value) { ____byRef_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_pinvoke { int32_t* ____byRef_0; }; // Native definition for COM marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_com { int32_t* ____byRef_0; }; // System.Resources.ResourceLocator struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C { public: // System.Object System.Resources.ResourceLocator::_value RuntimeObject * ____value_0; // System.Int32 System.Resources.ResourceLocator::_dataPos int32_t ____dataPos_1; public: inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____value_0)); } inline RuntimeObject * get__value_0() const { return ____value_0; } inline RuntimeObject ** get_address_of__value_0() { return &____value_0; } inline void set__value_0(RuntimeObject * value) { ____value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_0), (void*)value); } inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____dataPos_1)); } inline int32_t get__dataPos_1() const { return ____dataPos_1; } inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; } inline void set__dataPos_1(int32_t value) { ____dataPos_1 = value; } }; // Native definition for P/Invoke marshalling of System.Resources.ResourceLocator struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_pinvoke { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // Native definition for COM marshalling of System.Resources.ResourceLocator struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_com { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // System.Runtime.CompilerServices.AsyncMethodBuilderCore struct AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 { public: // System.Runtime.CompilerServices.IAsyncStateMachine System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_stateMachine RuntimeObject* ___m_stateMachine_0; // System.Action System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_defaultContextAction Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___m_defaultContextAction_1; public: inline static int32_t get_offset_of_m_stateMachine_0() { return static_cast<int32_t>(offsetof(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01, ___m_stateMachine_0)); } inline RuntimeObject* get_m_stateMachine_0() const { return ___m_stateMachine_0; } inline RuntimeObject** get_address_of_m_stateMachine_0() { return &___m_stateMachine_0; } inline void set_m_stateMachine_0(RuntimeObject* value) { ___m_stateMachine_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_stateMachine_0), (void*)value); } inline static int32_t get_offset_of_m_defaultContextAction_1() { return static_cast<int32_t>(offsetof(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01, ___m_defaultContextAction_1)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_m_defaultContextAction_1() const { return ___m_defaultContextAction_1; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_m_defaultContextAction_1() { return &___m_defaultContextAction_1; } inline void set_m_defaultContextAction_1(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___m_defaultContextAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_defaultContextAction_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore struct AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01_marshaled_pinvoke { RuntimeObject* ___m_stateMachine_0; Il2CppMethodPointer ___m_defaultContextAction_1; }; // Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore struct AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01_marshaled_com { RuntimeObject* ___m_stateMachine_0; Il2CppMethodPointer ___m_defaultContextAction_1; }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Boolean> struct ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter::m_task Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___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_t785B9A8BC038067B15BF7BC1343F623CB02FD065, ___m_task_0)); } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * 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_t785B9A8BC038067B15BF7BC1343F623CB02FD065, ___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_t18D0589F789FFE82A30A223888FB7C5BED32C63E { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter::m_task Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___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_t18D0589F789FFE82A30A223888FB7C5BED32C63E, ___m_task_0)); } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * 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_t18D0589F789FFE82A30A223888FB7C5BED32C63E, ___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_tFB3C4197768C6CF02BE088F703AA6E46D703D46E { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter::m_task Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___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_tFB3C4197768C6CF02BE088F703AA6E46D703D46E, ___m_task_0)); } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * 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_tFB3C4197768C6CF02BE088F703AA6E46D703D46E, ___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_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter::m_task Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___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_t5A7BFB889EC19616C3271962663CCFD263CE8CA4, ___m_task_0)); } inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * 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_t5A7BFB889EC19616C3271962663CCFD263CE8CA4, ___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.Ephemeron struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA { public: // System.Object System.Runtime.CompilerServices.Ephemeron::key RuntimeObject * ___key_0; // System.Object System.Runtime.CompilerServices.Ephemeron::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_pinvoke { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; // Native definition for COM marshalling of System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_com { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean> struct TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090, ___m_task_0)); } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32> struct TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24, ___m_task_0)); } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.Object> struct TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977, ___m_task_0)); } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult> struct TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE, ___m_task_0)); } inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.InteropServices.GCHandle struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 { public: // System.Int32 System.Runtime.InteropServices.GCHandle::handle int32_t ___handle_0; public: inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3, ___handle_0)); } inline int32_t get_handle_0() const { return ___handle_0; } inline int32_t* get_address_of_handle_0() { return &___handle_0; } inline void set_handle_0(int32_t value) { ___handle_0 = value; } }; // System.Runtime.Remoting.Channels.CrossAppDomainSink_ProcessMessageRes struct ProcessMessageRes_t17F028A89C1685A6BE96D7B59DD490E4CB859957 { public: // System.Byte[] System.Runtime.Remoting.Channels.CrossAppDomainSink_ProcessMessageRes::arrResponse ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___arrResponse_0; // System.Runtime.Remoting.Messaging.CADMethodReturnMessage System.Runtime.Remoting.Channels.CrossAppDomainSink_ProcessMessageRes::cadMrm CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * ___cadMrm_1; public: inline static int32_t get_offset_of_arrResponse_0() { return static_cast<int32_t>(offsetof(ProcessMessageRes_t17F028A89C1685A6BE96D7B59DD490E4CB859957, ___arrResponse_0)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_arrResponse_0() const { return ___arrResponse_0; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_arrResponse_0() { return &___arrResponse_0; } inline void set_arrResponse_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___arrResponse_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___arrResponse_0), (void*)value); } inline static int32_t get_offset_of_cadMrm_1() { return static_cast<int32_t>(offsetof(ProcessMessageRes_t17F028A89C1685A6BE96D7B59DD490E4CB859957, ___cadMrm_1)); } inline CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * get_cadMrm_1() const { return ___cadMrm_1; } inline CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C ** get_address_of_cadMrm_1() { return &___cadMrm_1; } inline void set_cadMrm_1(CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * value) { ___cadMrm_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___cadMrm_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Runtime.Remoting.Channels.CrossAppDomainSink/ProcessMessageRes struct ProcessMessageRes_t17F028A89C1685A6BE96D7B59DD490E4CB859957_marshaled_pinvoke { uint8_t* ___arrResponse_0; CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * ___cadMrm_1; }; // Native definition for COM marshalling of System.Runtime.Remoting.Channels.CrossAppDomainSink/ProcessMessageRes struct ProcessMessageRes_t17F028A89C1685A6BE96D7B59DD490E4CB859957_marshaled_com { uint8_t* ___arrResponse_0; CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * ___cadMrm_1; }; // System.Runtime.Remoting.Messaging.LogicalCallContext_Reader struct Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 { public: // System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.LogicalCallContext_Reader::m_ctx LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___m_ctx_0; public: inline static int32_t get_offset_of_m_ctx_0() { return static_cast<int32_t>(offsetof(Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6, ___m_ctx_0)); } inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * get_m_ctx_0() const { return ___m_ctx_0; } inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E ** get_address_of_m_ctx_0() { return &___m_ctx_0; } inline void set_m_ctx_0(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * value) { ___m_ctx_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ctx_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Runtime.Remoting.Messaging.LogicalCallContext/Reader struct Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshaled_pinvoke { LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___m_ctx_0; }; // Native definition for COM marshalling of System.Runtime.Remoting.Messaging.LogicalCallContext/Reader struct Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshaled_com { LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___m_ctx_0; }; // System.Runtime.Serialization.SerializationEntry struct SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA { public: // System.Type System.Runtime.Serialization.SerializationEntry::m_type Type_t * ___m_type_0; // System.Object System.Runtime.Serialization.SerializationEntry::m_value RuntimeObject * ___m_value_1; // System.String System.Runtime.Serialization.SerializationEntry::m_name String_t* ___m_name_2; public: inline static int32_t get_offset_of_m_type_0() { return static_cast<int32_t>(offsetof(SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA, ___m_type_0)); } inline Type_t * get_m_type_0() const { return ___m_type_0; } inline Type_t ** get_address_of_m_type_0() { return &___m_type_0; } inline void set_m_type_0(Type_t * value) { ___m_type_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_type_0), (void*)value); } inline static int32_t get_offset_of_m_value_1() { return static_cast<int32_t>(offsetof(SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA, ___m_value_1)); } inline RuntimeObject * get_m_value_1() const { return ___m_value_1; } inline RuntimeObject ** get_address_of_m_value_1() { return &___m_value_1; } inline void set_m_value_1(RuntimeObject * value) { ___m_value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_value_1), (void*)value); } inline static int32_t get_offset_of_m_name_2() { return static_cast<int32_t>(offsetof(SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA, ___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); } }; // Native definition for P/Invoke marshalling of System.Runtime.Serialization.SerializationEntry struct SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA_marshaled_pinvoke { Type_t * ___m_type_0; Il2CppIUnknown* ___m_value_1; char* ___m_name_2; }; // Native definition for COM marshalling of System.Runtime.Serialization.SerializationEntry struct SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA_marshaled_com { Type_t * ___m_type_0; Il2CppIUnknown* ___m_value_1; Il2CppChar* ___m_name_2; }; // System.RuntimeType_ListBuilder`1<System.Reflection.ConstructorInfo> struct ListBuilder_1_tC910DF600888C2B5164672D53A552842C6B0A31B { public: // T[] System.RuntimeType_ListBuilder`1::_items ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* ____items_0; // T System.RuntimeType_ListBuilder`1::_item ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ____item_1; // System.Int32 System.RuntimeType_ListBuilder`1::_count int32_t ____count_2; // System.Int32 System.RuntimeType_ListBuilder`1::_capacity int32_t ____capacity_3; public: inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ListBuilder_1_tC910DF600888C2B5164672D53A552842C6B0A31B, ____items_0)); } inline ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* get__items_0() const { return ____items_0; } inline ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E** get_address_of__items_0() { return &____items_0; } inline void set__items_0(ConstructorInfoU5BU5D_t111EE7D53C51A47FE69FC3398DE007F7E100593E* value) { ____items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value); } inline static int32_t get_offset_of__item_1() { return static_cast<int32_t>(offsetof(ListBuilder_1_tC910DF600888C2B5164672D53A552842C6B0A31B, ____item_1)); } inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * get__item_1() const { return ____item_1; } inline ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF ** get_address_of__item_1() { return &____item_1; } inline void set__item_1(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * value) { ____item_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____item_1), (void*)value); } inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ListBuilder_1_tC910DF600888C2B5164672D53A552842C6B0A31B, ____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__capacity_3() { return static_cast<int32_t>(offsetof(ListBuilder_1_tC910DF600888C2B5164672D53A552842C6B0A31B, ____capacity_3)); } inline int32_t get__capacity_3() const { return ____capacity_3; } inline int32_t* get_address_of__capacity_3() { return &____capacity_3; } inline void set__capacity_3(int32_t value) { ____capacity_3 = value; } }; // System.RuntimeType_ListBuilder`1<System.Reflection.EventInfo> struct ListBuilder_1_t7C73F3941A5FC9B73A3978FF42B31F47032EB5CC { public: // T[] System.RuntimeType_ListBuilder`1::_items EventInfoU5BU5D_t507AD5C5E08DCF89B8FCAC6A8897F3152D03433C* ____items_0; // T System.RuntimeType_ListBuilder`1::_item EventInfo_t * ____item_1; // System.Int32 System.RuntimeType_ListBuilder`1::_count int32_t ____count_2; // System.Int32 System.RuntimeType_ListBuilder`1::_capacity int32_t ____capacity_3; public: inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ListBuilder_1_t7C73F3941A5FC9B73A3978FF42B31F47032EB5CC, ____items_0)); } inline EventInfoU5BU5D_t507AD5C5E08DCF89B8FCAC6A8897F3152D03433C* get__items_0() const { return ____items_0; } inline EventInfoU5BU5D_t507AD5C5E08DCF89B8FCAC6A8897F3152D03433C** get_address_of__items_0() { return &____items_0; } inline void set__items_0(EventInfoU5BU5D_t507AD5C5E08DCF89B8FCAC6A8897F3152D03433C* value) { ____items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value); } inline static int32_t get_offset_of__item_1() { return static_cast<int32_t>(offsetof(ListBuilder_1_t7C73F3941A5FC9B73A3978FF42B31F47032EB5CC, ____item_1)); } inline EventInfo_t * get__item_1() const { return ____item_1; } inline EventInfo_t ** get_address_of__item_1() { return &____item_1; } inline void set__item_1(EventInfo_t * value) { ____item_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____item_1), (void*)value); } inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ListBuilder_1_t7C73F3941A5FC9B73A3978FF42B31F47032EB5CC, ____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__capacity_3() { return static_cast<int32_t>(offsetof(ListBuilder_1_t7C73F3941A5FC9B73A3978FF42B31F47032EB5CC, ____capacity_3)); } inline int32_t get__capacity_3() const { return ____capacity_3; } inline int32_t* get_address_of__capacity_3() { return &____capacity_3; } inline void set__capacity_3(int32_t value) { ____capacity_3 = value; } }; // System.RuntimeType_ListBuilder`1<System.Reflection.FieldInfo> struct ListBuilder_1_t9F805B8E5D22215EA08ED24F79F2783EB52A7B72 { public: // T[] System.RuntimeType_ListBuilder`1::_items FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* ____items_0; // T System.RuntimeType_ListBuilder`1::_item FieldInfo_t * ____item_1; // System.Int32 System.RuntimeType_ListBuilder`1::_count int32_t ____count_2; // System.Int32 System.RuntimeType_ListBuilder`1::_capacity int32_t ____capacity_3; public: inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ListBuilder_1_t9F805B8E5D22215EA08ED24F79F2783EB52A7B72, ____items_0)); } inline FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* get__items_0() const { return ____items_0; } inline FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE** get_address_of__items_0() { return &____items_0; } inline void set__items_0(FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* value) { ____items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value); } inline static int32_t get_offset_of__item_1() { return static_cast<int32_t>(offsetof(ListBuilder_1_t9F805B8E5D22215EA08ED24F79F2783EB52A7B72, ____item_1)); } inline FieldInfo_t * get__item_1() const { return ____item_1; } inline FieldInfo_t ** get_address_of__item_1() { return &____item_1; } inline void set__item_1(FieldInfo_t * value) { ____item_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____item_1), (void*)value); } inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ListBuilder_1_t9F805B8E5D22215EA08ED24F79F2783EB52A7B72, ____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__capacity_3() { return static_cast<int32_t>(offsetof(ListBuilder_1_t9F805B8E5D22215EA08ED24F79F2783EB52A7B72, ____capacity_3)); } inline int32_t get__capacity_3() const { return ____capacity_3; } inline int32_t* get_address_of__capacity_3() { return &____capacity_3; } inline void set__capacity_3(int32_t value) { ____capacity_3 = value; } }; // System.RuntimeType_ListBuilder`1<System.Reflection.MethodInfo> struct ListBuilder_1_t5D6EE6CE7ECAEF873A9512FDCDB1650477082C62 { public: // T[] System.RuntimeType_ListBuilder`1::_items MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* ____items_0; // T System.RuntimeType_ListBuilder`1::_item MethodInfo_t * ____item_1; // System.Int32 System.RuntimeType_ListBuilder`1::_count int32_t ____count_2; // System.Int32 System.RuntimeType_ListBuilder`1::_capacity int32_t ____capacity_3; public: inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ListBuilder_1_t5D6EE6CE7ECAEF873A9512FDCDB1650477082C62, ____items_0)); } inline MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* get__items_0() const { return ____items_0; } inline MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B** get_address_of__items_0() { return &____items_0; } inline void set__items_0(MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* value) { ____items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value); } inline static int32_t get_offset_of__item_1() { return static_cast<int32_t>(offsetof(ListBuilder_1_t5D6EE6CE7ECAEF873A9512FDCDB1650477082C62, ____item_1)); } inline MethodInfo_t * get__item_1() const { return ____item_1; } inline MethodInfo_t ** get_address_of__item_1() { return &____item_1; } inline void set__item_1(MethodInfo_t * value) { ____item_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____item_1), (void*)value); } inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ListBuilder_1_t5D6EE6CE7ECAEF873A9512FDCDB1650477082C62, ____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__capacity_3() { return static_cast<int32_t>(offsetof(ListBuilder_1_t5D6EE6CE7ECAEF873A9512FDCDB1650477082C62, ____capacity_3)); } inline int32_t get__capacity_3() const { return ____capacity_3; } inline int32_t* get_address_of__capacity_3() { return &____capacity_3; } inline void set__capacity_3(int32_t value) { ____capacity_3 = value; } }; // System.RuntimeType_ListBuilder`1<System.Reflection.PropertyInfo> struct ListBuilder_1_t306530737CDAC7F801197CE81CE3E931E32B5B74 { public: // T[] System.RuntimeType_ListBuilder`1::_items PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* ____items_0; // T System.RuntimeType_ListBuilder`1::_item PropertyInfo_t * ____item_1; // System.Int32 System.RuntimeType_ListBuilder`1::_count int32_t ____count_2; // System.Int32 System.RuntimeType_ListBuilder`1::_capacity int32_t ____capacity_3; public: inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ListBuilder_1_t306530737CDAC7F801197CE81CE3E931E32B5B74, ____items_0)); } inline PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* get__items_0() const { return ____items_0; } inline PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E** get_address_of__items_0() { return &____items_0; } inline void set__items_0(PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* value) { ____items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value); } inline static int32_t get_offset_of__item_1() { return static_cast<int32_t>(offsetof(ListBuilder_1_t306530737CDAC7F801197CE81CE3E931E32B5B74, ____item_1)); } inline PropertyInfo_t * get__item_1() const { return ____item_1; } inline PropertyInfo_t ** get_address_of__item_1() { return &____item_1; } inline void set__item_1(PropertyInfo_t * value) { ____item_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____item_1), (void*)value); } inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ListBuilder_1_t306530737CDAC7F801197CE81CE3E931E32B5B74, ____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__capacity_3() { return static_cast<int32_t>(offsetof(ListBuilder_1_t306530737CDAC7F801197CE81CE3E931E32B5B74, ____capacity_3)); } inline int32_t get__capacity_3() const { return ____capacity_3; } inline int32_t* get_address_of__capacity_3() { return &____capacity_3; } inline void set__capacity_3(int32_t value) { ____capacity_3 = value; } }; // System.RuntimeType_ListBuilder`1<System.Type> struct ListBuilder_1_tD5DE73E8827791DC2F4C293F9A405D8CC32E13FB { public: // T[] System.RuntimeType_ListBuilder`1::_items TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____items_0; // T System.RuntimeType_ListBuilder`1::_item Type_t * ____item_1; // System.Int32 System.RuntimeType_ListBuilder`1::_count int32_t ____count_2; // System.Int32 System.RuntimeType_ListBuilder`1::_capacity int32_t ____capacity_3; public: inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ListBuilder_1_tD5DE73E8827791DC2F4C293F9A405D8CC32E13FB, ____items_0)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__items_0() const { return ____items_0; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__items_0() { return &____items_0; } inline void set__items_0(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ____items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value); } inline static int32_t get_offset_of__item_1() { return static_cast<int32_t>(offsetof(ListBuilder_1_tD5DE73E8827791DC2F4C293F9A405D8CC32E13FB, ____item_1)); } inline Type_t * get__item_1() const { return ____item_1; } inline Type_t ** get_address_of__item_1() { return &____item_1; } inline void set__item_1(Type_t * value) { ____item_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____item_1), (void*)value); } inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ListBuilder_1_tD5DE73E8827791DC2F4C293F9A405D8CC32E13FB, ____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__capacity_3() { return static_cast<int32_t>(offsetof(ListBuilder_1_tD5DE73E8827791DC2F4C293F9A405D8CC32E13FB, ____capacity_3)); } inline int32_t get__capacity_3() const { return ____capacity_3; } inline int32_t* get_address_of__capacity_3() { return &____capacity_3; } inline void set__capacity_3(int32_t value) { ____capacity_3 = value; } }; // System.SByte struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF { public: // System.SByte System.SByte::m_value int8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); } inline int8_t get_m_value_0() const { return ___m_value_0; } inline int8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int8_t value) { ___m_value_0 = value; } }; // System.Single struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B { public: // System.Char System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_chMin Il2CppChar ____chMin_0; // System.Char System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_chMax Il2CppChar ____chMax_1; // System.Int32 System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_lcOp int32_t ____lcOp_2; // System.Int32 System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_data int32_t ____data_3; public: inline static int32_t get_offset_of__chMin_0() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____chMin_0)); } inline Il2CppChar get__chMin_0() const { return ____chMin_0; } inline Il2CppChar* get_address_of__chMin_0() { return &____chMin_0; } inline void set__chMin_0(Il2CppChar value) { ____chMin_0 = value; } inline static int32_t get_offset_of__chMax_1() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____chMax_1)); } inline Il2CppChar get__chMax_1() const { return ____chMax_1; } inline Il2CppChar* get_address_of__chMax_1() { return &____chMax_1; } inline void set__chMax_1(Il2CppChar value) { ____chMax_1 = value; } inline static int32_t get_offset_of__lcOp_2() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____lcOp_2)); } inline int32_t get__lcOp_2() const { return ____lcOp_2; } inline int32_t* get_address_of__lcOp_2() { return &____lcOp_2; } inline void set__lcOp_2(int32_t value) { ____lcOp_2 = value; } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____data_3)); } inline int32_t get__data_3() const { return ____data_3; } inline int32_t* get_address_of__data_3() { return &____data_3; } inline void set__data_3(int32_t value) { ____data_3 = value; } }; // Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_marshaled_pinvoke { uint8_t ____chMin_0; uint8_t ____chMax_1; int32_t ____lcOp_2; int32_t ____data_3; }; // Native definition for COM marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_marshaled_com { uint8_t ____chMin_0; uint8_t ____chMax_1; int32_t ____lcOp_2; int32_t ____data_3; }; // System.Threading.AsyncLocalValueChangedArgs`1<System.Object> struct AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D { public: // T System.Threading.AsyncLocalValueChangedArgs`1::<PreviousValue>k__BackingField RuntimeObject * ___U3CPreviousValueU3Ek__BackingField_0; // T System.Threading.AsyncLocalValueChangedArgs`1::<CurrentValue>k__BackingField RuntimeObject * ___U3CCurrentValueU3Ek__BackingField_1; // System.Boolean System.Threading.AsyncLocalValueChangedArgs`1::<ThreadContextChanged>k__BackingField bool ___U3CThreadContextChangedU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CPreviousValueU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D, ___U3CPreviousValueU3Ek__BackingField_0)); } inline RuntimeObject * get_U3CPreviousValueU3Ek__BackingField_0() const { return ___U3CPreviousValueU3Ek__BackingField_0; } inline RuntimeObject ** get_address_of_U3CPreviousValueU3Ek__BackingField_0() { return &___U3CPreviousValueU3Ek__BackingField_0; } inline void set_U3CPreviousValueU3Ek__BackingField_0(RuntimeObject * value) { ___U3CPreviousValueU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CPreviousValueU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CCurrentValueU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D, ___U3CCurrentValueU3Ek__BackingField_1)); } inline RuntimeObject * get_U3CCurrentValueU3Ek__BackingField_1() const { return ___U3CCurrentValueU3Ek__BackingField_1; } inline RuntimeObject ** get_address_of_U3CCurrentValueU3Ek__BackingField_1() { return &___U3CCurrentValueU3Ek__BackingField_1; } inline void set_U3CCurrentValueU3Ek__BackingField_1(RuntimeObject * value) { ___U3CCurrentValueU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCurrentValueU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CThreadContextChangedU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D, ___U3CThreadContextChangedU3Ek__BackingField_2)); } inline bool get_U3CThreadContextChangedU3Ek__BackingField_2() const { return ___U3CThreadContextChangedU3Ek__BackingField_2; } inline bool* get_address_of_U3CThreadContextChangedU3Ek__BackingField_2() { return &___U3CThreadContextChangedU3Ek__BackingField_2; } inline void set_U3CThreadContextChangedU3Ek__BackingField_2(bool value) { ___U3CThreadContextChangedU3Ek__BackingField_2 = value; } }; // System.Threading.CancellationCallbackCoreWorkArguments struct CancellationCallbackCoreWorkArguments_t6290788CA17D8028FC4BC98AE2EDD437396675DB { public: // System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationCallbackCoreWorkArguments::m_currArrayFragment SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * ___m_currArrayFragment_0; // System.Int32 System.Threading.CancellationCallbackCoreWorkArguments::m_currArrayIndex int32_t ___m_currArrayIndex_1; public: inline static int32_t get_offset_of_m_currArrayFragment_0() { return static_cast<int32_t>(offsetof(CancellationCallbackCoreWorkArguments_t6290788CA17D8028FC4BC98AE2EDD437396675DB, ___m_currArrayFragment_0)); } inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * get_m_currArrayFragment_0() const { return ___m_currArrayFragment_0; } inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 ** get_address_of_m_currArrayFragment_0() { return &___m_currArrayFragment_0; } inline void set_m_currArrayFragment_0(SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * value) { ___m_currArrayFragment_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_currArrayFragment_0), (void*)value); } inline static int32_t get_offset_of_m_currArrayIndex_1() { return static_cast<int32_t>(offsetof(CancellationCallbackCoreWorkArguments_t6290788CA17D8028FC4BC98AE2EDD437396675DB, ___m_currArrayIndex_1)); } inline int32_t get_m_currArrayIndex_1() const { return ___m_currArrayIndex_1; } inline int32_t* get_address_of_m_currArrayIndex_1() { return &___m_currArrayIndex_1; } inline void set_m_currArrayIndex_1(int32_t value) { ___m_currArrayIndex_1 = value; } }; // Native definition for P/Invoke marshalling of System.Threading.CancellationCallbackCoreWorkArguments struct CancellationCallbackCoreWorkArguments_t6290788CA17D8028FC4BC98AE2EDD437396675DB_marshaled_pinvoke { SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * ___m_currArrayFragment_0; int32_t ___m_currArrayIndex_1; }; // Native definition for COM marshalling of System.Threading.CancellationCallbackCoreWorkArguments struct CancellationCallbackCoreWorkArguments_t6290788CA17D8028FC4BC98AE2EDD437396675DB_marshaled_com { SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * ___m_currArrayFragment_0; int32_t ___m_currArrayIndex_1; }; // System.Threading.CancellationToken struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB { public: // System.Threading.CancellationTokenSource System.Threading.CancellationToken::m_source CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0; public: inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, ___m_source_0)); } inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get_m_source_0() const { return ___m_source_0; } inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of_m_source_0() { return &___m_source_0; } inline void set_m_source_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value) { ___m_source_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value); } }; struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_StaticFields { public: // System.Action`1<System.Object> System.Threading.CancellationToken::s_ActionToActionObjShunt Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_ActionToActionObjShunt_1; public: inline static int32_t get_offset_of_s_ActionToActionObjShunt_1() { return static_cast<int32_t>(offsetof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_StaticFields, ___s_ActionToActionObjShunt_1)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_ActionToActionObjShunt_1() const { return ___s_ActionToActionObjShunt_1; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_ActionToActionObjShunt_1() { return &___s_ActionToActionObjShunt_1; } inline void set_s_ActionToActionObjShunt_1(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ___s_ActionToActionObjShunt_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ActionToActionObjShunt_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Threading.CancellationToken struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_marshaled_pinvoke { CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0; }; // Native definition for COM marshalling of System.Threading.CancellationToken struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_marshaled_com { CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0; }; // System.Threading.ExecutionContext_Reader struct Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B { public: // System.Threading.ExecutionContext System.Threading.ExecutionContext_Reader::m_ec ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_ec_0; public: inline static int32_t get_offset_of_m_ec_0() { return static_cast<int32_t>(offsetof(Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B, ___m_ec_0)); } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_m_ec_0() const { return ___m_ec_0; } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_m_ec_0() { return &___m_ec_0; } inline void set_m_ec_0(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value) { ___m_ec_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ec_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Threading.ExecutionContext/Reader struct Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B_marshaled_pinvoke { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_ec_0; }; // Native definition for COM marshalling of System.Threading.ExecutionContext/Reader struct Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B_marshaled_com { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_ec_0; }; // System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object> struct SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B { public: // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * ___m_source_0; // System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1::m_index int32_t ___m_index_1; public: inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B, ___m_source_0)); } inline SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * get_m_source_0() const { return ___m_source_0; } inline SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 ** get_address_of_m_source_0() { return &___m_source_0; } inline void set_m_source_0(SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * value) { ___m_source_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value); } inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B, ___m_index_1)); } inline int32_t get_m_index_1() const { return ___m_index_1; } inline int32_t* get_address_of_m_index_1() { return &___m_index_1; } inline void set_m_index_1(int32_t value) { ___m_index_1 = value; } }; // System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> struct SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE { public: // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * ___m_source_0; // System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1::m_index int32_t ___m_index_1; public: inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE, ___m_source_0)); } inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * get_m_source_0() const { return ___m_source_0; } inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 ** get_address_of_m_source_0() { return &___m_source_0; } inline void set_m_source_0(SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * value) { ___m_source_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value); } inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE, ___m_index_1)); } inline int32_t get_m_index_1() const { return ___m_index_1; } inline int32_t* get_address_of_m_index_1() { return &___m_index_1; } inline void set_m_index_1(int32_t value) { ___m_index_1 = value; } }; // System.Threading.Tasks.VoidTaskResult struct VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 { public: union { struct { }; uint8_t VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40__padding[1]; }; public: }; // System.TimeZoneInfo_SYSTEMTIME struct SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 { public: // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wYear uint16_t ___wYear_0; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wMonth uint16_t ___wMonth_1; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wDayOfWeek uint16_t ___wDayOfWeek_2; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wDay uint16_t ___wDay_3; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wHour uint16_t ___wHour_4; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wMinute uint16_t ___wMinute_5; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wSecond uint16_t ___wSecond_6; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wMilliseconds uint16_t ___wMilliseconds_7; public: inline static int32_t get_offset_of_wYear_0() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wYear_0)); } inline uint16_t get_wYear_0() const { return ___wYear_0; } inline uint16_t* get_address_of_wYear_0() { return &___wYear_0; } inline void set_wYear_0(uint16_t value) { ___wYear_0 = value; } inline static int32_t get_offset_of_wMonth_1() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wMonth_1)); } inline uint16_t get_wMonth_1() const { return ___wMonth_1; } inline uint16_t* get_address_of_wMonth_1() { return &___wMonth_1; } inline void set_wMonth_1(uint16_t value) { ___wMonth_1 = value; } inline static int32_t get_offset_of_wDayOfWeek_2() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wDayOfWeek_2)); } inline uint16_t get_wDayOfWeek_2() const { return ___wDayOfWeek_2; } inline uint16_t* get_address_of_wDayOfWeek_2() { return &___wDayOfWeek_2; } inline void set_wDayOfWeek_2(uint16_t value) { ___wDayOfWeek_2 = value; } inline static int32_t get_offset_of_wDay_3() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wDay_3)); } inline uint16_t get_wDay_3() const { return ___wDay_3; } inline uint16_t* get_address_of_wDay_3() { return &___wDay_3; } inline void set_wDay_3(uint16_t value) { ___wDay_3 = value; } inline static int32_t get_offset_of_wHour_4() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wHour_4)); } inline uint16_t get_wHour_4() const { return ___wHour_4; } inline uint16_t* get_address_of_wHour_4() { return &___wHour_4; } inline void set_wHour_4(uint16_t value) { ___wHour_4 = value; } inline static int32_t get_offset_of_wMinute_5() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wMinute_5)); } inline uint16_t get_wMinute_5() const { return ___wMinute_5; } inline uint16_t* get_address_of_wMinute_5() { return &___wMinute_5; } inline void set_wMinute_5(uint16_t value) { ___wMinute_5 = value; } inline static int32_t get_offset_of_wSecond_6() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wSecond_6)); } inline uint16_t get_wSecond_6() const { return ___wSecond_6; } inline uint16_t* get_address_of_wSecond_6() { return &___wSecond_6; } inline void set_wSecond_6(uint16_t value) { ___wSecond_6 = value; } inline static int32_t get_offset_of_wMilliseconds_7() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wMilliseconds_7)); } inline uint16_t get_wMilliseconds_7() const { return ___wMilliseconds_7; } inline uint16_t* get_address_of_wMilliseconds_7() { return &___wMilliseconds_7; } inline void set_wMilliseconds_7(uint16_t value) { ___wMilliseconds_7 = value; } }; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017 { public: union { struct { }; uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1]; }; public: }; // UnityEngine.AnimatorStateInfo struct AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 { public: // System.Int32 UnityEngine.AnimatorStateInfo::m_Name int32_t ___m_Name_0; // System.Int32 UnityEngine.AnimatorStateInfo::m_Path int32_t ___m_Path_1; // System.Int32 UnityEngine.AnimatorStateInfo::m_FullPath int32_t ___m_FullPath_2; // System.Single UnityEngine.AnimatorStateInfo::m_NormalizedTime float ___m_NormalizedTime_3; // System.Single UnityEngine.AnimatorStateInfo::m_Length float ___m_Length_4; // System.Single UnityEngine.AnimatorStateInfo::m_Speed float ___m_Speed_5; // System.Single UnityEngine.AnimatorStateInfo::m_SpeedMultiplier float ___m_SpeedMultiplier_6; // System.Int32 UnityEngine.AnimatorStateInfo::m_Tag int32_t ___m_Tag_7; // System.Int32 UnityEngine.AnimatorStateInfo::m_Loop int32_t ___m_Loop_8; public: inline static int32_t get_offset_of_m_Name_0() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_Name_0)); } inline int32_t get_m_Name_0() const { return ___m_Name_0; } inline int32_t* get_address_of_m_Name_0() { return &___m_Name_0; } inline void set_m_Name_0(int32_t value) { ___m_Name_0 = value; } inline static int32_t get_offset_of_m_Path_1() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_Path_1)); } inline int32_t get_m_Path_1() const { return ___m_Path_1; } inline int32_t* get_address_of_m_Path_1() { return &___m_Path_1; } inline void set_m_Path_1(int32_t value) { ___m_Path_1 = value; } inline static int32_t get_offset_of_m_FullPath_2() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_FullPath_2)); } inline int32_t get_m_FullPath_2() const { return ___m_FullPath_2; } inline int32_t* get_address_of_m_FullPath_2() { return &___m_FullPath_2; } inline void set_m_FullPath_2(int32_t value) { ___m_FullPath_2 = value; } inline static int32_t get_offset_of_m_NormalizedTime_3() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_NormalizedTime_3)); } inline float get_m_NormalizedTime_3() const { return ___m_NormalizedTime_3; } inline float* get_address_of_m_NormalizedTime_3() { return &___m_NormalizedTime_3; } inline void set_m_NormalizedTime_3(float value) { ___m_NormalizedTime_3 = value; } inline static int32_t get_offset_of_m_Length_4() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_Length_4)); } inline float get_m_Length_4() const { return ___m_Length_4; } inline float* get_address_of_m_Length_4() { return &___m_Length_4; } inline void set_m_Length_4(float value) { ___m_Length_4 = value; } inline static int32_t get_offset_of_m_Speed_5() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_Speed_5)); } inline float get_m_Speed_5() const { return ___m_Speed_5; } inline float* get_address_of_m_Speed_5() { return &___m_Speed_5; } inline void set_m_Speed_5(float value) { ___m_Speed_5 = value; } inline static int32_t get_offset_of_m_SpeedMultiplier_6() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_SpeedMultiplier_6)); } inline float get_m_SpeedMultiplier_6() const { return ___m_SpeedMultiplier_6; } inline float* get_address_of_m_SpeedMultiplier_6() { return &___m_SpeedMultiplier_6; } inline void set_m_SpeedMultiplier_6(float value) { ___m_SpeedMultiplier_6 = value; } inline static int32_t get_offset_of_m_Tag_7() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_Tag_7)); } inline int32_t get_m_Tag_7() const { return ___m_Tag_7; } inline int32_t* get_address_of_m_Tag_7() { return &___m_Tag_7; } inline void set_m_Tag_7(int32_t value) { ___m_Tag_7 = value; } inline static int32_t get_offset_of_m_Loop_8() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_Loop_8)); } inline int32_t get_m_Loop_8() const { return ___m_Loop_8; } inline int32_t* get_address_of_m_Loop_8() { return &___m_Loop_8; } inline void set_m_Loop_8(int32_t value) { ___m_Loop_8 = value; } }; // UnityEngine.BeforeRenderHelper_OrderBlock struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 { public: // System.Int32 UnityEngine.BeforeRenderHelper_OrderBlock::order int32_t ___order_0; // UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper_OrderBlock::callback UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___callback_1; public: inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___order_0)); } inline int32_t get_order_0() const { return ___order_0; } inline int32_t* get_address_of_order_0() { return &___order_0; } inline void set_order_0(int32_t value) { ___order_0 = value; } inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___callback_1)); } inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * get_callback_1() const { return ___callback_1; } inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 ** get_address_of_callback_1() { return &___callback_1; } inline void set_callback_1(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * value) { ___callback_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___callback_1), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_pinvoke { int32_t ___order_0; Il2CppMethodPointer ___callback_1; }; // Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_com { int32_t ___order_0; Il2CppMethodPointer ___callback_1; }; // UnityEngine.Color struct Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 { 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_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___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_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___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_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___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_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___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; } }; // UnityEngine.Color32 struct Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 { public: union { #pragma pack(push, tp, 1) struct { // System.Int32 UnityEngine.Color32::rgba int32_t ___rgba_0; }; #pragma pack(pop, tp) struct { int32_t ___rgba_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Byte UnityEngine.Color32::r uint8_t ___r_1; }; #pragma pack(pop, tp) struct { uint8_t ___r_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___g_2_OffsetPadding[1]; // System.Byte UnityEngine.Color32::g uint8_t ___g_2; }; #pragma pack(pop, tp) struct { char ___g_2_OffsetPadding_forAlignmentOnly[1]; uint8_t ___g_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___b_3_OffsetPadding[2]; // System.Byte UnityEngine.Color32::b uint8_t ___b_3; }; #pragma pack(pop, tp) struct { char ___b_3_OffsetPadding_forAlignmentOnly[2]; uint8_t ___b_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___a_4_OffsetPadding[3]; // System.Byte UnityEngine.Color32::a uint8_t ___a_4; }; #pragma pack(pop, tp) struct { char ___a_4_OffsetPadding_forAlignmentOnly[3]; uint8_t ___a_4_forAlignmentOnly; }; }; public: inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___rgba_0)); } inline int32_t get_rgba_0() const { return ___rgba_0; } inline int32_t* get_address_of_rgba_0() { return &___rgba_0; } inline void set_rgba_0(int32_t value) { ___rgba_0 = value; } inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___r_1)); } inline uint8_t get_r_1() const { return ___r_1; } inline uint8_t* get_address_of_r_1() { return &___r_1; } inline void set_r_1(uint8_t value) { ___r_1 = value; } inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___g_2)); } inline uint8_t get_g_2() const { return ___g_2; } inline uint8_t* get_address_of_g_2() { return &___g_2; } inline void set_g_2(uint8_t value) { ___g_2 = value; } inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___b_3)); } inline uint8_t get_b_3() const { return ___b_3; } inline uint8_t* get_address_of_b_3() { return &___b_3; } inline void set_b_3(uint8_t value) { ___b_3 = value; } inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___a_4)); } inline uint8_t get_a_4() const { return ___a_4; } inline uint8_t* get_address_of_a_4() { return &___a_4; } inline void set_a_4(uint8_t value) { ___a_4 = value; } }; // UnityEngine.CullingGroupEvent struct CullingGroupEvent_tC36FFE61D0A4E7B31F575A1FCAEE05AC41FACA85 { public: // System.Int32 UnityEngine.CullingGroupEvent::m_Index int32_t ___m_Index_0; // System.Byte UnityEngine.CullingGroupEvent::m_PrevState uint8_t ___m_PrevState_1; // System.Byte UnityEngine.CullingGroupEvent::m_ThisState uint8_t ___m_ThisState_2; public: inline static int32_t get_offset_of_m_Index_0() { return static_cast<int32_t>(offsetof(CullingGroupEvent_tC36FFE61D0A4E7B31F575A1FCAEE05AC41FACA85, ___m_Index_0)); } inline int32_t get_m_Index_0() const { return ___m_Index_0; } inline int32_t* get_address_of_m_Index_0() { return &___m_Index_0; } inline void set_m_Index_0(int32_t value) { ___m_Index_0 = value; } inline static int32_t get_offset_of_m_PrevState_1() { return static_cast<int32_t>(offsetof(CullingGroupEvent_tC36FFE61D0A4E7B31F575A1FCAEE05AC41FACA85, ___m_PrevState_1)); } inline uint8_t get_m_PrevState_1() const { return ___m_PrevState_1; } inline uint8_t* get_address_of_m_PrevState_1() { return &___m_PrevState_1; } inline void set_m_PrevState_1(uint8_t value) { ___m_PrevState_1 = value; } inline static int32_t get_offset_of_m_ThisState_2() { return static_cast<int32_t>(offsetof(CullingGroupEvent_tC36FFE61D0A4E7B31F575A1FCAEE05AC41FACA85, ___m_ThisState_2)); } inline uint8_t get_m_ThisState_2() const { return ___m_ThisState_2; } inline uint8_t* get_address_of_m_ThisState_2() { return &___m_ThisState_2; } inline void set_m_ThisState_2(uint8_t value) { ___m_ThisState_2 = value; } }; // UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord struct TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA { public: // System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord::tileX int32_t ___tileX_0; // System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord::tileZ int32_t ___tileZ_1; public: inline static int32_t get_offset_of_tileX_0() { return static_cast<int32_t>(offsetof(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, ___tileX_0)); } inline int32_t get_tileX_0() const { return ___tileX_0; } inline int32_t* get_address_of_tileX_0() { return &___tileX_0; } inline void set_tileX_0(int32_t value) { ___tileX_0 = value; } inline static int32_t get_offset_of_tileZ_1() { return static_cast<int32_t>(offsetof(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, ___tileZ_1)); } inline int32_t get_tileZ_1() const { return ___tileZ_1; } inline int32_t* get_address_of_tileZ_1() { return &___tileZ_1; } inline void set_tileZ_1(int32_t value) { ___tileZ_1 = value; } }; // UnityEngine.Experimental.XR.FrameReceivedEventArgs struct FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD { public: // UnityEngine.Experimental.XR.XRCameraSubsystem UnityEngine.Experimental.XR.FrameReceivedEventArgs::m_CameraSubsystem XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701 * ___m_CameraSubsystem_0; public: inline static int32_t get_offset_of_m_CameraSubsystem_0() { return static_cast<int32_t>(offsetof(FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD, ___m_CameraSubsystem_0)); } inline XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701 * get_m_CameraSubsystem_0() const { return ___m_CameraSubsystem_0; } inline XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701 ** get_address_of_m_CameraSubsystem_0() { return &___m_CameraSubsystem_0; } inline void set_m_CameraSubsystem_0(XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701 * value) { ___m_CameraSubsystem_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CameraSubsystem_0), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.FrameReceivedEventArgs struct FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD_marshaled_pinvoke { XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701 * ___m_CameraSubsystem_0; }; // Native definition for COM marshalling of UnityEngine.Experimental.XR.FrameReceivedEventArgs struct FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD_marshaled_com { XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701 * ___m_CameraSubsystem_0; }; // UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs struct PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07 { public: // UnityEngine.Experimental.XR.XRDepthSubsystem UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs::m_DepthSubsystem XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089 * ___m_DepthSubsystem_0; public: inline static int32_t get_offset_of_m_DepthSubsystem_0() { return static_cast<int32_t>(offsetof(PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07, ___m_DepthSubsystem_0)); } inline XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089 * get_m_DepthSubsystem_0() const { return ___m_DepthSubsystem_0; } inline XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089 ** get_address_of_m_DepthSubsystem_0() { return &___m_DepthSubsystem_0; } inline void set_m_DepthSubsystem_0(XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089 * value) { ___m_DepthSubsystem_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DepthSubsystem_0), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs struct PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07_marshaled_pinvoke { XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089 * ___m_DepthSubsystem_0; }; // Native definition for COM marshalling of UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs struct PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07_marshaled_com { XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089 * ___m_DepthSubsystem_0; }; // UnityEngine.Experimental.XR.TrackableId struct TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B { public: // System.UInt64 UnityEngine.Experimental.XR.TrackableId::m_SubId1 uint64_t ___m_SubId1_1; // System.UInt64 UnityEngine.Experimental.XR.TrackableId::m_SubId2 uint64_t ___m_SubId2_2; public: inline static int32_t get_offset_of_m_SubId1_1() { return static_cast<int32_t>(offsetof(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B, ___m_SubId1_1)); } inline uint64_t get_m_SubId1_1() const { return ___m_SubId1_1; } inline uint64_t* get_address_of_m_SubId1_1() { return &___m_SubId1_1; } inline void set_m_SubId1_1(uint64_t value) { ___m_SubId1_1 = value; } inline static int32_t get_offset_of_m_SubId2_2() { return static_cast<int32_t>(offsetof(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B, ___m_SubId2_2)); } inline uint64_t get_m_SubId2_2() const { return ___m_SubId2_2; } inline uint64_t* get_address_of_m_SubId2_2() { return &___m_SubId2_2; } inline void set_m_SubId2_2(uint64_t value) { ___m_SubId2_2 = value; } }; struct TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B_StaticFields { public: // UnityEngine.Experimental.XR.TrackableId UnityEngine.Experimental.XR.TrackableId::s_InvalidId TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___s_InvalidId_0; public: inline static int32_t get_offset_of_s_InvalidId_0() { return static_cast<int32_t>(offsetof(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B_StaticFields, ___s_InvalidId_0)); } inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B get_s_InvalidId_0() const { return ___s_InvalidId_0; } inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B * get_address_of_s_InvalidId_0() { return &___s_InvalidId_0; } inline void set_s_InvalidId_0(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B value) { ___s_InvalidId_0 = value; } }; // UnityEngine.Keyframe struct Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 { public: // System.Single UnityEngine.Keyframe::m_Time float ___m_Time_0; // System.Single UnityEngine.Keyframe::m_Value float ___m_Value_1; // System.Single UnityEngine.Keyframe::m_InTangent float ___m_InTangent_2; // System.Single UnityEngine.Keyframe::m_OutTangent float ___m_OutTangent_3; // System.Int32 UnityEngine.Keyframe::m_WeightedMode int32_t ___m_WeightedMode_4; // System.Single UnityEngine.Keyframe::m_InWeight float ___m_InWeight_5; // System.Single UnityEngine.Keyframe::m_OutWeight float ___m_OutWeight_6; public: inline static int32_t get_offset_of_m_Time_0() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_Time_0)); } inline float get_m_Time_0() const { return ___m_Time_0; } inline float* get_address_of_m_Time_0() { return &___m_Time_0; } inline void set_m_Time_0(float value) { ___m_Time_0 = value; } inline static int32_t get_offset_of_m_Value_1() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_Value_1)); } inline float get_m_Value_1() const { return ___m_Value_1; } inline float* get_address_of_m_Value_1() { return &___m_Value_1; } inline void set_m_Value_1(float value) { ___m_Value_1 = value; } inline static int32_t get_offset_of_m_InTangent_2() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_InTangent_2)); } inline float get_m_InTangent_2() const { return ___m_InTangent_2; } inline float* get_address_of_m_InTangent_2() { return &___m_InTangent_2; } inline void set_m_InTangent_2(float value) { ___m_InTangent_2 = value; } inline static int32_t get_offset_of_m_OutTangent_3() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_OutTangent_3)); } inline float get_m_OutTangent_3() const { return ___m_OutTangent_3; } inline float* get_address_of_m_OutTangent_3() { return &___m_OutTangent_3; } inline void set_m_OutTangent_3(float value) { ___m_OutTangent_3 = value; } inline static int32_t get_offset_of_m_WeightedMode_4() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_WeightedMode_4)); } inline int32_t get_m_WeightedMode_4() const { return ___m_WeightedMode_4; } inline int32_t* get_address_of_m_WeightedMode_4() { return &___m_WeightedMode_4; } inline void set_m_WeightedMode_4(int32_t value) { ___m_WeightedMode_4 = value; } inline static int32_t get_offset_of_m_InWeight_5() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_InWeight_5)); } inline float get_m_InWeight_5() const { return ___m_InWeight_5; } inline float* get_address_of_m_InWeight_5() { return &___m_InWeight_5; } inline void set_m_InWeight_5(float value) { ___m_InWeight_5 = value; } inline static int32_t get_offset_of_m_OutWeight_6() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_OutWeight_6)); } inline float get_m_OutWeight_6() const { return ___m_OutWeight_6; } inline float* get_address_of_m_OutWeight_6() { return &___m_OutWeight_6; } inline void set_m_OutWeight_6(float value) { ___m_OutWeight_6 = value; } }; // UnityEngine.LayerMask struct LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 { public: // System.Int32 UnityEngine.LayerMask::m_Mask int32_t ___m_Mask_0; public: inline static int32_t get_offset_of_m_Mask_0() { return static_cast<int32_t>(offsetof(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0, ___m_Mask_0)); } inline int32_t get_m_Mask_0() const { return ___m_Mask_0; } inline int32_t* get_address_of_m_Mask_0() { return &___m_Mask_0; } inline void set_m_Mask_0(int32_t value) { ___m_Mask_0 = value; } }; // UnityEngine.Matrix4x4 struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA { public: // System.Single UnityEngine.Matrix4x4::m00 float ___m00_0; // System.Single UnityEngine.Matrix4x4::m10 float ___m10_1; // System.Single UnityEngine.Matrix4x4::m20 float ___m20_2; // System.Single UnityEngine.Matrix4x4::m30 float ___m30_3; // System.Single UnityEngine.Matrix4x4::m01 float ___m01_4; // System.Single UnityEngine.Matrix4x4::m11 float ___m11_5; // System.Single UnityEngine.Matrix4x4::m21 float ___m21_6; // System.Single UnityEngine.Matrix4x4::m31 float ___m31_7; // System.Single UnityEngine.Matrix4x4::m02 float ___m02_8; // System.Single UnityEngine.Matrix4x4::m12 float ___m12_9; // System.Single UnityEngine.Matrix4x4::m22 float ___m22_10; // System.Single UnityEngine.Matrix4x4::m32 float ___m32_11; // System.Single UnityEngine.Matrix4x4::m03 float ___m03_12; // System.Single UnityEngine.Matrix4x4::m13 float ___m13_13; // System.Single UnityEngine.Matrix4x4::m23 float ___m23_14; // System.Single UnityEngine.Matrix4x4::m33 float ___m33_15; public: inline static int32_t get_offset_of_m00_0() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m00_0)); } inline float get_m00_0() const { return ___m00_0; } inline float* get_address_of_m00_0() { return &___m00_0; } inline void set_m00_0(float value) { ___m00_0 = value; } inline static int32_t get_offset_of_m10_1() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m10_1)); } inline float get_m10_1() const { return ___m10_1; } inline float* get_address_of_m10_1() { return &___m10_1; } inline void set_m10_1(float value) { ___m10_1 = value; } inline static int32_t get_offset_of_m20_2() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m20_2)); } inline float get_m20_2() const { return ___m20_2; } inline float* get_address_of_m20_2() { return &___m20_2; } inline void set_m20_2(float value) { ___m20_2 = value; } inline static int32_t get_offset_of_m30_3() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m30_3)); } inline float get_m30_3() const { return ___m30_3; } inline float* get_address_of_m30_3() { return &___m30_3; } inline void set_m30_3(float value) { ___m30_3 = value; } inline static int32_t get_offset_of_m01_4() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m01_4)); } inline float get_m01_4() const { return ___m01_4; } inline float* get_address_of_m01_4() { return &___m01_4; } inline void set_m01_4(float value) { ___m01_4 = value; } inline static int32_t get_offset_of_m11_5() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m11_5)); } inline float get_m11_5() const { return ___m11_5; } inline float* get_address_of_m11_5() { return &___m11_5; } inline void set_m11_5(float value) { ___m11_5 = value; } inline static int32_t get_offset_of_m21_6() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m21_6)); } inline float get_m21_6() const { return ___m21_6; } inline float* get_address_of_m21_6() { return &___m21_6; } inline void set_m21_6(float value) { ___m21_6 = value; } inline static int32_t get_offset_of_m31_7() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m31_7)); } inline float get_m31_7() const { return ___m31_7; } inline float* get_address_of_m31_7() { return &___m31_7; } inline void set_m31_7(float value) { ___m31_7 = value; } inline static int32_t get_offset_of_m02_8() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m02_8)); } inline float get_m02_8() const { return ___m02_8; } inline float* get_address_of_m02_8() { return &___m02_8; } inline void set_m02_8(float value) { ___m02_8 = value; } inline static int32_t get_offset_of_m12_9() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m12_9)); } inline float get_m12_9() const { return ___m12_9; } inline float* get_address_of_m12_9() { return &___m12_9; } inline void set_m12_9(float value) { ___m12_9 = value; } inline static int32_t get_offset_of_m22_10() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m22_10)); } inline float get_m22_10() const { return ___m22_10; } inline float* get_address_of_m22_10() { return &___m22_10; } inline void set_m22_10(float value) { ___m22_10 = value; } inline static int32_t get_offset_of_m32_11() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m32_11)); } inline float get_m32_11() const { return ___m32_11; } inline float* get_address_of_m32_11() { return &___m32_11; } inline void set_m32_11(float value) { ___m32_11 = value; } inline static int32_t get_offset_of_m03_12() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m03_12)); } inline float get_m03_12() const { return ___m03_12; } inline float* get_address_of_m03_12() { return &___m03_12; } inline void set_m03_12(float value) { ___m03_12 = value; } inline static int32_t get_offset_of_m13_13() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m13_13)); } inline float get_m13_13() const { return ___m13_13; } inline float* get_address_of_m13_13() { return &___m13_13; } inline void set_m13_13(float value) { ___m13_13 = value; } inline static int32_t get_offset_of_m23_14() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m23_14)); } inline float get_m23_14() const { return ___m23_14; } inline float* get_address_of_m23_14() { return &___m23_14; } inline void set_m23_14(float value) { ___m23_14 = value; } inline static int32_t get_offset_of_m33_15() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m33_15)); } inline float get_m33_15() const { return ___m33_15; } inline float* get_address_of_m33_15() { return &___m33_15; } inline void set_m33_15(float value) { ___m33_15 = value; } }; struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields { public: // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___zeroMatrix_16; // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___identityMatrix_17; public: inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___zeroMatrix_16)); } inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_zeroMatrix_16() const { return ___zeroMatrix_16; } inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; } inline void set_zeroMatrix_16(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value) { ___zeroMatrix_16 = value; } inline static int32_t get_offset_of_identityMatrix_17() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___identityMatrix_17)); } inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_identityMatrix_17() const { return ___identityMatrix_17; } inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_identityMatrix_17() { return &___identityMatrix_17; } inline void set_identityMatrix_17(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value) { ___identityMatrix_17 = value; } }; // UnityEngine.PhysicsScene struct PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 { public: // System.Int32 UnityEngine.PhysicsScene::m_Handle int32_t ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5, ___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.PhysicsScene2D struct PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 { public: // System.Int32 UnityEngine.PhysicsScene2D::m_Handle int32_t ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58, ___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.PostProcessing.AntialiasingModel_FxaaConsoleSettings struct FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 { public: // System.Single UnityEngine.PostProcessing.AntialiasingModel_FxaaConsoleSettings::subpixelSpreadAmount float ___subpixelSpreadAmount_0; // System.Single UnityEngine.PostProcessing.AntialiasingModel_FxaaConsoleSettings::edgeSharpnessAmount float ___edgeSharpnessAmount_1; // System.Single UnityEngine.PostProcessing.AntialiasingModel_FxaaConsoleSettings::edgeDetectionThreshold float ___edgeDetectionThreshold_2; // System.Single UnityEngine.PostProcessing.AntialiasingModel_FxaaConsoleSettings::minimumRequiredLuminance float ___minimumRequiredLuminance_3; public: inline static int32_t get_offset_of_subpixelSpreadAmount_0() { return static_cast<int32_t>(offsetof(FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9, ___subpixelSpreadAmount_0)); } inline float get_subpixelSpreadAmount_0() const { return ___subpixelSpreadAmount_0; } inline float* get_address_of_subpixelSpreadAmount_0() { return &___subpixelSpreadAmount_0; } inline void set_subpixelSpreadAmount_0(float value) { ___subpixelSpreadAmount_0 = value; } inline static int32_t get_offset_of_edgeSharpnessAmount_1() { return static_cast<int32_t>(offsetof(FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9, ___edgeSharpnessAmount_1)); } inline float get_edgeSharpnessAmount_1() const { return ___edgeSharpnessAmount_1; } inline float* get_address_of_edgeSharpnessAmount_1() { return &___edgeSharpnessAmount_1; } inline void set_edgeSharpnessAmount_1(float value) { ___edgeSharpnessAmount_1 = value; } inline static int32_t get_offset_of_edgeDetectionThreshold_2() { return static_cast<int32_t>(offsetof(FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9, ___edgeDetectionThreshold_2)); } inline float get_edgeDetectionThreshold_2() const { return ___edgeDetectionThreshold_2; } inline float* get_address_of_edgeDetectionThreshold_2() { return &___edgeDetectionThreshold_2; } inline void set_edgeDetectionThreshold_2(float value) { ___edgeDetectionThreshold_2 = value; } inline static int32_t get_offset_of_minimumRequiredLuminance_3() { return static_cast<int32_t>(offsetof(FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9, ___minimumRequiredLuminance_3)); } inline float get_minimumRequiredLuminance_3() const { return ___minimumRequiredLuminance_3; } inline float* get_address_of_minimumRequiredLuminance_3() { return &___minimumRequiredLuminance_3; } inline void set_minimumRequiredLuminance_3(float value) { ___minimumRequiredLuminance_3 = value; } }; struct FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9_StaticFields { public: // UnityEngine.PostProcessing.AntialiasingModel_FxaaConsoleSettings[] UnityEngine.PostProcessing.AntialiasingModel_FxaaConsoleSettings::presets FxaaConsoleSettingsU5BU5D_t6627EE986966C1CA0E712FB09F4C2235D4440C86* ___presets_4; public: inline static int32_t get_offset_of_presets_4() { return static_cast<int32_t>(offsetof(FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9_StaticFields, ___presets_4)); } inline FxaaConsoleSettingsU5BU5D_t6627EE986966C1CA0E712FB09F4C2235D4440C86* get_presets_4() const { return ___presets_4; } inline FxaaConsoleSettingsU5BU5D_t6627EE986966C1CA0E712FB09F4C2235D4440C86** get_address_of_presets_4() { return &___presets_4; } inline void set_presets_4(FxaaConsoleSettingsU5BU5D_t6627EE986966C1CA0E712FB09F4C2235D4440C86* value) { ___presets_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___presets_4), (void*)value); } }; // UnityEngine.PostProcessing.AntialiasingModel_FxaaQualitySettings struct FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 { public: // System.Single UnityEngine.PostProcessing.AntialiasingModel_FxaaQualitySettings::subpixelAliasingRemovalAmount float ___subpixelAliasingRemovalAmount_0; // System.Single UnityEngine.PostProcessing.AntialiasingModel_FxaaQualitySettings::edgeDetectionThreshold float ___edgeDetectionThreshold_1; // System.Single UnityEngine.PostProcessing.AntialiasingModel_FxaaQualitySettings::minimumRequiredLuminance float ___minimumRequiredLuminance_2; public: inline static int32_t get_offset_of_subpixelAliasingRemovalAmount_0() { return static_cast<int32_t>(offsetof(FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051, ___subpixelAliasingRemovalAmount_0)); } inline float get_subpixelAliasingRemovalAmount_0() const { return ___subpixelAliasingRemovalAmount_0; } inline float* get_address_of_subpixelAliasingRemovalAmount_0() { return &___subpixelAliasingRemovalAmount_0; } inline void set_subpixelAliasingRemovalAmount_0(float value) { ___subpixelAliasingRemovalAmount_0 = value; } inline static int32_t get_offset_of_edgeDetectionThreshold_1() { return static_cast<int32_t>(offsetof(FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051, ___edgeDetectionThreshold_1)); } inline float get_edgeDetectionThreshold_1() const { return ___edgeDetectionThreshold_1; } inline float* get_address_of_edgeDetectionThreshold_1() { return &___edgeDetectionThreshold_1; } inline void set_edgeDetectionThreshold_1(float value) { ___edgeDetectionThreshold_1 = value; } inline static int32_t get_offset_of_minimumRequiredLuminance_2() { return static_cast<int32_t>(offsetof(FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051, ___minimumRequiredLuminance_2)); } inline float get_minimumRequiredLuminance_2() const { return ___minimumRequiredLuminance_2; } inline float* get_address_of_minimumRequiredLuminance_2() { return &___minimumRequiredLuminance_2; } inline void set_minimumRequiredLuminance_2(float value) { ___minimumRequiredLuminance_2 = value; } }; struct FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051_StaticFields { public: // UnityEngine.PostProcessing.AntialiasingModel_FxaaQualitySettings[] UnityEngine.PostProcessing.AntialiasingModel_FxaaQualitySettings::presets FxaaQualitySettingsU5BU5D_t12A497E489D5AD46034F201274B5B7350763CC9F* ___presets_3; public: inline static int32_t get_offset_of_presets_3() { return static_cast<int32_t>(offsetof(FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051_StaticFields, ___presets_3)); } inline FxaaQualitySettingsU5BU5D_t12A497E489D5AD46034F201274B5B7350763CC9F* get_presets_3() const { return ___presets_3; } inline FxaaQualitySettingsU5BU5D_t12A497E489D5AD46034F201274B5B7350763CC9F** get_address_of_presets_3() { return &___presets_3; } inline void set_presets_3(FxaaQualitySettingsU5BU5D_t12A497E489D5AD46034F201274B5B7350763CC9F* value) { ___presets_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___presets_3), (void*)value); } }; // UnityEngine.PostProcessing.AntialiasingModel_TaaSettings struct TaaSettings_tCFEF81D638B351BFF56346922415F70DE5BD1926 { public: // System.Single UnityEngine.PostProcessing.AntialiasingModel_TaaSettings::jitterSpread float ___jitterSpread_0; // System.Single UnityEngine.PostProcessing.AntialiasingModel_TaaSettings::sharpen float ___sharpen_1; // System.Single UnityEngine.PostProcessing.AntialiasingModel_TaaSettings::stationaryBlending float ___stationaryBlending_2; // System.Single UnityEngine.PostProcessing.AntialiasingModel_TaaSettings::motionBlending float ___motionBlending_3; public: inline static int32_t get_offset_of_jitterSpread_0() { return static_cast<int32_t>(offsetof(TaaSettings_tCFEF81D638B351BFF56346922415F70DE5BD1926, ___jitterSpread_0)); } inline float get_jitterSpread_0() const { return ___jitterSpread_0; } inline float* get_address_of_jitterSpread_0() { return &___jitterSpread_0; } inline void set_jitterSpread_0(float value) { ___jitterSpread_0 = value; } inline static int32_t get_offset_of_sharpen_1() { return static_cast<int32_t>(offsetof(TaaSettings_tCFEF81D638B351BFF56346922415F70DE5BD1926, ___sharpen_1)); } inline float get_sharpen_1() const { return ___sharpen_1; } inline float* get_address_of_sharpen_1() { return &___sharpen_1; } inline void set_sharpen_1(float value) { ___sharpen_1 = value; } inline static int32_t get_offset_of_stationaryBlending_2() { return static_cast<int32_t>(offsetof(TaaSettings_tCFEF81D638B351BFF56346922415F70DE5BD1926, ___stationaryBlending_2)); } inline float get_stationaryBlending_2() const { return ___stationaryBlending_2; } inline float* get_address_of_stationaryBlending_2() { return &___stationaryBlending_2; } inline void set_stationaryBlending_2(float value) { ___stationaryBlending_2 = value; } inline static int32_t get_offset_of_motionBlending_3() { return static_cast<int32_t>(offsetof(TaaSettings_tCFEF81D638B351BFF56346922415F70DE5BD1926, ___motionBlending_3)); } inline float get_motionBlending_3() const { return ___motionBlending_3; } inline float* get_address_of_motionBlending_3() { return &___motionBlending_3; } inline void set_motionBlending_3(float value) { ___motionBlending_3 = value; } }; // UnityEngine.PostProcessing.BloomModel_BloomSettings struct BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0 { public: // System.Single UnityEngine.PostProcessing.BloomModel_BloomSettings::intensity float ___intensity_0; // System.Single UnityEngine.PostProcessing.BloomModel_BloomSettings::threshold float ___threshold_1; // System.Single UnityEngine.PostProcessing.BloomModel_BloomSettings::softKnee float ___softKnee_2; // System.Single UnityEngine.PostProcessing.BloomModel_BloomSettings::radius float ___radius_3; // System.Boolean UnityEngine.PostProcessing.BloomModel_BloomSettings::antiFlicker bool ___antiFlicker_4; public: inline static int32_t get_offset_of_intensity_0() { return static_cast<int32_t>(offsetof(BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0, ___intensity_0)); } inline float get_intensity_0() const { return ___intensity_0; } inline float* get_address_of_intensity_0() { return &___intensity_0; } inline void set_intensity_0(float value) { ___intensity_0 = value; } inline static int32_t get_offset_of_threshold_1() { return static_cast<int32_t>(offsetof(BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0, ___threshold_1)); } inline float get_threshold_1() const { return ___threshold_1; } inline float* get_address_of_threshold_1() { return &___threshold_1; } inline void set_threshold_1(float value) { ___threshold_1 = value; } inline static int32_t get_offset_of_softKnee_2() { return static_cast<int32_t>(offsetof(BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0, ___softKnee_2)); } inline float get_softKnee_2() const { return ___softKnee_2; } inline float* get_address_of_softKnee_2() { return &___softKnee_2; } inline void set_softKnee_2(float value) { ___softKnee_2 = value; } inline static int32_t get_offset_of_radius_3() { return static_cast<int32_t>(offsetof(BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0, ___radius_3)); } inline float get_radius_3() const { return ___radius_3; } inline float* get_address_of_radius_3() { return &___radius_3; } inline void set_radius_3(float value) { ___radius_3 = value; } inline static int32_t get_offset_of_antiFlicker_4() { return static_cast<int32_t>(offsetof(BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0, ___antiFlicker_4)); } inline bool get_antiFlicker_4() const { return ___antiFlicker_4; } inline bool* get_address_of_antiFlicker_4() { return &___antiFlicker_4; } inline void set_antiFlicker_4(bool value) { ___antiFlicker_4 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.BloomModel/BloomSettings struct BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0_marshaled_pinvoke { float ___intensity_0; float ___threshold_1; float ___softKnee_2; float ___radius_3; int32_t ___antiFlicker_4; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.BloomModel/BloomSettings struct BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0_marshaled_com { float ___intensity_0; float ___threshold_1; float ___softKnee_2; float ___radius_3; int32_t ___antiFlicker_4; }; // UnityEngine.PostProcessing.BloomModel_LensDirtSettings struct LensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A { public: // UnityEngine.Texture UnityEngine.PostProcessing.BloomModel_LensDirtSettings::texture Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___texture_0; // System.Single UnityEngine.PostProcessing.BloomModel_LensDirtSettings::intensity float ___intensity_1; public: inline static int32_t get_offset_of_texture_0() { return static_cast<int32_t>(offsetof(LensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A, ___texture_0)); } inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * get_texture_0() const { return ___texture_0; } inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 ** get_address_of_texture_0() { return &___texture_0; } inline void set_texture_0(Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * value) { ___texture_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___texture_0), (void*)value); } inline static int32_t get_offset_of_intensity_1() { return static_cast<int32_t>(offsetof(LensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A, ___intensity_1)); } inline float get_intensity_1() const { return ___intensity_1; } inline float* get_address_of_intensity_1() { return &___intensity_1; } inline void set_intensity_1(float value) { ___intensity_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.BloomModel/LensDirtSettings struct LensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A_marshaled_pinvoke { Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___texture_0; float ___intensity_1; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.BloomModel/LensDirtSettings struct LensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A_marshaled_com { Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___texture_0; float ___intensity_1; }; // UnityEngine.PostProcessing.BuiltinDebugViewsModel_DepthSettings struct DepthSettings_tC484EB6F5B3327CF16840634323AF5CFFEE126EC { public: // System.Single UnityEngine.PostProcessing.BuiltinDebugViewsModel_DepthSettings::scale float ___scale_0; public: inline static int32_t get_offset_of_scale_0() { return static_cast<int32_t>(offsetof(DepthSettings_tC484EB6F5B3327CF16840634323AF5CFFEE126EC, ___scale_0)); } inline float get_scale_0() const { return ___scale_0; } inline float* get_address_of_scale_0() { return &___scale_0; } inline void set_scale_0(float value) { ___scale_0 = value; } }; // UnityEngine.PostProcessing.BuiltinDebugViewsModel_MotionVectorsSettings struct MotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256 { public: // System.Single UnityEngine.PostProcessing.BuiltinDebugViewsModel_MotionVectorsSettings::sourceOpacity float ___sourceOpacity_0; // System.Single UnityEngine.PostProcessing.BuiltinDebugViewsModel_MotionVectorsSettings::motionImageOpacity float ___motionImageOpacity_1; // System.Single UnityEngine.PostProcessing.BuiltinDebugViewsModel_MotionVectorsSettings::motionImageAmplitude float ___motionImageAmplitude_2; // System.Single UnityEngine.PostProcessing.BuiltinDebugViewsModel_MotionVectorsSettings::motionVectorsOpacity float ___motionVectorsOpacity_3; // System.Int32 UnityEngine.PostProcessing.BuiltinDebugViewsModel_MotionVectorsSettings::motionVectorsResolution int32_t ___motionVectorsResolution_4; // System.Single UnityEngine.PostProcessing.BuiltinDebugViewsModel_MotionVectorsSettings::motionVectorsAmplitude float ___motionVectorsAmplitude_5; public: inline static int32_t get_offset_of_sourceOpacity_0() { return static_cast<int32_t>(offsetof(MotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256, ___sourceOpacity_0)); } inline float get_sourceOpacity_0() const { return ___sourceOpacity_0; } inline float* get_address_of_sourceOpacity_0() { return &___sourceOpacity_0; } inline void set_sourceOpacity_0(float value) { ___sourceOpacity_0 = value; } inline static int32_t get_offset_of_motionImageOpacity_1() { return static_cast<int32_t>(offsetof(MotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256, ___motionImageOpacity_1)); } inline float get_motionImageOpacity_1() const { return ___motionImageOpacity_1; } inline float* get_address_of_motionImageOpacity_1() { return &___motionImageOpacity_1; } inline void set_motionImageOpacity_1(float value) { ___motionImageOpacity_1 = value; } inline static int32_t get_offset_of_motionImageAmplitude_2() { return static_cast<int32_t>(offsetof(MotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256, ___motionImageAmplitude_2)); } inline float get_motionImageAmplitude_2() const { return ___motionImageAmplitude_2; } inline float* get_address_of_motionImageAmplitude_2() { return &___motionImageAmplitude_2; } inline void set_motionImageAmplitude_2(float value) { ___motionImageAmplitude_2 = value; } inline static int32_t get_offset_of_motionVectorsOpacity_3() { return static_cast<int32_t>(offsetof(MotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256, ___motionVectorsOpacity_3)); } inline float get_motionVectorsOpacity_3() const { return ___motionVectorsOpacity_3; } inline float* get_address_of_motionVectorsOpacity_3() { return &___motionVectorsOpacity_3; } inline void set_motionVectorsOpacity_3(float value) { ___motionVectorsOpacity_3 = value; } inline static int32_t get_offset_of_motionVectorsResolution_4() { return static_cast<int32_t>(offsetof(MotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256, ___motionVectorsResolution_4)); } inline int32_t get_motionVectorsResolution_4() const { return ___motionVectorsResolution_4; } inline int32_t* get_address_of_motionVectorsResolution_4() { return &___motionVectorsResolution_4; } inline void set_motionVectorsResolution_4(int32_t value) { ___motionVectorsResolution_4 = value; } inline static int32_t get_offset_of_motionVectorsAmplitude_5() { return static_cast<int32_t>(offsetof(MotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256, ___motionVectorsAmplitude_5)); } inline float get_motionVectorsAmplitude_5() const { return ___motionVectorsAmplitude_5; } inline float* get_address_of_motionVectorsAmplitude_5() { return &___motionVectorsAmplitude_5; } inline void set_motionVectorsAmplitude_5(float value) { ___motionVectorsAmplitude_5 = value; } }; // UnityEngine.PostProcessing.ChromaticAberrationModel_Settings struct Settings_t3B36530BC44129694D3A136E05855736FAB00743 { public: // UnityEngine.Texture2D UnityEngine.PostProcessing.ChromaticAberrationModel_Settings::spectralTexture Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___spectralTexture_0; // System.Single UnityEngine.PostProcessing.ChromaticAberrationModel_Settings::intensity float ___intensity_1; public: inline static int32_t get_offset_of_spectralTexture_0() { return static_cast<int32_t>(offsetof(Settings_t3B36530BC44129694D3A136E05855736FAB00743, ___spectralTexture_0)); } inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_spectralTexture_0() const { return ___spectralTexture_0; } inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_spectralTexture_0() { return &___spectralTexture_0; } inline void set_spectralTexture_0(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value) { ___spectralTexture_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___spectralTexture_0), (void*)value); } inline static int32_t get_offset_of_intensity_1() { return static_cast<int32_t>(offsetof(Settings_t3B36530BC44129694D3A136E05855736FAB00743, ___intensity_1)); } inline float get_intensity_1() const { return ___intensity_1; } inline float* get_address_of_intensity_1() { return &___intensity_1; } inline void set_intensity_1(float value) { ___intensity_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.ChromaticAberrationModel/Settings struct Settings_t3B36530BC44129694D3A136E05855736FAB00743_marshaled_pinvoke { Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___spectralTexture_0; float ___intensity_1; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.ChromaticAberrationModel/Settings struct Settings_t3B36530BC44129694D3A136E05855736FAB00743_marshaled_com { Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___spectralTexture_0; float ___intensity_1; }; // UnityEngine.PostProcessing.ColorGradingModel_BasicSettings struct BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49 { public: // System.Single UnityEngine.PostProcessing.ColorGradingModel_BasicSettings::postExposure float ___postExposure_0; // System.Single UnityEngine.PostProcessing.ColorGradingModel_BasicSettings::temperature float ___temperature_1; // System.Single UnityEngine.PostProcessing.ColorGradingModel_BasicSettings::tint float ___tint_2; // System.Single UnityEngine.PostProcessing.ColorGradingModel_BasicSettings::hueShift float ___hueShift_3; // System.Single UnityEngine.PostProcessing.ColorGradingModel_BasicSettings::saturation float ___saturation_4; // System.Single UnityEngine.PostProcessing.ColorGradingModel_BasicSettings::contrast float ___contrast_5; public: inline static int32_t get_offset_of_postExposure_0() { return static_cast<int32_t>(offsetof(BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49, ___postExposure_0)); } inline float get_postExposure_0() const { return ___postExposure_0; } inline float* get_address_of_postExposure_0() { return &___postExposure_0; } inline void set_postExposure_0(float value) { ___postExposure_0 = value; } inline static int32_t get_offset_of_temperature_1() { return static_cast<int32_t>(offsetof(BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49, ___temperature_1)); } inline float get_temperature_1() const { return ___temperature_1; } inline float* get_address_of_temperature_1() { return &___temperature_1; } inline void set_temperature_1(float value) { ___temperature_1 = value; } inline static int32_t get_offset_of_tint_2() { return static_cast<int32_t>(offsetof(BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49, ___tint_2)); } inline float get_tint_2() const { return ___tint_2; } inline float* get_address_of_tint_2() { return &___tint_2; } inline void set_tint_2(float value) { ___tint_2 = value; } inline static int32_t get_offset_of_hueShift_3() { return static_cast<int32_t>(offsetof(BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49, ___hueShift_3)); } inline float get_hueShift_3() const { return ___hueShift_3; } inline float* get_address_of_hueShift_3() { return &___hueShift_3; } inline void set_hueShift_3(float value) { ___hueShift_3 = value; } inline static int32_t get_offset_of_saturation_4() { return static_cast<int32_t>(offsetof(BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49, ___saturation_4)); } inline float get_saturation_4() const { return ___saturation_4; } inline float* get_address_of_saturation_4() { return &___saturation_4; } inline void set_saturation_4(float value) { ___saturation_4 = value; } inline static int32_t get_offset_of_contrast_5() { return static_cast<int32_t>(offsetof(BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49, ___contrast_5)); } inline float get_contrast_5() const { return ___contrast_5; } inline float* get_address_of_contrast_5() { return &___contrast_5; } inline void set_contrast_5(float value) { ___contrast_5 = value; } }; // UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings struct CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E { public: // UnityEngine.PostProcessing.ColorGradingCurve UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings::master ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___master_0; // UnityEngine.PostProcessing.ColorGradingCurve UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings::red ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___red_1; // UnityEngine.PostProcessing.ColorGradingCurve UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings::green ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___green_2; // UnityEngine.PostProcessing.ColorGradingCurve UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings::blue ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___blue_3; // UnityEngine.PostProcessing.ColorGradingCurve UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings::hueVShue ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___hueVShue_4; // UnityEngine.PostProcessing.ColorGradingCurve UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings::hueVSsat ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___hueVSsat_5; // UnityEngine.PostProcessing.ColorGradingCurve UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings::satVSsat ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___satVSsat_6; // UnityEngine.PostProcessing.ColorGradingCurve UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings::lumVSsat ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___lumVSsat_7; // System.Int32 UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings::e_CurrentEditingCurve int32_t ___e_CurrentEditingCurve_8; // System.Boolean UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings::e_CurveY bool ___e_CurveY_9; // System.Boolean UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings::e_CurveR bool ___e_CurveR_10; // System.Boolean UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings::e_CurveG bool ___e_CurveG_11; // System.Boolean UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings::e_CurveB bool ___e_CurveB_12; public: inline static int32_t get_offset_of_master_0() { return static_cast<int32_t>(offsetof(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, ___master_0)); } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * get_master_0() const { return ___master_0; } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D ** get_address_of_master_0() { return &___master_0; } inline void set_master_0(ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * value) { ___master_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___master_0), (void*)value); } inline static int32_t get_offset_of_red_1() { return static_cast<int32_t>(offsetof(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, ___red_1)); } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * get_red_1() const { return ___red_1; } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D ** get_address_of_red_1() { return &___red_1; } inline void set_red_1(ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * value) { ___red_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___red_1), (void*)value); } inline static int32_t get_offset_of_green_2() { return static_cast<int32_t>(offsetof(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, ___green_2)); } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * get_green_2() const { return ___green_2; } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D ** get_address_of_green_2() { return &___green_2; } inline void set_green_2(ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * value) { ___green_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___green_2), (void*)value); } inline static int32_t get_offset_of_blue_3() { return static_cast<int32_t>(offsetof(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, ___blue_3)); } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * get_blue_3() const { return ___blue_3; } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D ** get_address_of_blue_3() { return &___blue_3; } inline void set_blue_3(ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * value) { ___blue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___blue_3), (void*)value); } inline static int32_t get_offset_of_hueVShue_4() { return static_cast<int32_t>(offsetof(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, ___hueVShue_4)); } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * get_hueVShue_4() const { return ___hueVShue_4; } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D ** get_address_of_hueVShue_4() { return &___hueVShue_4; } inline void set_hueVShue_4(ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * value) { ___hueVShue_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___hueVShue_4), (void*)value); } inline static int32_t get_offset_of_hueVSsat_5() { return static_cast<int32_t>(offsetof(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, ___hueVSsat_5)); } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * get_hueVSsat_5() const { return ___hueVSsat_5; } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D ** get_address_of_hueVSsat_5() { return &___hueVSsat_5; } inline void set_hueVSsat_5(ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * value) { ___hueVSsat_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___hueVSsat_5), (void*)value); } inline static int32_t get_offset_of_satVSsat_6() { return static_cast<int32_t>(offsetof(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, ___satVSsat_6)); } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * get_satVSsat_6() const { return ___satVSsat_6; } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D ** get_address_of_satVSsat_6() { return &___satVSsat_6; } inline void set_satVSsat_6(ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * value) { ___satVSsat_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___satVSsat_6), (void*)value); } inline static int32_t get_offset_of_lumVSsat_7() { return static_cast<int32_t>(offsetof(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, ___lumVSsat_7)); } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * get_lumVSsat_7() const { return ___lumVSsat_7; } inline ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D ** get_address_of_lumVSsat_7() { return &___lumVSsat_7; } inline void set_lumVSsat_7(ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * value) { ___lumVSsat_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___lumVSsat_7), (void*)value); } inline static int32_t get_offset_of_e_CurrentEditingCurve_8() { return static_cast<int32_t>(offsetof(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, ___e_CurrentEditingCurve_8)); } inline int32_t get_e_CurrentEditingCurve_8() const { return ___e_CurrentEditingCurve_8; } inline int32_t* get_address_of_e_CurrentEditingCurve_8() { return &___e_CurrentEditingCurve_8; } inline void set_e_CurrentEditingCurve_8(int32_t value) { ___e_CurrentEditingCurve_8 = value; } inline static int32_t get_offset_of_e_CurveY_9() { return static_cast<int32_t>(offsetof(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, ___e_CurveY_9)); } inline bool get_e_CurveY_9() const { return ___e_CurveY_9; } inline bool* get_address_of_e_CurveY_9() { return &___e_CurveY_9; } inline void set_e_CurveY_9(bool value) { ___e_CurveY_9 = value; } inline static int32_t get_offset_of_e_CurveR_10() { return static_cast<int32_t>(offsetof(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, ___e_CurveR_10)); } inline bool get_e_CurveR_10() const { return ___e_CurveR_10; } inline bool* get_address_of_e_CurveR_10() { return &___e_CurveR_10; } inline void set_e_CurveR_10(bool value) { ___e_CurveR_10 = value; } inline static int32_t get_offset_of_e_CurveG_11() { return static_cast<int32_t>(offsetof(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, ___e_CurveG_11)); } inline bool get_e_CurveG_11() const { return ___e_CurveG_11; } inline bool* get_address_of_e_CurveG_11() { return &___e_CurveG_11; } inline void set_e_CurveG_11(bool value) { ___e_CurveG_11 = value; } inline static int32_t get_offset_of_e_CurveB_12() { return static_cast<int32_t>(offsetof(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, ___e_CurveB_12)); } inline bool get_e_CurveB_12() const { return ___e_CurveB_12; } inline bool* get_address_of_e_CurveB_12() { return &___e_CurveB_12; } inline void set_e_CurveB_12(bool value) { ___e_CurveB_12 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.ColorGradingModel/CurvesSettings struct CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E_marshaled_pinvoke { ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___master_0; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___red_1; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___green_2; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___blue_3; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___hueVShue_4; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___hueVSsat_5; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___satVSsat_6; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___lumVSsat_7; int32_t ___e_CurrentEditingCurve_8; int32_t ___e_CurveY_9; int32_t ___e_CurveR_10; int32_t ___e_CurveG_11; int32_t ___e_CurveB_12; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.ColorGradingModel/CurvesSettings struct CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E_marshaled_com { ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___master_0; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___red_1; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___green_2; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___blue_3; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___hueVShue_4; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___hueVSsat_5; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___satVSsat_6; ColorGradingCurve_tBB0E6A0AF584D1CDAEEFC1014CE35D0E426BEE9D * ___lumVSsat_7; int32_t ___e_CurrentEditingCurve_8; int32_t ___e_CurveY_9; int32_t ___e_CurveR_10; int32_t ___e_CurveG_11; int32_t ___e_CurveB_12; }; // UnityEngine.PostProcessing.DitheringModel_Settings struct Settings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724 { public: union { struct { }; uint8_t Settings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724__padding[1]; }; public: }; // UnityEngine.PostProcessing.FogModel_Settings struct Settings_tA824AD6B5D555CEB742A622222775333124B2107 { public: // System.Boolean UnityEngine.PostProcessing.FogModel_Settings::excludeSkybox bool ___excludeSkybox_0; public: inline static int32_t get_offset_of_excludeSkybox_0() { return static_cast<int32_t>(offsetof(Settings_tA824AD6B5D555CEB742A622222775333124B2107, ___excludeSkybox_0)); } inline bool get_excludeSkybox_0() const { return ___excludeSkybox_0; } inline bool* get_address_of_excludeSkybox_0() { return &___excludeSkybox_0; } inline void set_excludeSkybox_0(bool value) { ___excludeSkybox_0 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.FogModel/Settings struct Settings_tA824AD6B5D555CEB742A622222775333124B2107_marshaled_pinvoke { int32_t ___excludeSkybox_0; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.FogModel/Settings struct Settings_tA824AD6B5D555CEB742A622222775333124B2107_marshaled_com { int32_t ___excludeSkybox_0; }; // UnityEngine.PostProcessing.GrainModel_Settings struct Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F { public: // System.Boolean UnityEngine.PostProcessing.GrainModel_Settings::colored bool ___colored_0; // System.Single UnityEngine.PostProcessing.GrainModel_Settings::intensity float ___intensity_1; // System.Single UnityEngine.PostProcessing.GrainModel_Settings::size float ___size_2; // System.Single UnityEngine.PostProcessing.GrainModel_Settings::luminanceContribution float ___luminanceContribution_3; public: inline static int32_t get_offset_of_colored_0() { return static_cast<int32_t>(offsetof(Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F, ___colored_0)); } inline bool get_colored_0() const { return ___colored_0; } inline bool* get_address_of_colored_0() { return &___colored_0; } inline void set_colored_0(bool value) { ___colored_0 = value; } inline static int32_t get_offset_of_intensity_1() { return static_cast<int32_t>(offsetof(Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F, ___intensity_1)); } inline float get_intensity_1() const { return ___intensity_1; } inline float* get_address_of_intensity_1() { return &___intensity_1; } inline void set_intensity_1(float value) { ___intensity_1 = value; } inline static int32_t get_offset_of_size_2() { return static_cast<int32_t>(offsetof(Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F, ___size_2)); } inline float get_size_2() const { return ___size_2; } inline float* get_address_of_size_2() { return &___size_2; } inline void set_size_2(float value) { ___size_2 = value; } inline static int32_t get_offset_of_luminanceContribution_3() { return static_cast<int32_t>(offsetof(Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F, ___luminanceContribution_3)); } inline float get_luminanceContribution_3() const { return ___luminanceContribution_3; } inline float* get_address_of_luminanceContribution_3() { return &___luminanceContribution_3; } inline void set_luminanceContribution_3(float value) { ___luminanceContribution_3 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.GrainModel/Settings struct Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F_marshaled_pinvoke { int32_t ___colored_0; float ___intensity_1; float ___size_2; float ___luminanceContribution_3; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.GrainModel/Settings struct Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F_marshaled_com { int32_t ___colored_0; float ___intensity_1; float ___size_2; float ___luminanceContribution_3; }; // UnityEngine.PostProcessing.MotionBlurComponent_FrameBlendingFilter_Frame struct Frame_t6E5425A32B627B657C530E84626768BC9F53006E { public: // UnityEngine.RenderTexture UnityEngine.PostProcessing.MotionBlurComponent_FrameBlendingFilter_Frame::lumaTexture RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 * ___lumaTexture_0; // UnityEngine.RenderTexture UnityEngine.PostProcessing.MotionBlurComponent_FrameBlendingFilter_Frame::chromaTexture RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 * ___chromaTexture_1; // System.Single UnityEngine.PostProcessing.MotionBlurComponent_FrameBlendingFilter_Frame::m_Time float ___m_Time_2; // UnityEngine.Rendering.RenderTargetIdentifier[] UnityEngine.PostProcessing.MotionBlurComponent_FrameBlendingFilter_Frame::m_MRT RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4* ___m_MRT_3; public: inline static int32_t get_offset_of_lumaTexture_0() { return static_cast<int32_t>(offsetof(Frame_t6E5425A32B627B657C530E84626768BC9F53006E, ___lumaTexture_0)); } inline RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 * get_lumaTexture_0() const { return ___lumaTexture_0; } inline RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 ** get_address_of_lumaTexture_0() { return &___lumaTexture_0; } inline void set_lumaTexture_0(RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 * value) { ___lumaTexture_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___lumaTexture_0), (void*)value); } inline static int32_t get_offset_of_chromaTexture_1() { return static_cast<int32_t>(offsetof(Frame_t6E5425A32B627B657C530E84626768BC9F53006E, ___chromaTexture_1)); } inline RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 * get_chromaTexture_1() const { return ___chromaTexture_1; } inline RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 ** get_address_of_chromaTexture_1() { return &___chromaTexture_1; } inline void set_chromaTexture_1(RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 * value) { ___chromaTexture_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___chromaTexture_1), (void*)value); } inline static int32_t get_offset_of_m_Time_2() { return static_cast<int32_t>(offsetof(Frame_t6E5425A32B627B657C530E84626768BC9F53006E, ___m_Time_2)); } inline float get_m_Time_2() const { return ___m_Time_2; } inline float* get_address_of_m_Time_2() { return &___m_Time_2; } inline void set_m_Time_2(float value) { ___m_Time_2 = value; } inline static int32_t get_offset_of_m_MRT_3() { return static_cast<int32_t>(offsetof(Frame_t6E5425A32B627B657C530E84626768BC9F53006E, ___m_MRT_3)); } inline RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4* get_m_MRT_3() const { return ___m_MRT_3; } inline RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4** get_address_of_m_MRT_3() { return &___m_MRT_3; } inline void set_m_MRT_3(RenderTargetIdentifierU5BU5D_t57069CA3F97B36638E39044168D1BEB956436DD4* value) { ___m_MRT_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_MRT_3), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.MotionBlurComponent/FrameBlendingFilter/Frame struct Frame_t6E5425A32B627B657C530E84626768BC9F53006E_marshaled_pinvoke { RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 * ___lumaTexture_0; RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 * ___chromaTexture_1; float ___m_Time_2; RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B * ___m_MRT_3; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.MotionBlurComponent/FrameBlendingFilter/Frame struct Frame_t6E5425A32B627B657C530E84626768BC9F53006E_marshaled_com { RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 * ___lumaTexture_0; RenderTexture_tBC47D853E3DA6511CD6C49DBF78D47B890FCD2F6 * ___chromaTexture_1; float ___m_Time_2; RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B * ___m_MRT_3; }; // UnityEngine.PostProcessing.MotionBlurModel_Settings struct Settings_t6272550371AE697276AC2B9E97B10C20531B4A02 { public: // System.Single UnityEngine.PostProcessing.MotionBlurModel_Settings::shutterAngle float ___shutterAngle_0; // System.Int32 UnityEngine.PostProcessing.MotionBlurModel_Settings::sampleCount int32_t ___sampleCount_1; // System.Single UnityEngine.PostProcessing.MotionBlurModel_Settings::frameBlending float ___frameBlending_2; public: inline static int32_t get_offset_of_shutterAngle_0() { return static_cast<int32_t>(offsetof(Settings_t6272550371AE697276AC2B9E97B10C20531B4A02, ___shutterAngle_0)); } inline float get_shutterAngle_0() const { return ___shutterAngle_0; } inline float* get_address_of_shutterAngle_0() { return &___shutterAngle_0; } inline void set_shutterAngle_0(float value) { ___shutterAngle_0 = value; } inline static int32_t get_offset_of_sampleCount_1() { return static_cast<int32_t>(offsetof(Settings_t6272550371AE697276AC2B9E97B10C20531B4A02, ___sampleCount_1)); } inline int32_t get_sampleCount_1() const { return ___sampleCount_1; } inline int32_t* get_address_of_sampleCount_1() { return &___sampleCount_1; } inline void set_sampleCount_1(int32_t value) { ___sampleCount_1 = value; } inline static int32_t get_offset_of_frameBlending_2() { return static_cast<int32_t>(offsetof(Settings_t6272550371AE697276AC2B9E97B10C20531B4A02, ___frameBlending_2)); } inline float get_frameBlending_2() const { return ___frameBlending_2; } inline float* get_address_of_frameBlending_2() { return &___frameBlending_2; } inline void set_frameBlending_2(float value) { ___frameBlending_2 = value; } }; // UnityEngine.PostProcessing.ScreenSpaceReflectionModel_IntensitySettings struct IntensitySettings_tBF0EB1716740BB43A3A2E99806F9BC18D65DB087 { public: // System.Single UnityEngine.PostProcessing.ScreenSpaceReflectionModel_IntensitySettings::reflectionMultiplier float ___reflectionMultiplier_0; // System.Single UnityEngine.PostProcessing.ScreenSpaceReflectionModel_IntensitySettings::fadeDistance float ___fadeDistance_1; // System.Single UnityEngine.PostProcessing.ScreenSpaceReflectionModel_IntensitySettings::fresnelFade float ___fresnelFade_2; // System.Single UnityEngine.PostProcessing.ScreenSpaceReflectionModel_IntensitySettings::fresnelFadePower float ___fresnelFadePower_3; public: inline static int32_t get_offset_of_reflectionMultiplier_0() { return static_cast<int32_t>(offsetof(IntensitySettings_tBF0EB1716740BB43A3A2E99806F9BC18D65DB087, ___reflectionMultiplier_0)); } inline float get_reflectionMultiplier_0() const { return ___reflectionMultiplier_0; } inline float* get_address_of_reflectionMultiplier_0() { return &___reflectionMultiplier_0; } inline void set_reflectionMultiplier_0(float value) { ___reflectionMultiplier_0 = value; } inline static int32_t get_offset_of_fadeDistance_1() { return static_cast<int32_t>(offsetof(IntensitySettings_tBF0EB1716740BB43A3A2E99806F9BC18D65DB087, ___fadeDistance_1)); } inline float get_fadeDistance_1() const { return ___fadeDistance_1; } inline float* get_address_of_fadeDistance_1() { return &___fadeDistance_1; } inline void set_fadeDistance_1(float value) { ___fadeDistance_1 = value; } inline static int32_t get_offset_of_fresnelFade_2() { return static_cast<int32_t>(offsetof(IntensitySettings_tBF0EB1716740BB43A3A2E99806F9BC18D65DB087, ___fresnelFade_2)); } inline float get_fresnelFade_2() const { return ___fresnelFade_2; } inline float* get_address_of_fresnelFade_2() { return &___fresnelFade_2; } inline void set_fresnelFade_2(float value) { ___fresnelFade_2 = value; } inline static int32_t get_offset_of_fresnelFadePower_3() { return static_cast<int32_t>(offsetof(IntensitySettings_tBF0EB1716740BB43A3A2E99806F9BC18D65DB087, ___fresnelFadePower_3)); } inline float get_fresnelFadePower_3() const { return ___fresnelFadePower_3; } inline float* get_address_of_fresnelFadePower_3() { return &___fresnelFadePower_3; } inline void set_fresnelFadePower_3(float value) { ___fresnelFadePower_3 = value; } }; // UnityEngine.PostProcessing.ScreenSpaceReflectionModel_ScreenEdgeMask struct ScreenEdgeMask_t94FB1CC384B7C414838A714400DF33EE0F26C468 { public: // System.Single UnityEngine.PostProcessing.ScreenSpaceReflectionModel_ScreenEdgeMask::intensity float ___intensity_0; public: inline static int32_t get_offset_of_intensity_0() { return static_cast<int32_t>(offsetof(ScreenEdgeMask_t94FB1CC384B7C414838A714400DF33EE0F26C468, ___intensity_0)); } inline float get_intensity_0() const { return ___intensity_0; } inline float* get_address_of_intensity_0() { return &___intensity_0; } inline void set_intensity_0(float value) { ___intensity_0 = value; } }; // UnityEngine.PostProcessing.UserLutModel_Settings struct Settings_t89579C94217BC0734AF7DE292787FC983E2B4313 { public: // UnityEngine.Texture2D UnityEngine.PostProcessing.UserLutModel_Settings::lut Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___lut_0; // System.Single UnityEngine.PostProcessing.UserLutModel_Settings::contribution float ___contribution_1; public: inline static int32_t get_offset_of_lut_0() { return static_cast<int32_t>(offsetof(Settings_t89579C94217BC0734AF7DE292787FC983E2B4313, ___lut_0)); } inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_lut_0() const { return ___lut_0; } inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_lut_0() { return &___lut_0; } inline void set_lut_0(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value) { ___lut_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___lut_0), (void*)value); } inline static int32_t get_offset_of_contribution_1() { return static_cast<int32_t>(offsetof(Settings_t89579C94217BC0734AF7DE292787FC983E2B4313, ___contribution_1)); } inline float get_contribution_1() const { return ___contribution_1; } inline float* get_address_of_contribution_1() { return &___contribution_1; } inline void set_contribution_1(float value) { ___contribution_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.UserLutModel/Settings struct Settings_t89579C94217BC0734AF7DE292787FC983E2B4313_marshaled_pinvoke { Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___lut_0; float ___contribution_1; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.UserLutModel/Settings struct Settings_t89579C94217BC0734AF7DE292787FC983E2B4313_marshaled_com { Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___lut_0; float ___contribution_1; }; // UnityEngine.Quaternion struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 { 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_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___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_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___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_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___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_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___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_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields { public: // UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___identityQuaternion_4; public: inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields, ___identityQuaternion_4)); } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_identityQuaternion_4() const { return ___identityQuaternion_4; } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; } inline void set_identityQuaternion_4(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value) { ___identityQuaternion_4 = value; } }; // UnityEngine.RangeInt struct RangeInt_t4480955B65C346F1B3A7A8AB74693AAB84D2988D { public: // System.Int32 UnityEngine.RangeInt::start int32_t ___start_0; // System.Int32 UnityEngine.RangeInt::length int32_t ___length_1; public: inline static int32_t get_offset_of_start_0() { return static_cast<int32_t>(offsetof(RangeInt_t4480955B65C346F1B3A7A8AB74693AAB84D2988D, ___start_0)); } inline int32_t get_start_0() const { return ___start_0; } inline int32_t* get_address_of_start_0() { return &___start_0; } inline void set_start_0(int32_t value) { ___start_0 = value; } inline static int32_t get_offset_of_length_1() { return static_cast<int32_t>(offsetof(RangeInt_t4480955B65C346F1B3A7A8AB74693AAB84D2988D, ___length_1)); } inline int32_t get_length_1() const { return ___length_1; } inline int32_t* get_address_of_length_1() { return &___length_1; } inline void set_length_1(int32_t value) { ___length_1 = value; } }; // UnityEngine.Rect struct Rect_t35B976DE901B5423C11705E156938EA27AB402CE { public: // System.Single UnityEngine.Rect::m_XMin float ___m_XMin_0; // System.Single UnityEngine.Rect::m_YMin float ___m_YMin_1; // System.Single UnityEngine.Rect::m_Width float ___m_Width_2; // System.Single UnityEngine.Rect::m_Height float ___m_Height_3; public: inline static int32_t get_offset_of_m_XMin_0() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_XMin_0)); } inline float get_m_XMin_0() const { return ___m_XMin_0; } inline float* get_address_of_m_XMin_0() { return &___m_XMin_0; } inline void set_m_XMin_0(float value) { ___m_XMin_0 = value; } inline static int32_t get_offset_of_m_YMin_1() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_YMin_1)); } inline float get_m_YMin_1() const { return ___m_YMin_1; } inline float* get_address_of_m_YMin_1() { return &___m_YMin_1; } inline void set_m_YMin_1(float value) { ___m_YMin_1 = value; } inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_Width_2)); } inline float get_m_Width_2() const { return ___m_Width_2; } inline float* get_address_of_m_Width_2() { return &___m_Width_2; } inline void set_m_Width_2(float value) { ___m_Width_2 = value; } inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_Height_3)); } inline float get_m_Height_3() const { return ___m_Height_3; } inline float* get_address_of_m_Height_3() { return &___m_Height_3; } inline void set_m_Height_3(float value) { ___m_Height_3 = value; } }; // UnityEngine.RectInt struct RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A { public: // System.Int32 UnityEngine.RectInt::m_XMin int32_t ___m_XMin_0; // System.Int32 UnityEngine.RectInt::m_YMin int32_t ___m_YMin_1; // System.Int32 UnityEngine.RectInt::m_Width int32_t ___m_Width_2; // System.Int32 UnityEngine.RectInt::m_Height int32_t ___m_Height_3; public: inline static int32_t get_offset_of_m_XMin_0() { return static_cast<int32_t>(offsetof(RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A, ___m_XMin_0)); } inline int32_t get_m_XMin_0() const { return ___m_XMin_0; } inline int32_t* get_address_of_m_XMin_0() { return &___m_XMin_0; } inline void set_m_XMin_0(int32_t value) { ___m_XMin_0 = value; } inline static int32_t get_offset_of_m_YMin_1() { return static_cast<int32_t>(offsetof(RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A, ___m_YMin_1)); } inline int32_t get_m_YMin_1() const { return ___m_YMin_1; } inline int32_t* get_address_of_m_YMin_1() { return &___m_YMin_1; } inline void set_m_YMin_1(int32_t value) { ___m_YMin_1 = value; } inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A, ___m_Width_2)); } inline int32_t get_m_Width_2() const { return ___m_Width_2; } inline int32_t* get_address_of_m_Width_2() { return &___m_Width_2; } inline void set_m_Width_2(int32_t value) { ___m_Width_2 = value; } inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A, ___m_Height_3)); } inline int32_t get_m_Height_3() const { return ___m_Height_3; } inline int32_t* get_address_of_m_Height_3() { return &___m_Height_3; } inline void set_m_Height_3(int32_t value) { ___m_Height_3 = value; } }; // UnityEngine.Rendering.BatchVisibility struct BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 { public: // System.Int32 UnityEngine.Rendering.BatchVisibility::offset int32_t ___offset_0; // System.Int32 UnityEngine.Rendering.BatchVisibility::instancesCount int32_t ___instancesCount_1; // System.Int32 UnityEngine.Rendering.BatchVisibility::visibleCount int32_t ___visibleCount_2; public: inline static int32_t get_offset_of_offset_0() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___offset_0)); } inline int32_t get_offset_0() const { return ___offset_0; } inline int32_t* get_address_of_offset_0() { return &___offset_0; } inline void set_offset_0(int32_t value) { ___offset_0 = value; } inline static int32_t get_offset_of_instancesCount_1() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___instancesCount_1)); } inline int32_t get_instancesCount_1() const { return ___instancesCount_1; } inline int32_t* get_address_of_instancesCount_1() { return &___instancesCount_1; } inline void set_instancesCount_1(int32_t value) { ___instancesCount_1 = value; } inline static int32_t get_offset_of_visibleCount_2() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___visibleCount_2)); } inline int32_t get_visibleCount_2() const { return ___visibleCount_2; } inline int32_t* get_address_of_visibleCount_2() { return &___visibleCount_2; } inline void set_visibleCount_2(int32_t value) { ___visibleCount_2 = value; } }; // UnityEngine.SceneManagement.Scene struct Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 { 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_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2, ___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.SendMouseEvents_HitInfo struct HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 { public: // UnityEngine.GameObject UnityEngine.SendMouseEvents_HitInfo::target GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0; // UnityEngine.Camera UnityEngine.SendMouseEvents_HitInfo::camera Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1; public: inline static int32_t get_offset_of_target_0() { return static_cast<int32_t>(offsetof(HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12, ___target_0)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_target_0() const { return ___target_0; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_target_0() { return &___target_0; } inline void set_target_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___target_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___target_0), (void*)value); } inline static int32_t get_offset_of_camera_1() { return static_cast<int32_t>(offsetof(HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12, ___camera_1)); } inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_camera_1() const { return ___camera_1; } inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_camera_1() { return &___camera_1; } inline void set_camera_1(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value) { ___camera_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___camera_1), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.SendMouseEvents/HitInfo struct HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_marshaled_pinvoke { GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0; Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1; }; // Native definition for COM marshalling of UnityEngine.SendMouseEvents/HitInfo struct HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_marshaled_com { GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0; Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1; }; // UnityEngine.Tilemaps.TileAnimationData struct TileAnimationData_t2A9C81AD1F3E916C2DE292A6F3953FC8C38EFDA8 { public: // UnityEngine.Sprite[] UnityEngine.Tilemaps.TileAnimationData::m_AnimatedSprites SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7* ___m_AnimatedSprites_0; // System.Single UnityEngine.Tilemaps.TileAnimationData::m_AnimationSpeed float ___m_AnimationSpeed_1; // System.Single UnityEngine.Tilemaps.TileAnimationData::m_AnimationStartTime float ___m_AnimationStartTime_2; public: inline static int32_t get_offset_of_m_AnimatedSprites_0() { return static_cast<int32_t>(offsetof(TileAnimationData_t2A9C81AD1F3E916C2DE292A6F3953FC8C38EFDA8, ___m_AnimatedSprites_0)); } inline SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7* get_m_AnimatedSprites_0() const { return ___m_AnimatedSprites_0; } inline SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7** get_address_of_m_AnimatedSprites_0() { return &___m_AnimatedSprites_0; } inline void set_m_AnimatedSprites_0(SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7* value) { ___m_AnimatedSprites_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_AnimatedSprites_0), (void*)value); } inline static int32_t get_offset_of_m_AnimationSpeed_1() { return static_cast<int32_t>(offsetof(TileAnimationData_t2A9C81AD1F3E916C2DE292A6F3953FC8C38EFDA8, ___m_AnimationSpeed_1)); } inline float get_m_AnimationSpeed_1() const { return ___m_AnimationSpeed_1; } inline float* get_address_of_m_AnimationSpeed_1() { return &___m_AnimationSpeed_1; } inline void set_m_AnimationSpeed_1(float value) { ___m_AnimationSpeed_1 = value; } inline static int32_t get_offset_of_m_AnimationStartTime_2() { return static_cast<int32_t>(offsetof(TileAnimationData_t2A9C81AD1F3E916C2DE292A6F3953FC8C38EFDA8, ___m_AnimationStartTime_2)); } inline float get_m_AnimationStartTime_2() const { return ___m_AnimationStartTime_2; } inline float* get_address_of_m_AnimationStartTime_2() { return &___m_AnimationStartTime_2; } inline void set_m_AnimationStartTime_2(float value) { ___m_AnimationStartTime_2 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Tilemaps.TileAnimationData struct TileAnimationData_t2A9C81AD1F3E916C2DE292A6F3953FC8C38EFDA8_marshaled_pinvoke { SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7* ___m_AnimatedSprites_0; float ___m_AnimationSpeed_1; float ___m_AnimationStartTime_2; }; // Native definition for COM marshalling of UnityEngine.Tilemaps.TileAnimationData struct TileAnimationData_t2A9C81AD1F3E916C2DE292A6F3953FC8C38EFDA8_marshaled_com { SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7* ___m_AnimatedSprites_0; float ___m_AnimationSpeed_1; float ___m_AnimationStartTime_2; }; // UnityEngine.UI.CoroutineTween.FloatTween struct FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A { public: // UnityEngine.UI.CoroutineTween.FloatTween_FloatTweenCallback UnityEngine.UI.CoroutineTween.FloatTween::m_Target FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * ___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_tF6BB24C266F36BD80E20C91AED453F7CE516919A, ___m_Target_0)); } inline FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * get_m_Target_0() const { return ___m_Target_0; } inline FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 ** get_address_of_m_Target_0() { return &___m_Target_0; } inline void set_m_Target_0(FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * 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_tF6BB24C266F36BD80E20C91AED453F7CE516919A, ___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_tF6BB24C266F36BD80E20C91AED453F7CE516919A, ___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_tF6BB24C266F36BD80E20C91AED453F7CE516919A, ___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_tF6BB24C266F36BD80E20C91AED453F7CE516919A, ___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_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshaled_pinvoke { FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * ___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_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshaled_com { FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * ___m_Target_0; float ___m_StartValue_1; float ___m_TargetValue_2; float ___m_Duration_3; int32_t ___m_IgnoreTimeScale_4; }; // UnityEngine.UI.DefaultControls_Resources struct Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 { public: // UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::standard Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___standard_0; // UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::background Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___background_1; // UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::inputField Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___inputField_2; // UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::knob Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___knob_3; // UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::checkmark Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___checkmark_4; // UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::dropdown Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___dropdown_5; // UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::mask Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___mask_6; public: inline static int32_t get_offset_of_standard_0() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___standard_0)); } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_standard_0() const { return ___standard_0; } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_standard_0() { return &___standard_0; } inline void set_standard_0(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value) { ___standard_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___standard_0), (void*)value); } inline static int32_t get_offset_of_background_1() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___background_1)); } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_background_1() const { return ___background_1; } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_background_1() { return &___background_1; } inline void set_background_1(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value) { ___background_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___background_1), (void*)value); } inline static int32_t get_offset_of_inputField_2() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___inputField_2)); } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_inputField_2() const { return ___inputField_2; } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_inputField_2() { return &___inputField_2; } inline void set_inputField_2(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value) { ___inputField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputField_2), (void*)value); } inline static int32_t get_offset_of_knob_3() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___knob_3)); } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_knob_3() const { return ___knob_3; } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_knob_3() { return &___knob_3; } inline void set_knob_3(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value) { ___knob_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___knob_3), (void*)value); } inline static int32_t get_offset_of_checkmark_4() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___checkmark_4)); } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_checkmark_4() const { return ___checkmark_4; } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_checkmark_4() { return &___checkmark_4; } inline void set_checkmark_4(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value) { ___checkmark_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___checkmark_4), (void*)value); } inline static int32_t get_offset_of_dropdown_5() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___dropdown_5)); } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_dropdown_5() const { return ___dropdown_5; } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_dropdown_5() { return &___dropdown_5; } inline void set_dropdown_5(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value) { ___dropdown_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___dropdown_5), (void*)value); } inline static int32_t get_offset_of_mask_6() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___mask_6)); } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_mask_6() const { return ___mask_6; } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_mask_6() { return &___mask_6; } inline void set_mask_6(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value) { ___mask_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___mask_6), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.UI.DefaultControls/Resources struct Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshaled_pinvoke { Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___standard_0; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___background_1; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___inputField_2; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___knob_3; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___checkmark_4; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___dropdown_5; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___mask_6; }; // Native definition for COM marshalling of UnityEngine.UI.DefaultControls/Resources struct Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshaled_com { Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___standard_0; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___background_1; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___inputField_2; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___knob_3; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___checkmark_4; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___dropdown_5; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___mask_6; }; // UnityEngine.UI.SpriteState struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A { public: // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_SelectedSprite Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3; public: inline static int32_t get_offset_of_m_HighlightedSprite_0() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_HighlightedSprite_0)); } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_HighlightedSprite_0() const { return ___m_HighlightedSprite_0; } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_HighlightedSprite_0() { return &___m_HighlightedSprite_0; } inline void set_m_HighlightedSprite_0(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value) { ___m_HighlightedSprite_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_HighlightedSprite_0), (void*)value); } inline static int32_t get_offset_of_m_PressedSprite_1() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_PressedSprite_1)); } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_PressedSprite_1() const { return ___m_PressedSprite_1; } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_PressedSprite_1() { return &___m_PressedSprite_1; } inline void set_m_PressedSprite_1(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value) { ___m_PressedSprite_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_PressedSprite_1), (void*)value); } inline static int32_t get_offset_of_m_SelectedSprite_2() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_SelectedSprite_2)); } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_SelectedSprite_2() const { return ___m_SelectedSprite_2; } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_SelectedSprite_2() { return &___m_SelectedSprite_2; } inline void set_m_SelectedSprite_2(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value) { ___m_SelectedSprite_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedSprite_2), (void*)value); } inline static int32_t get_offset_of_m_DisabledSprite_3() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_DisabledSprite_3)); } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_DisabledSprite_3() const { return ___m_DisabledSprite_3; } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_DisabledSprite_3() { return &___m_DisabledSprite_3; } inline void set_m_DisabledSprite_3(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value) { ___m_DisabledSprite_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DisabledSprite_3), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_pinvoke { Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3; }; // Native definition for COM marshalling of UnityEngine.UI.SpriteState struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_com { Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2; Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3; }; // UnityEngine.UILineInfo struct UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 { public: // System.Int32 UnityEngine.UILineInfo::startCharIdx int32_t ___startCharIdx_0; // System.Int32 UnityEngine.UILineInfo::height int32_t ___height_1; // System.Single UnityEngine.UILineInfo::topY float ___topY_2; // System.Single UnityEngine.UILineInfo::leading float ___leading_3; public: inline static int32_t get_offset_of_startCharIdx_0() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___startCharIdx_0)); } inline int32_t get_startCharIdx_0() const { return ___startCharIdx_0; } inline int32_t* get_address_of_startCharIdx_0() { return &___startCharIdx_0; } inline void set_startCharIdx_0(int32_t value) { ___startCharIdx_0 = value; } inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___height_1)); } inline int32_t get_height_1() const { return ___height_1; } inline int32_t* get_address_of_height_1() { return &___height_1; } inline void set_height_1(int32_t value) { ___height_1 = value; } inline static int32_t get_offset_of_topY_2() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___topY_2)); } inline float get_topY_2() const { return ___topY_2; } inline float* get_address_of_topY_2() { return &___topY_2; } inline void set_topY_2(float value) { ___topY_2 = value; } inline static int32_t get_offset_of_leading_3() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___leading_3)); } inline float get_leading_3() const { return ___leading_3; } inline float* get_address_of_leading_3() { return &___leading_3; } inline void set_leading_3(float value) { ___leading_3 = value; } }; // UnityEngine.UnitySynchronizationContext_WorkRequest struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 { public: // System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateCallback SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * ___m_DelagateCallback_0; // System.Object UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateState RuntimeObject * ___m_DelagateState_1; // System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext_WorkRequest::m_WaitHandle ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2; public: inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateCallback_0)); } inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; } inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; } inline void set_m_DelagateCallback_0(SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * value) { ___m_DelagateCallback_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateCallback_0), (void*)value); } inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateState_1)); } inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; } inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; } inline void set_m_DelagateState_1(RuntimeObject * value) { ___m_DelagateState_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateState_1), (void*)value); } inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_WaitHandle_2)); } inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; } inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; } inline void set_m_WaitHandle_2(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value) { ___m_WaitHandle_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_WaitHandle_2), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_pinvoke { Il2CppMethodPointer ___m_DelagateCallback_0; Il2CppIUnknown* ___m_DelagateState_1; ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2; }; // Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_com { Il2CppMethodPointer ___m_DelagateCallback_0; Il2CppIUnknown* ___m_DelagateState_1; ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2; }; // UnityEngine.Vector2 struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D { 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_tA85D2DD88578276CA8A8796756458277E72D073D, ___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_tA85D2DD88578276CA8A8796756458277E72D073D, ___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_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields { public: // UnityEngine.Vector2 UnityEngine.Vector2::zeroVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___zeroVector_2; // UnityEngine.Vector2 UnityEngine.Vector2::oneVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___oneVector_3; // UnityEngine.Vector2 UnityEngine.Vector2::upVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___upVector_4; // UnityEngine.Vector2 UnityEngine.Vector2::downVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___downVector_5; // UnityEngine.Vector2 UnityEngine.Vector2::leftVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___leftVector_6; // UnityEngine.Vector2 UnityEngine.Vector2::rightVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___rightVector_7; // UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___positiveInfinityVector_8; // UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___negativeInfinityVector_9; public: inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___zeroVector_2)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_zeroVector_2() const { return ___zeroVector_2; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_zeroVector_2() { return &___zeroVector_2; } inline void set_zeroVector_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___zeroVector_2 = value; } inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___oneVector_3)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_oneVector_3() const { return ___oneVector_3; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_oneVector_3() { return &___oneVector_3; } inline void set_oneVector_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___oneVector_3 = value; } inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___upVector_4)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_upVector_4() const { return ___upVector_4; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_upVector_4() { return &___upVector_4; } inline void set_upVector_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___upVector_4 = value; } inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___downVector_5)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_downVector_5() const { return ___downVector_5; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_downVector_5() { return &___downVector_5; } inline void set_downVector_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___downVector_5 = value; } inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___leftVector_6)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_leftVector_6() const { return ___leftVector_6; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_leftVector_6() { return &___leftVector_6; } inline void set_leftVector_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___leftVector_6 = value; } inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___rightVector_7)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_rightVector_7() const { return ___rightVector_7; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_rightVector_7() { return &___rightVector_7; } inline void set_rightVector_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___rightVector_7 = value; } inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___positiveInfinityVector_8)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; } inline void set_positiveInfinityVector_8(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___positiveInfinityVector_8 = value; } inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___negativeInfinityVector_9)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; } inline void set_negativeInfinityVector_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___negativeInfinityVector_9 = value; } }; // UnityEngine.Vector3 struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 { 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_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___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_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___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_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___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_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___zeroVector_5)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___oneVector_6)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_oneVector_6() const { return ___oneVector_6; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___upVector_7)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_upVector_7() const { return ___upVector_7; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___downVector_8)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_downVector_8() const { return ___downVector_8; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___leftVector_9)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_leftVector_9() const { return ___leftVector_9; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___rightVector_10)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_rightVector_10() const { return ___rightVector_10; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___forwardVector_11)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___backVector_12)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_backVector_12() const { return ___backVector_12; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___negativeInfinityVector_14 = value; } }; // UnityEngine.Vector3Int struct Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 { public: // System.Int32 UnityEngine.Vector3Int::m_X int32_t ___m_X_0; // System.Int32 UnityEngine.Vector3Int::m_Y int32_t ___m_Y_1; // System.Int32 UnityEngine.Vector3Int::m_Z int32_t ___m_Z_2; public: inline static int32_t get_offset_of_m_X_0() { return static_cast<int32_t>(offsetof(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4, ___m_X_0)); } inline int32_t get_m_X_0() const { return ___m_X_0; } inline int32_t* get_address_of_m_X_0() { return &___m_X_0; } inline void set_m_X_0(int32_t value) { ___m_X_0 = value; } inline static int32_t get_offset_of_m_Y_1() { return static_cast<int32_t>(offsetof(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4, ___m_Y_1)); } inline int32_t get_m_Y_1() const { return ___m_Y_1; } inline int32_t* get_address_of_m_Y_1() { return &___m_Y_1; } inline void set_m_Y_1(int32_t value) { ___m_Y_1 = value; } inline static int32_t get_offset_of_m_Z_2() { return static_cast<int32_t>(offsetof(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4, ___m_Z_2)); } inline int32_t get_m_Z_2() const { return ___m_Z_2; } inline int32_t* get_address_of_m_Z_2() { return &___m_Z_2; } inline void set_m_Z_2(int32_t value) { ___m_Z_2 = value; } }; struct Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_StaticFields { public: // UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Zero Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 ___s_Zero_3; // UnityEngine.Vector3Int UnityEngine.Vector3Int::s_One Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 ___s_One_4; // UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Up Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 ___s_Up_5; // UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Down Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 ___s_Down_6; // UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Left Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 ___s_Left_7; // UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Right Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 ___s_Right_8; public: inline static int32_t get_offset_of_s_Zero_3() { return static_cast<int32_t>(offsetof(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_StaticFields, ___s_Zero_3)); } inline Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 get_s_Zero_3() const { return ___s_Zero_3; } inline Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 * get_address_of_s_Zero_3() { return &___s_Zero_3; } inline void set_s_Zero_3(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 value) { ___s_Zero_3 = value; } inline static int32_t get_offset_of_s_One_4() { return static_cast<int32_t>(offsetof(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_StaticFields, ___s_One_4)); } inline Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 get_s_One_4() const { return ___s_One_4; } inline Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 * get_address_of_s_One_4() { return &___s_One_4; } inline void set_s_One_4(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 value) { ___s_One_4 = value; } inline static int32_t get_offset_of_s_Up_5() { return static_cast<int32_t>(offsetof(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_StaticFields, ___s_Up_5)); } inline Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 get_s_Up_5() const { return ___s_Up_5; } inline Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 * get_address_of_s_Up_5() { return &___s_Up_5; } inline void set_s_Up_5(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 value) { ___s_Up_5 = value; } inline static int32_t get_offset_of_s_Down_6() { return static_cast<int32_t>(offsetof(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_StaticFields, ___s_Down_6)); } inline Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 get_s_Down_6() const { return ___s_Down_6; } inline Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 * get_address_of_s_Down_6() { return &___s_Down_6; } inline void set_s_Down_6(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 value) { ___s_Down_6 = value; } inline static int32_t get_offset_of_s_Left_7() { return static_cast<int32_t>(offsetof(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_StaticFields, ___s_Left_7)); } inline Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 get_s_Left_7() const { return ___s_Left_7; } inline Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 * get_address_of_s_Left_7() { return &___s_Left_7; } inline void set_s_Left_7(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 value) { ___s_Left_7 = value; } inline static int32_t get_offset_of_s_Right_8() { return static_cast<int32_t>(offsetof(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_StaticFields, ___s_Right_8)); } inline Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 get_s_Right_8() const { return ___s_Right_8; } inline Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 * get_address_of_s_Right_8() { return &___s_Right_8; } inline void set_s_Right_8(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 value) { ___s_Right_8 = value; } }; // UnityEngine.Vector4 struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E { public: // System.Single UnityEngine.Vector4::x float ___x_1; // System.Single UnityEngine.Vector4::y float ___y_2; // System.Single UnityEngine.Vector4::z float ___z_3; // System.Single UnityEngine.Vector4::w float ___w_4; public: inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___x_1)); } inline float get_x_1() const { return ___x_1; } inline float* get_address_of_x_1() { return &___x_1; } inline void set_x_1(float value) { ___x_1 = value; } inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___y_2)); } inline float get_y_2() const { return ___y_2; } inline float* get_address_of_y_2() { return &___y_2; } inline void set_y_2(float value) { ___y_2 = value; } inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___z_3)); } inline float get_z_3() const { return ___z_3; } inline float* get_address_of_z_3() { return &___z_3; } inline void set_z_3(float value) { ___z_3 = value; } inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___w_4)); } inline float get_w_4() const { return ___w_4; } inline float* get_address_of_w_4() { return &___w_4; } inline void set_w_4(float value) { ___w_4 = value; } }; struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields { public: // UnityEngine.Vector4 UnityEngine.Vector4::zeroVector Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___zeroVector_5; // UnityEngine.Vector4 UnityEngine.Vector4::oneVector Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___oneVector_6; // UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___positiveInfinityVector_7; // UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___negativeInfinityVector_8; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___zeroVector_5)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_zeroVector_5() const { return ___zeroVector_5; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___oneVector_6)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_oneVector_6() const { return ___oneVector_6; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___positiveInfinityVector_7)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; } inline void set_positiveInfinityVector_7(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___positiveInfinityVector_7 = value; } inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___negativeInfinityVector_8)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; } inline void set_negativeInfinityVector_8(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___negativeInfinityVector_8 = value; } }; // UnityEngine.Windows.Speech.SemanticMeaning struct SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C { public: // System.String UnityEngine.Windows.Speech.SemanticMeaning::key String_t* ___key_0; // System.String[] UnityEngine.Windows.Speech.SemanticMeaning::values StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___values_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C, ___key_0)); } inline String_t* get_key_0() const { return ___key_0; } inline String_t** get_address_of_key_0() { return &___key_0; } inline void set_key_0(String_t* value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_values_1() { return static_cast<int32_t>(offsetof(SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C, ___values_1)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_values_1() const { return ___values_1; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_values_1() { return &___values_1; } inline void set_values_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___values_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_1), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.Windows.Speech.SemanticMeaning struct SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_marshaled_pinvoke { char* ___key_0; char** ___values_1; }; // Native definition for COM marshalling of UnityEngine.Windows.Speech.SemanticMeaning struct SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_marshaled_com { Il2CppChar* ___key_0; Il2CppChar** ___values_1; }; // UnityEngine.XR.Bone struct Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 { public: // System.UInt64 UnityEngine.XR.Bone::m_DeviceId uint64_t ___m_DeviceId_0; // System.UInt32 UnityEngine.XR.Bone::m_FeatureIndex uint32_t ___m_FeatureIndex_1; public: inline static int32_t get_offset_of_m_DeviceId_0() { return static_cast<int32_t>(offsetof(Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0, ___m_DeviceId_0)); } inline uint64_t get_m_DeviceId_0() const { return ___m_DeviceId_0; } inline uint64_t* get_address_of_m_DeviceId_0() { return &___m_DeviceId_0; } inline void set_m_DeviceId_0(uint64_t value) { ___m_DeviceId_0 = value; } inline static int32_t get_offset_of_m_FeatureIndex_1() { return static_cast<int32_t>(offsetof(Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0, ___m_FeatureIndex_1)); } inline uint32_t get_m_FeatureIndex_1() const { return ___m_FeatureIndex_1; } inline uint32_t* get_address_of_m_FeatureIndex_1() { return &___m_FeatureIndex_1; } inline void set_m_FeatureIndex_1(uint32_t value) { ___m_FeatureIndex_1 = value; } }; // UnityEngine.XR.Eyes struct Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 { public: // System.UInt64 UnityEngine.XR.Eyes::m_DeviceId uint64_t ___m_DeviceId_0; // System.UInt32 UnityEngine.XR.Eyes::m_FeatureIndex uint32_t ___m_FeatureIndex_1; public: inline static int32_t get_offset_of_m_DeviceId_0() { return static_cast<int32_t>(offsetof(Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5, ___m_DeviceId_0)); } inline uint64_t get_m_DeviceId_0() const { return ___m_DeviceId_0; } inline uint64_t* get_address_of_m_DeviceId_0() { return &___m_DeviceId_0; } inline void set_m_DeviceId_0(uint64_t value) { ___m_DeviceId_0 = value; } inline static int32_t get_offset_of_m_FeatureIndex_1() { return static_cast<int32_t>(offsetof(Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5, ___m_FeatureIndex_1)); } inline uint32_t get_m_FeatureIndex_1() const { return ___m_FeatureIndex_1; } inline uint32_t* get_address_of_m_FeatureIndex_1() { return &___m_FeatureIndex_1; } inline void set_m_FeatureIndex_1(uint32_t value) { ___m_FeatureIndex_1 = value; } }; // UnityEngine.XR.Hand struct Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 { public: // System.UInt64 UnityEngine.XR.Hand::m_DeviceId uint64_t ___m_DeviceId_0; // System.UInt32 UnityEngine.XR.Hand::m_FeatureIndex uint32_t ___m_FeatureIndex_1; public: inline static int32_t get_offset_of_m_DeviceId_0() { return static_cast<int32_t>(offsetof(Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3, ___m_DeviceId_0)); } inline uint64_t get_m_DeviceId_0() const { return ___m_DeviceId_0; } inline uint64_t* get_address_of_m_DeviceId_0() { return &___m_DeviceId_0; } inline void set_m_DeviceId_0(uint64_t value) { ___m_DeviceId_0 = value; } inline static int32_t get_offset_of_m_FeatureIndex_1() { return static_cast<int32_t>(offsetof(Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3, ___m_FeatureIndex_1)); } inline uint32_t get_m_FeatureIndex_1() const { return ___m_FeatureIndex_1; } inline uint32_t* get_address_of_m_FeatureIndex_1() { return &___m_FeatureIndex_1; } inline void set_m_FeatureIndex_1(uint32_t value) { ___m_FeatureIndex_1 = value; } }; // UnityEngine.XR.WSA.Input.GestureErrorEventArgs struct GestureErrorEventArgs_tE93CF2521799DC9320F0B7A32C4CE279DC24E80C { public: // System.String UnityEngine.XR.WSA.Input.GestureErrorEventArgs::<error>k__BackingField String_t* ___U3CerrorU3Ek__BackingField_0; // System.Int32 UnityEngine.XR.WSA.Input.GestureErrorEventArgs::<hresult>k__BackingField int32_t ___U3ChresultU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CerrorU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(GestureErrorEventArgs_tE93CF2521799DC9320F0B7A32C4CE279DC24E80C, ___U3CerrorU3Ek__BackingField_0)); } inline String_t* get_U3CerrorU3Ek__BackingField_0() const { return ___U3CerrorU3Ek__BackingField_0; } inline String_t** get_address_of_U3CerrorU3Ek__BackingField_0() { return &___U3CerrorU3Ek__BackingField_0; } inline void set_U3CerrorU3Ek__BackingField_0(String_t* value) { ___U3CerrorU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CerrorU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3ChresultU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(GestureErrorEventArgs_tE93CF2521799DC9320F0B7A32C4CE279DC24E80C, ___U3ChresultU3Ek__BackingField_1)); } inline int32_t get_U3ChresultU3Ek__BackingField_1() const { return ___U3ChresultU3Ek__BackingField_1; } inline int32_t* get_address_of_U3ChresultU3Ek__BackingField_1() { return &___U3ChresultU3Ek__BackingField_1; } inline void set_U3ChresultU3Ek__BackingField_1(int32_t value) { ___U3ChresultU3Ek__BackingField_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.XR.WSA.Input.GestureErrorEventArgs struct GestureErrorEventArgs_tE93CF2521799DC9320F0B7A32C4CE279DC24E80C_marshaled_pinvoke { char* ___U3CerrorU3Ek__BackingField_0; int32_t ___U3ChresultU3Ek__BackingField_1; }; // Native definition for COM marshalling of UnityEngine.XR.WSA.Input.GestureErrorEventArgs struct GestureErrorEventArgs_tE93CF2521799DC9320F0B7A32C4CE279DC24E80C_marshaled_com { Il2CppChar* ___U3CerrorU3Ek__BackingField_0; int32_t ___U3ChresultU3Ek__BackingField_1; }; // UnityEngine.XR.WSA.SurfaceId struct SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF { public: // System.Int32 UnityEngine.XR.WSA.SurfaceId::handle int32_t ___handle_0; public: inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF, ___handle_0)); } inline int32_t get_handle_0() const { return ___handle_0; } inline int32_t* get_address_of_handle_0() { return &___handle_0; } inline void set_handle_0(int32_t value) { ___handle_0 = value; } }; // UnityEngine.Yoga.YogaSize struct YogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23 { public: // System.Single UnityEngine.Yoga.YogaSize::width float ___width_0; // System.Single UnityEngine.Yoga.YogaSize::height float ___height_1; public: inline static int32_t get_offset_of_width_0() { return static_cast<int32_t>(offsetof(YogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23, ___width_0)); } inline float get_width_0() const { return ___width_0; } inline float* get_address_of_width_0() { return &___width_0; } inline void set_width_0(float value) { ___width_0 = value; } inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(YogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23, ___height_1)); } inline float get_height_1() const { return ___height_1; } inline float* get_address_of_height_1() { return &___height_1; } inline void set_height_1(float value) { ___height_1 = value; } }; // Invector.BoxPoint struct BoxPoint_t0DB72B4BFF55B92502866B73D47DCBECE6B08B32 { public: // UnityEngine.Vector3 Invector.BoxPoint::top Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___top_0; // UnityEngine.Vector3 Invector.BoxPoint::center Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___center_1; // UnityEngine.Vector3 Invector.BoxPoint::bottom Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottom_2; public: inline static int32_t get_offset_of_top_0() { return static_cast<int32_t>(offsetof(BoxPoint_t0DB72B4BFF55B92502866B73D47DCBECE6B08B32, ___top_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_top_0() const { return ___top_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_top_0() { return &___top_0; } inline void set_top_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___top_0 = value; } inline static int32_t get_offset_of_center_1() { return static_cast<int32_t>(offsetof(BoxPoint_t0DB72B4BFF55B92502866B73D47DCBECE6B08B32, ___center_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_center_1() const { return ___center_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_center_1() { return &___center_1; } inline void set_center_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___center_1 = value; } inline static int32_t get_offset_of_bottom_2() { return static_cast<int32_t>(offsetof(BoxPoint_t0DB72B4BFF55B92502866B73D47DCBECE6B08B32, ___bottom_2)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_bottom_2() const { return ___bottom_2; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_bottom_2() { return &___bottom_2; } inline void set_bottom_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___bottom_2 = value; } }; // Invector.ClipPlanePoints struct ClipPlanePoints_t20AE479CE67DB28A40559835C3B4E444F20CD717 { public: // UnityEngine.Vector3 Invector.ClipPlanePoints::UpperLeft Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___UpperLeft_0; // UnityEngine.Vector3 Invector.ClipPlanePoints::UpperRight Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___UpperRight_1; // UnityEngine.Vector3 Invector.ClipPlanePoints::LowerLeft Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LowerLeft_2; // UnityEngine.Vector3 Invector.ClipPlanePoints::LowerRight Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LowerRight_3; public: inline static int32_t get_offset_of_UpperLeft_0() { return static_cast<int32_t>(offsetof(ClipPlanePoints_t20AE479CE67DB28A40559835C3B4E444F20CD717, ___UpperLeft_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_UpperLeft_0() const { return ___UpperLeft_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_UpperLeft_0() { return &___UpperLeft_0; } inline void set_UpperLeft_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___UpperLeft_0 = value; } inline static int32_t get_offset_of_UpperRight_1() { return static_cast<int32_t>(offsetof(ClipPlanePoints_t20AE479CE67DB28A40559835C3B4E444F20CD717, ___UpperRight_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_UpperRight_1() const { return ___UpperRight_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_UpperRight_1() { return &___UpperRight_1; } inline void set_UpperRight_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___UpperRight_1 = value; } inline static int32_t get_offset_of_LowerLeft_2() { return static_cast<int32_t>(offsetof(ClipPlanePoints_t20AE479CE67DB28A40559835C3B4E444F20CD717, ___LowerLeft_2)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_LowerLeft_2() const { return ___LowerLeft_2; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_LowerLeft_2() { return &___LowerLeft_2; } inline void set_LowerLeft_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___LowerLeft_2 = value; } inline static int32_t get_offset_of_LowerRight_3() { return static_cast<int32_t>(offsetof(ClipPlanePoints_t20AE479CE67DB28A40559835C3B4E444F20CD717, ___LowerRight_3)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_LowerRight_3() const { return ___LowerRight_3; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_LowerRight_3() { return &___LowerRight_3; } inline void set_LowerRight_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___LowerRight_3 = value; } }; // Mono.RuntimeEventHandle struct RuntimeEventHandle_tE5D1932AECB9CB753494050E033F25584E3693A9 { public: // System.IntPtr Mono.RuntimeEventHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeEventHandle_tE5D1932AECB9CB753494050E033F25584E3693A9, ___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; } }; // Mono.RuntimePropertyHandle struct RuntimePropertyHandle_tFFD677B19D1E7D3E4B66A0C086E051AC52C34DCB { public: // System.IntPtr Mono.RuntimePropertyHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimePropertyHandle_tFFD677B19D1E7D3E4B66A0C086E051AC52C34DCB, ___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; } }; // Mono.SafeStringMarshal struct SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F { public: // System.String Mono.SafeStringMarshal::str String_t* ___str_0; // System.IntPtr Mono.SafeStringMarshal::marshaled_string intptr_t ___marshaled_string_1; public: inline static int32_t get_offset_of_str_0() { return static_cast<int32_t>(offsetof(SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F, ___str_0)); } inline String_t* get_str_0() const { return ___str_0; } inline String_t** get_address_of_str_0() { return &___str_0; } inline void set_str_0(String_t* value) { ___str_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___str_0), (void*)value); } inline static int32_t get_offset_of_marshaled_string_1() { return static_cast<int32_t>(offsetof(SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F, ___marshaled_string_1)); } inline intptr_t get_marshaled_string_1() const { return ___marshaled_string_1; } inline intptr_t* get_address_of_marshaled_string_1() { return &___marshaled_string_1; } inline void set_marshaled_string_1(intptr_t value) { ___marshaled_string_1 = value; } }; // Native definition for P/Invoke marshalling of Mono.SafeStringMarshal struct SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F_marshaled_pinvoke { char* ___str_0; intptr_t ___marshaled_string_1; }; // Native definition for COM marshalling of Mono.SafeStringMarshal struct SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F_marshaled_com { Il2CppChar* ___str_0; intptr_t ___marshaled_string_1; }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator> struct Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___value_3)); } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_3() const { return ___value_3; } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_3() { return &___value_3; } inline void set_value_3(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->____value_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object> struct Entry_t687188C87EF1FD0D50038E634676DBC449857B8E { 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 TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA ___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_t687188C87EF1FD0D50038E634676DBC449857B8E, ___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_t687188C87EF1FD0D50038E634676DBC449857B8E, ___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_t687188C87EF1FD0D50038E634676DBC449857B8E, ___key_2)); } inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA get_key_2() const { return ___key_2; } inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA * get_address_of_key_2() { return &___key_2; } inline void set_key_2(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t687188C87EF1FD0D50038E634676DBC449857B8E, ___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_Enumerator<System.Int32,System.Object> struct Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___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_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 ___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_t72A8231827DB93FC8B25F08FF066377F7B773DA1, ___dictionary_0)); } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * 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_t72A8231827DB93FC8B25F08FF066377F7B773DA1, ___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_t72A8231827DB93FC8B25F08FF066377F7B773DA1, ___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_t72A8231827DB93FC8B25F08FF066377F7B773DA1, ___current_3)); } inline KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 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_t72A8231827DB93FC8B25F08FF066377F7B773DA1, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Boolean> struct Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * ___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_tF975BF5238F06AC9CCA19111DD41484E071258C1 ___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_t635C134A2671CF22D2FF3CA9F05E125C187D457A, ___dictionary_0)); } inline Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * 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_t635C134A2671CF22D2FF3CA9F05E125C187D457A, ___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_t635C134A2671CF22D2FF3CA9F05E125C187D457A, ___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_t635C134A2671CF22D2FF3CA9F05E125C187D457A, ___current_3)); } inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int32> struct Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___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_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___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_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___dictionary_0)); } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * 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_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___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_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___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_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___current_3)); } inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E get_current_3() const { return ___current_3; } inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Object> struct Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___dictionary_0)); } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___current_3)); } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE get_current_3() const { return ___current_3; } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object> struct Enumerator_t0DC3BBA5793B11A8C80B91E444D9364F648D3CC0 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::dictionary Dictionary_2_t283EECF1507E23DEAA390A103471739BF608C018 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2_KeyCollection_Enumerator::currentKey TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t0DC3BBA5793B11A8C80B91E444D9364F648D3CC0, ___dictionary_0)); } inline Dictionary_2_t283EECF1507E23DEAA390A103471739BF608C018 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t283EECF1507E23DEAA390A103471739BF608C018 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t283EECF1507E23DEAA390A103471739BF608C018 * 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_t0DC3BBA5793B11A8C80B91E444D9364F648D3CC0, ___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_t0DC3BBA5793B11A8C80B91E444D9364F648D3CC0, ___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_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t0DC3BBA5793B11A8C80B91E444D9364F648D3CC0, ___currentKey_3)); } inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA get_currentKey_3() const { return ___currentKey_3; } inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA * get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Resources.ResourceLocator> struct Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___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 ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1, ___dictionary_0)); } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1, ___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_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1, ___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_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1, ___currentValue_3)); } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_currentValue_3() const { return ___currentValue_3; } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->____value_0), (void*)NULL); } }; // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object> struct KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B { public: // TKey System.Collections.Generic.KeyValuePair`2::key DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___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_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___key_0)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_key_0() const { return ___key_0; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_key_0() { return &___key_0; } inline void set_key_0(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator> struct KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___value_1)); } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_1() const { return ___value_1; } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_1() { return &___value_1; } inline void set_value_1(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->____value_0), (void*)NULL); } }; // System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object> struct KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 { public: // TKey System.Collections.Generic.KeyValuePair`2::key TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA ___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_tBF49E6D84C3874E47C1681064699318B6BBA4A27, ___key_0)); } inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA get_key_0() const { return ___key_0; } inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA * get_address_of_key_0() { return &___key_0; } inline void set_key_0(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<UnityEngine.BeforeRenderHelper_OrderBlock> struct Enumerator_tEB4831BF749196828927D05E6467255EFEE20323 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t53AD896B2509A4686D143641030CF022753D3B04 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tEB4831BF749196828927D05E6467255EFEE20323, ___list_0)); } inline List_1_t53AD896B2509A4686D143641030CF022753D3B04 * get_list_0() const { return ___list_0; } inline List_1_t53AD896B2509A4686D143641030CF022753D3B04 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t53AD896B2509A4686D143641030CF022753D3B04 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tEB4831BF749196828927D05E6467255EFEE20323, ___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_tEB4831BF749196828927D05E6467255EFEE20323, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tEB4831BF749196828927D05E6467255EFEE20323, ___current_3)); } inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 get_current_3() const { return ___current_3; } inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___callback_1), (void*)NULL); } }; // System.Collections.Generic.List`1_Enumerator<UnityEngine.Color32> struct Enumerator_t76470F82B2EDDF9F880C98421781A48D36D3382A { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t76470F82B2EDDF9F880C98421781A48D36D3382A, ___list_0)); } inline List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 * get_list_0() const { return ___list_0; } inline List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t76470F82B2EDDF9F880C98421781A48D36D3382A, ___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_t76470F82B2EDDF9F880C98421781A48D36D3382A, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t76470F82B2EDDF9F880C98421781A48D36D3382A, ___current_3)); } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_current_3() const { return ___current_3; } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value) { ___current_3 = value; } }; // System.Collections.Generic.List`1_Enumerator<UnityEngine.UILineInfo> struct Enumerator_tD8CA6910C75C5AD8FF6B3018C967A8E2431038AA { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t7687D8368357F4437252DC75BFCE9DE76F3143A0 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tD8CA6910C75C5AD8FF6B3018C967A8E2431038AA, ___list_0)); } inline List_1_t7687D8368357F4437252DC75BFCE9DE76F3143A0 * get_list_0() const { return ___list_0; } inline List_1_t7687D8368357F4437252DC75BFCE9DE76F3143A0 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t7687D8368357F4437252DC75BFCE9DE76F3143A0 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tD8CA6910C75C5AD8FF6B3018C967A8E2431038AA, ___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_tD8CA6910C75C5AD8FF6B3018C967A8E2431038AA, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tD8CA6910C75C5AD8FF6B3018C967A8E2431038AA, ___current_3)); } inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 get_current_3() const { return ___current_3; } inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 value) { ___current_3 = value; } }; // System.Collections.Generic.List`1_Enumerator<UnityEngine.UnitySynchronizationContext_WorkRequest> struct Enumerator_t94D816309F3FD251DEB3C5965B4AF0E87C0AF4C5 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t6E5C746AF7DE21972A905DE655062193862839D6 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t94D816309F3FD251DEB3C5965B4AF0E87C0AF4C5, ___list_0)); } inline List_1_t6E5C746AF7DE21972A905DE655062193862839D6 * get_list_0() const { return ___list_0; } inline List_1_t6E5C746AF7DE21972A905DE655062193862839D6 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t6E5C746AF7DE21972A905DE655062193862839D6 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t94D816309F3FD251DEB3C5965B4AF0E87C0AF4C5, ___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_t94D816309F3FD251DEB3C5965B4AF0E87C0AF4C5, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t94D816309F3FD251DEB3C5965B4AF0E87C0AF4C5, ___current_3)); } inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 get_current_3() const { return ___current_3; } inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_DelagateCallback_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_DelagateState_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_WaitHandle_2), (void*)NULL); #endif } }; // System.Collections.Generic.List`1_Enumerator<UnityEngine.Vector2> struct Enumerator_t789287D5EBA809F1FA53F5D5FB44744EA1E39EB3 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t789287D5EBA809F1FA53F5D5FB44744EA1E39EB3, ___list_0)); } inline List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * get_list_0() const { return ___list_0; } inline List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t789287D5EBA809F1FA53F5D5FB44744EA1E39EB3, ___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_t789287D5EBA809F1FA53F5D5FB44744EA1E39EB3, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t789287D5EBA809F1FA53F5D5FB44744EA1E39EB3, ___current_3)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_current_3() const { return ___current_3; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_current_3() { return &___current_3; } inline void set_current_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___current_3 = value; } }; // System.Collections.Generic.List`1_Enumerator<UnityEngine.Vector3> struct Enumerator_t1D6F1280D1286A07CA6B53EC40BD2936FAE0CD07 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1D6F1280D1286A07CA6B53EC40BD2936FAE0CD07, ___list_0)); } inline List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * get_list_0() const { return ___list_0; } inline List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1D6F1280D1286A07CA6B53EC40BD2936FAE0CD07, ___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_t1D6F1280D1286A07CA6B53EC40BD2936FAE0CD07, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1D6F1280D1286A07CA6B53EC40BD2936FAE0CD07, ___current_3)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_current_3() const { return ___current_3; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___current_3 = value; } }; // System.Collections.Generic.List`1_Enumerator<UnityEngine.Vector4> struct Enumerator_t57A9B34D1CE311AE479EFFD22D44DDD2C724A727 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t57A9B34D1CE311AE479EFFD22D44DDD2C724A727, ___list_0)); } inline List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 * get_list_0() const { return ___list_0; } inline List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t57A9B34D1CE311AE479EFFD22D44DDD2C724A727, ___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_t57A9B34D1CE311AE479EFFD22D44DDD2C724A727, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t57A9B34D1CE311AE479EFFD22D44DDD2C724A727, ___current_3)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_current_3() const { return ___current_3; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_current_3() { return &___current_3; } inline void set_current_3(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___current_3 = value; } }; // System.ConsoleKey struct ConsoleKey_t0196714F06D59B40580F7B85EA2663D81394682C { public: // System.Int32 System.ConsoleKey::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleKey_t0196714F06D59B40580F7B85EA2663D81394682C, ___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.ConsoleModifiers struct ConsoleModifiers_tCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34 { public: // System.Int32 System.ConsoleModifiers::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleModifiers_tCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34, ___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.DTSubStringType struct DTSubStringType_tA15E6919CA4FEC2739587ADF93B5F8D550A9BC4E { public: // System.Int32 System.DTSubStringType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DTSubStringType_tA15E6919CA4FEC2739587ADF93B5F8D550A9BC4E, ___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.DayOfWeek struct DayOfWeek_tE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8 { public: // System.Int32 System.DayOfWeek::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DayOfWeek_tE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Int32Enum struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD { public: // System.Int32 System.Int32Enum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.CallingConventions struct CallingConventions_t495B6EF267B118F780C044F96BCDE78C1982C147 { public: // System.Int32 System.Reflection.CallingConventions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CallingConventions_t495B6EF267B118F780C044F96BCDE78C1982C147, ___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.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E { public: // System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___typedArgument_0; // System.Reflection.MemberInfo System.Reflection.CustomAttributeNamedArgument::memberInfo MemberInfo_t * ___memberInfo_1; public: inline static int32_t get_offset_of_typedArgument_0() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, ___typedArgument_0)); } inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 get_typedArgument_0() const { return ___typedArgument_0; } inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * get_address_of_typedArgument_0() { return &___typedArgument_0; } inline void set_typedArgument_0(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value) { ___typedArgument_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___argumentType_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, ___memberInfo_1)); } inline MemberInfo_t * get_memberInfo_1() const { return ___memberInfo_1; } inline MemberInfo_t ** get_address_of_memberInfo_1() { return &___memberInfo_1; } inline void set_memberInfo_1(MemberInfo_t * value) { ___memberInfo_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___memberInfo_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_marshaled_pinvoke { CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_pinvoke ___typedArgument_0; MemberInfo_t * ___memberInfo_1; }; // Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_marshaled_com { CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_com ___typedArgument_0; MemberInfo_t * ___memberInfo_1; }; // System.Reflection.EventAttributes struct EventAttributes_t3D11D609EB01DAF43E68D003DC63C0455C206FAF { public: // System.Int32 System.Reflection.EventAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventAttributes_t3D11D609EB01DAF43E68D003DC63C0455C206FAF, ___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.MethodAttributes struct MethodAttributes_tBEF3274421B682BFF8D0FF0BEA84C8FD9D63F202 { public: // System.Int32 System.Reflection.MethodAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MethodAttributes_tBEF3274421B682BFF8D0FF0BEA84C8FD9D63F202, ___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.MethodImplAttributes struct MethodImplAttributes_tBFAD430267FCF0F168BF37FFDA5F43B4CA95172E { public: // System.Int32 System.Reflection.MethodImplAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MethodImplAttributes_tBFAD430267FCF0F168BF37FFDA5F43B4CA95172E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean> struct AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE { public: // System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 ___m_coreState_1; // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___m_task_2; public: inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE, ___m_coreState_1)); } inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 get_m_coreState_1() const { return ___m_coreState_1; } inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * get_address_of_m_coreState_1() { return &___m_coreState_1; } inline void set_m_coreState_1(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 value) { ___m_coreState_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE, ___m_task_2)); } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * get_m_task_2() const { return ___m_task_2; } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 ** get_address_of_m_task_2() { return &___m_task_2; } inline void set_m_task_2(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * value) { ___m_task_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_2), (void*)value); } }; struct AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE_StaticFields { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___s_defaultResultTask_0; public: inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE_StaticFields, ___s_defaultResultTask_0)); } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; } inline void set_s_defaultResultTask_0(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * value) { ___s_defaultResultTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_defaultResultTask_0), (void*)value); } }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object> struct AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 { public: // System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 ___m_coreState_1; // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___m_task_2; public: inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663, ___m_coreState_1)); } inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 get_m_coreState_1() const { return ___m_coreState_1; } inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * get_address_of_m_coreState_1() { return &___m_coreState_1; } inline void set_m_coreState_1(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 value) { ___m_coreState_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663, ___m_task_2)); } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * get_m_task_2() const { return ___m_task_2; } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 ** get_address_of_m_task_2() { return &___m_task_2; } inline void set_m_task_2(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * value) { ___m_task_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_2), (void*)value); } }; struct AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663_StaticFields { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___s_defaultResultTask_0; public: inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663_StaticFields, ___s_defaultResultTask_0)); } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; } inline void set_s_defaultResultTask_0(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * value) { ___s_defaultResultTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_defaultResultTask_0), (void*)value); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean> struct ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 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_t10E65A50D6EC08956E9F550CD64330F4DED0D38A { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E 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_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E 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_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F { public: // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeFieldHandle struct RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF { public: // System.IntPtr System.RuntimeFieldHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.RuntimeMethodHandle struct RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F { public: // System.IntPtr System.RuntimeMethodHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.Threading.CancellationTokenRegistration struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 { public: // System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenRegistration::m_callbackInfo CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0; // System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationTokenRegistration::m_registrationInfo SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1; public: inline static int32_t get_offset_of_m_callbackInfo_0() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, ___m_callbackInfo_0)); } inline CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * get_m_callbackInfo_0() const { return ___m_callbackInfo_0; } inline CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 ** get_address_of_m_callbackInfo_0() { return &___m_callbackInfo_0; } inline void set_m_callbackInfo_0(CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * value) { ___m_callbackInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_callbackInfo_0), (void*)value); } inline static int32_t get_offset_of_m_registrationInfo_1() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, ___m_registrationInfo_1)); } inline SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE get_m_registrationInfo_1() const { return ___m_registrationInfo_1; } inline SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE * get_address_of_m_registrationInfo_1() { return &___m_registrationInfo_1; } inline void set_m_registrationInfo_1(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE value) { ___m_registrationInfo_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_registrationInfo_1))->___m_source_0), (void*)NULL); } }; // Native definition for P/Invoke marshalling of System.Threading.CancellationTokenRegistration struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_marshaled_pinvoke { CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0; SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1; }; // Native definition for COM marshalling of System.Threading.CancellationTokenRegistration struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_marshaled_com { CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0; SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1; }; // System.Threading.ExecutionContextSwitcher struct ExecutionContextSwitcher_t739C861A327D724A4E59DE865463B32097395159 { public: // System.Threading.ExecutionContext_Reader System.Threading.ExecutionContextSwitcher::outerEC Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B ___outerEC_0; // System.Boolean System.Threading.ExecutionContextSwitcher::outerECBelongsToScope bool ___outerECBelongsToScope_1; // System.Object System.Threading.ExecutionContextSwitcher::hecsw RuntimeObject * ___hecsw_2; // System.Threading.Thread System.Threading.ExecutionContextSwitcher::thread Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * ___thread_3; public: inline static int32_t get_offset_of_outerEC_0() { return static_cast<int32_t>(offsetof(ExecutionContextSwitcher_t739C861A327D724A4E59DE865463B32097395159, ___outerEC_0)); } inline Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B get_outerEC_0() const { return ___outerEC_0; } inline Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B * get_address_of_outerEC_0() { return &___outerEC_0; } inline void set_outerEC_0(Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B value) { ___outerEC_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___outerEC_0))->___m_ec_0), (void*)NULL); } inline static int32_t get_offset_of_outerECBelongsToScope_1() { return static_cast<int32_t>(offsetof(ExecutionContextSwitcher_t739C861A327D724A4E59DE865463B32097395159, ___outerECBelongsToScope_1)); } inline bool get_outerECBelongsToScope_1() const { return ___outerECBelongsToScope_1; } inline bool* get_address_of_outerECBelongsToScope_1() { return &___outerECBelongsToScope_1; } inline void set_outerECBelongsToScope_1(bool value) { ___outerECBelongsToScope_1 = value; } inline static int32_t get_offset_of_hecsw_2() { return static_cast<int32_t>(offsetof(ExecutionContextSwitcher_t739C861A327D724A4E59DE865463B32097395159, ___hecsw_2)); } inline RuntimeObject * get_hecsw_2() const { return ___hecsw_2; } inline RuntimeObject ** get_address_of_hecsw_2() { return &___hecsw_2; } inline void set_hecsw_2(RuntimeObject * value) { ___hecsw_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___hecsw_2), (void*)value); } inline static int32_t get_offset_of_thread_3() { return static_cast<int32_t>(offsetof(ExecutionContextSwitcher_t739C861A327D724A4E59DE865463B32097395159, ___thread_3)); } inline Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * get_thread_3() const { return ___thread_3; } inline Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 ** get_address_of_thread_3() { return &___thread_3; } inline void set_thread_3(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * value) { ___thread_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___thread_3), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Threading.ExecutionContextSwitcher struct ExecutionContextSwitcher_t739C861A327D724A4E59DE865463B32097395159_marshaled_pinvoke { Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B_marshaled_pinvoke ___outerEC_0; int32_t ___outerECBelongsToScope_1; Il2CppIUnknown* ___hecsw_2; Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * ___thread_3; }; // Native definition for COM marshalling of System.Threading.ExecutionContextSwitcher struct ExecutionContextSwitcher_t739C861A327D724A4E59DE865463B32097395159_marshaled_com { Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B_marshaled_com ___outerEC_0; int32_t ___outerECBelongsToScope_1; Il2CppIUnknown* ___hecsw_2; Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * ___thread_3; }; // System.TimeSpan struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_5; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___Zero_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; } inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MinValue_2 = value; } inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); } inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; } inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; } inline void set__legacyConfigChecked_4(bool value) { ____legacyConfigChecked_4 = value; } inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); } inline bool get__legacyMode_5() const { return ____legacyMode_5; } inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; } inline void set__legacyMode_5(bool value) { ____legacyMode_5 = value; } }; // System.TimeZoneInfo_TIME_ZONE_INFORMATION struct TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 { public: // System.Int32 System.TimeZoneInfo_TIME_ZONE_INFORMATION::Bias int32_t ___Bias_0; // System.String System.TimeZoneInfo_TIME_ZONE_INFORMATION::StandardName String_t* ___StandardName_1; // System.TimeZoneInfo_SYSTEMTIME System.TimeZoneInfo_TIME_ZONE_INFORMATION::StandardDate SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 ___StandardDate_2; // System.Int32 System.TimeZoneInfo_TIME_ZONE_INFORMATION::StandardBias int32_t ___StandardBias_3; // System.String System.TimeZoneInfo_TIME_ZONE_INFORMATION::DaylightName String_t* ___DaylightName_4; // System.TimeZoneInfo_SYSTEMTIME System.TimeZoneInfo_TIME_ZONE_INFORMATION::DaylightDate SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 ___DaylightDate_5; // System.Int32 System.TimeZoneInfo_TIME_ZONE_INFORMATION::DaylightBias int32_t ___DaylightBias_6; public: inline static int32_t get_offset_of_Bias_0() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___Bias_0)); } inline int32_t get_Bias_0() const { return ___Bias_0; } inline int32_t* get_address_of_Bias_0() { return &___Bias_0; } inline void set_Bias_0(int32_t value) { ___Bias_0 = value; } inline static int32_t get_offset_of_StandardName_1() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___StandardName_1)); } inline String_t* get_StandardName_1() const { return ___StandardName_1; } inline String_t** get_address_of_StandardName_1() { return &___StandardName_1; } inline void set_StandardName_1(String_t* value) { ___StandardName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___StandardName_1), (void*)value); } inline static int32_t get_offset_of_StandardDate_2() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___StandardDate_2)); } inline SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 get_StandardDate_2() const { return ___StandardDate_2; } inline SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 * get_address_of_StandardDate_2() { return &___StandardDate_2; } inline void set_StandardDate_2(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 value) { ___StandardDate_2 = value; } inline static int32_t get_offset_of_StandardBias_3() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___StandardBias_3)); } inline int32_t get_StandardBias_3() const { return ___StandardBias_3; } inline int32_t* get_address_of_StandardBias_3() { return &___StandardBias_3; } inline void set_StandardBias_3(int32_t value) { ___StandardBias_3 = value; } inline static int32_t get_offset_of_DaylightName_4() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___DaylightName_4)); } inline String_t* get_DaylightName_4() const { return ___DaylightName_4; } inline String_t** get_address_of_DaylightName_4() { return &___DaylightName_4; } inline void set_DaylightName_4(String_t* value) { ___DaylightName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaylightName_4), (void*)value); } inline static int32_t get_offset_of_DaylightDate_5() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___DaylightDate_5)); } inline SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 get_DaylightDate_5() const { return ___DaylightDate_5; } inline SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 * get_address_of_DaylightDate_5() { return &___DaylightDate_5; } inline void set_DaylightDate_5(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 value) { ___DaylightDate_5 = value; } inline static int32_t get_offset_of_DaylightBias_6() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___DaylightBias_6)); } inline int32_t get_DaylightBias_6() const { return ___DaylightBias_6; } inline int32_t* get_address_of_DaylightBias_6() { return &___DaylightBias_6; } inline void set_DaylightBias_6(int32_t value) { ___DaylightBias_6 = value; } }; // Native definition for P/Invoke marshalling of System.TimeZoneInfo/TIME_ZONE_INFORMATION struct TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke { int32_t ___Bias_0; Il2CppChar ___StandardName_1[32]; SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 ___StandardDate_2; int32_t ___StandardBias_3; Il2CppChar ___DaylightName_4[32]; SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 ___DaylightDate_5; int32_t ___DaylightBias_6; }; // Native definition for COM marshalling of System.TimeZoneInfo/TIME_ZONE_INFORMATION struct TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_com { int32_t ___Bias_0; Il2CppChar ___StandardName_1[32]; SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 ___StandardDate_2; int32_t ___StandardBias_3; Il2CppChar ___DaylightName_4[32]; SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 ___DaylightDate_5; int32_t ___DaylightBias_6; }; // Unity.Collections.Allocator struct Allocator_t62A091275262E7067EAAD565B67764FA877D58D6 { 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_t62A091275262E7067EAAD565B67764FA877D58D6, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Unity.Jobs.JobHandle struct JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 { public: // System.IntPtr Unity.Jobs.JobHandle::jobGroup intptr_t ___jobGroup_0; // System.Int32 Unity.Jobs.JobHandle::version int32_t ___version_1; public: inline static int32_t get_offset_of_jobGroup_0() { return static_cast<int32_t>(offsetof(JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1, ___jobGroup_0)); } inline intptr_t get_jobGroup_0() const { return ___jobGroup_0; } inline intptr_t* get_address_of_jobGroup_0() { return &___jobGroup_0; } inline void set_jobGroup_0(intptr_t value) { ___jobGroup_0 = value; } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1, ___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; } }; // UnityEngine.Bounds struct Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 { public: // UnityEngine.Vector3 UnityEngine.Bounds::m_Center Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Center_0; // UnityEngine.Vector3 UnityEngine.Bounds::m_Extents Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Extents_1; public: inline static int32_t get_offset_of_m_Center_0() { return static_cast<int32_t>(offsetof(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890, ___m_Center_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Center_0() const { return ___m_Center_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Center_0() { return &___m_Center_0; } inline void set_m_Center_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Center_0 = value; } inline static int32_t get_offset_of_m_Extents_1() { return static_cast<int32_t>(offsetof(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890, ___m_Extents_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Extents_1() const { return ___m_Extents_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Extents_1() { return &___m_Extents_1; } inline void set_m_Extents_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Extents_1 = value; } }; // UnityEngine.ContactFilter2D struct ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 { public: // System.Boolean UnityEngine.ContactFilter2D::useTriggers bool ___useTriggers_0; // System.Boolean UnityEngine.ContactFilter2D::useLayerMask bool ___useLayerMask_1; // System.Boolean UnityEngine.ContactFilter2D::useDepth bool ___useDepth_2; // System.Boolean UnityEngine.ContactFilter2D::useOutsideDepth bool ___useOutsideDepth_3; // System.Boolean UnityEngine.ContactFilter2D::useNormalAngle bool ___useNormalAngle_4; // System.Boolean UnityEngine.ContactFilter2D::useOutsideNormalAngle bool ___useOutsideNormalAngle_5; // UnityEngine.LayerMask UnityEngine.ContactFilter2D::layerMask LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___layerMask_6; // System.Single UnityEngine.ContactFilter2D::minDepth float ___minDepth_7; // System.Single UnityEngine.ContactFilter2D::maxDepth float ___maxDepth_8; // System.Single UnityEngine.ContactFilter2D::minNormalAngle float ___minNormalAngle_9; // System.Single UnityEngine.ContactFilter2D::maxNormalAngle float ___maxNormalAngle_10; public: inline static int32_t get_offset_of_useTriggers_0() { return static_cast<int32_t>(offsetof(ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4, ___useTriggers_0)); } inline bool get_useTriggers_0() const { return ___useTriggers_0; } inline bool* get_address_of_useTriggers_0() { return &___useTriggers_0; } inline void set_useTriggers_0(bool value) { ___useTriggers_0 = value; } inline static int32_t get_offset_of_useLayerMask_1() { return static_cast<int32_t>(offsetof(ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4, ___useLayerMask_1)); } inline bool get_useLayerMask_1() const { return ___useLayerMask_1; } inline bool* get_address_of_useLayerMask_1() { return &___useLayerMask_1; } inline void set_useLayerMask_1(bool value) { ___useLayerMask_1 = value; } inline static int32_t get_offset_of_useDepth_2() { return static_cast<int32_t>(offsetof(ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4, ___useDepth_2)); } inline bool get_useDepth_2() const { return ___useDepth_2; } inline bool* get_address_of_useDepth_2() { return &___useDepth_2; } inline void set_useDepth_2(bool value) { ___useDepth_2 = value; } inline static int32_t get_offset_of_useOutsideDepth_3() { return static_cast<int32_t>(offsetof(ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4, ___useOutsideDepth_3)); } inline bool get_useOutsideDepth_3() const { return ___useOutsideDepth_3; } inline bool* get_address_of_useOutsideDepth_3() { return &___useOutsideDepth_3; } inline void set_useOutsideDepth_3(bool value) { ___useOutsideDepth_3 = value; } inline static int32_t get_offset_of_useNormalAngle_4() { return static_cast<int32_t>(offsetof(ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4, ___useNormalAngle_4)); } inline bool get_useNormalAngle_4() const { return ___useNormalAngle_4; } inline bool* get_address_of_useNormalAngle_4() { return &___useNormalAngle_4; } inline void set_useNormalAngle_4(bool value) { ___useNormalAngle_4 = value; } inline static int32_t get_offset_of_useOutsideNormalAngle_5() { return static_cast<int32_t>(offsetof(ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4, ___useOutsideNormalAngle_5)); } inline bool get_useOutsideNormalAngle_5() const { return ___useOutsideNormalAngle_5; } inline bool* get_address_of_useOutsideNormalAngle_5() { return &___useOutsideNormalAngle_5; } inline void set_useOutsideNormalAngle_5(bool value) { ___useOutsideNormalAngle_5 = value; } inline static int32_t get_offset_of_layerMask_6() { return static_cast<int32_t>(offsetof(ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4, ___layerMask_6)); } inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 get_layerMask_6() const { return ___layerMask_6; } inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 * get_address_of_layerMask_6() { return &___layerMask_6; } inline void set_layerMask_6(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 value) { ___layerMask_6 = value; } inline static int32_t get_offset_of_minDepth_7() { return static_cast<int32_t>(offsetof(ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4, ___minDepth_7)); } inline float get_minDepth_7() const { return ___minDepth_7; } inline float* get_address_of_minDepth_7() { return &___minDepth_7; } inline void set_minDepth_7(float value) { ___minDepth_7 = value; } inline static int32_t get_offset_of_maxDepth_8() { return static_cast<int32_t>(offsetof(ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4, ___maxDepth_8)); } inline float get_maxDepth_8() const { return ___maxDepth_8; } inline float* get_address_of_maxDepth_8() { return &___maxDepth_8; } inline void set_maxDepth_8(float value) { ___maxDepth_8 = value; } inline static int32_t get_offset_of_minNormalAngle_9() { return static_cast<int32_t>(offsetof(ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4, ___minNormalAngle_9)); } inline float get_minNormalAngle_9() const { return ___minNormalAngle_9; } inline float* get_address_of_minNormalAngle_9() { return &___minNormalAngle_9; } inline void set_minNormalAngle_9(float value) { ___minNormalAngle_9 = value; } inline static int32_t get_offset_of_maxNormalAngle_10() { return static_cast<int32_t>(offsetof(ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4, ___maxNormalAngle_10)); } inline float get_maxNormalAngle_10() const { return ___maxNormalAngle_10; } inline float* get_address_of_maxNormalAngle_10() { return &___maxNormalAngle_10; } inline void set_maxNormalAngle_10(float value) { ___maxNormalAngle_10 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.ContactFilter2D struct ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4_marshaled_pinvoke { int32_t ___useTriggers_0; int32_t ___useLayerMask_1; int32_t ___useDepth_2; int32_t ___useOutsideDepth_3; int32_t ___useNormalAngle_4; int32_t ___useOutsideNormalAngle_5; LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___layerMask_6; float ___minDepth_7; float ___maxDepth_8; float ___minNormalAngle_9; float ___maxNormalAngle_10; }; // Native definition for COM marshalling of UnityEngine.ContactFilter2D struct ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4_marshaled_com { int32_t ___useTriggers_0; int32_t ___useLayerMask_1; int32_t ___useDepth_2; int32_t ___useOutsideDepth_3; int32_t ___useNormalAngle_4; int32_t ___useOutsideNormalAngle_5; LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___layerMask_6; float ___minDepth_7; float ___maxDepth_8; float ___minNormalAngle_9; float ___maxNormalAngle_10; }; // UnityEngine.ContactPoint struct ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 { public: // UnityEngine.Vector3 UnityEngine.ContactPoint::m_Point Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Point_0; // UnityEngine.Vector3 UnityEngine.ContactPoint::m_Normal Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_1; // System.Int32 UnityEngine.ContactPoint::m_ThisColliderInstanceID int32_t ___m_ThisColliderInstanceID_2; // System.Int32 UnityEngine.ContactPoint::m_OtherColliderInstanceID int32_t ___m_OtherColliderInstanceID_3; // System.Single UnityEngine.ContactPoint::m_Separation float ___m_Separation_4; public: inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Point_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Point_0() const { return ___m_Point_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Point_0() { return &___m_Point_0; } inline void set_m_Point_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Point_0 = value; } inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Normal_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_1() const { return ___m_Normal_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_1() { return &___m_Normal_1; } inline void set_m_Normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Normal_1 = value; } inline static int32_t get_offset_of_m_ThisColliderInstanceID_2() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_ThisColliderInstanceID_2)); } inline int32_t get_m_ThisColliderInstanceID_2() const { return ___m_ThisColliderInstanceID_2; } inline int32_t* get_address_of_m_ThisColliderInstanceID_2() { return &___m_ThisColliderInstanceID_2; } inline void set_m_ThisColliderInstanceID_2(int32_t value) { ___m_ThisColliderInstanceID_2 = value; } inline static int32_t get_offset_of_m_OtherColliderInstanceID_3() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_OtherColliderInstanceID_3)); } inline int32_t get_m_OtherColliderInstanceID_3() const { return ___m_OtherColliderInstanceID_3; } inline int32_t* get_address_of_m_OtherColliderInstanceID_3() { return &___m_OtherColliderInstanceID_3; } inline void set_m_OtherColliderInstanceID_3(int32_t value) { ___m_OtherColliderInstanceID_3 = value; } inline static int32_t get_offset_of_m_Separation_4() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Separation_4)); } inline float get_m_Separation_4() const { return ___m_Separation_4; } inline float* get_address_of_m_Separation_4() { return &___m_Separation_4; } inline void set_m_Separation_4(float value) { ___m_Separation_4 = value; } }; // UnityEngine.ContactPoint2D struct ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 { public: // UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Point Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Point_0; // UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Normal Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Normal_1; // UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_RelativeVelocity Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_RelativeVelocity_2; // System.Single UnityEngine.ContactPoint2D::m_Separation float ___m_Separation_3; // System.Single UnityEngine.ContactPoint2D::m_NormalImpulse float ___m_NormalImpulse_4; // System.Single UnityEngine.ContactPoint2D::m_TangentImpulse float ___m_TangentImpulse_5; // System.Int32 UnityEngine.ContactPoint2D::m_Collider int32_t ___m_Collider_6; // System.Int32 UnityEngine.ContactPoint2D::m_OtherCollider int32_t ___m_OtherCollider_7; // System.Int32 UnityEngine.ContactPoint2D::m_Rigidbody int32_t ___m_Rigidbody_8; // System.Int32 UnityEngine.ContactPoint2D::m_OtherRigidbody int32_t ___m_OtherRigidbody_9; // System.Int32 UnityEngine.ContactPoint2D::m_Enabled int32_t ___m_Enabled_10; public: inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Point_0)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Point_0() const { return ___m_Point_0; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Point_0() { return &___m_Point_0; } inline void set_m_Point_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_Point_0 = value; } inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Normal_1)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Normal_1() const { return ___m_Normal_1; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Normal_1() { return &___m_Normal_1; } inline void set_m_Normal_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_Normal_1 = value; } inline static int32_t get_offset_of_m_RelativeVelocity_2() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_RelativeVelocity_2)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_RelativeVelocity_2() const { return ___m_RelativeVelocity_2; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_RelativeVelocity_2() { return &___m_RelativeVelocity_2; } inline void set_m_RelativeVelocity_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_RelativeVelocity_2 = value; } inline static int32_t get_offset_of_m_Separation_3() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Separation_3)); } inline float get_m_Separation_3() const { return ___m_Separation_3; } inline float* get_address_of_m_Separation_3() { return &___m_Separation_3; } inline void set_m_Separation_3(float value) { ___m_Separation_3 = value; } inline static int32_t get_offset_of_m_NormalImpulse_4() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_NormalImpulse_4)); } inline float get_m_NormalImpulse_4() const { return ___m_NormalImpulse_4; } inline float* get_address_of_m_NormalImpulse_4() { return &___m_NormalImpulse_4; } inline void set_m_NormalImpulse_4(float value) { ___m_NormalImpulse_4 = value; } inline static int32_t get_offset_of_m_TangentImpulse_5() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_TangentImpulse_5)); } inline float get_m_TangentImpulse_5() const { return ___m_TangentImpulse_5; } inline float* get_address_of_m_TangentImpulse_5() { return &___m_TangentImpulse_5; } inline void set_m_TangentImpulse_5(float value) { ___m_TangentImpulse_5 = value; } inline static int32_t get_offset_of_m_Collider_6() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Collider_6)); } inline int32_t get_m_Collider_6() const { return ___m_Collider_6; } inline int32_t* get_address_of_m_Collider_6() { return &___m_Collider_6; } inline void set_m_Collider_6(int32_t value) { ___m_Collider_6 = value; } inline static int32_t get_offset_of_m_OtherCollider_7() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_OtherCollider_7)); } inline int32_t get_m_OtherCollider_7() const { return ___m_OtherCollider_7; } inline int32_t* get_address_of_m_OtherCollider_7() { return &___m_OtherCollider_7; } inline void set_m_OtherCollider_7(int32_t value) { ___m_OtherCollider_7 = value; } inline static int32_t get_offset_of_m_Rigidbody_8() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Rigidbody_8)); } inline int32_t get_m_Rigidbody_8() const { return ___m_Rigidbody_8; } inline int32_t* get_address_of_m_Rigidbody_8() { return &___m_Rigidbody_8; } inline void set_m_Rigidbody_8(int32_t value) { ___m_Rigidbody_8 = value; } inline static int32_t get_offset_of_m_OtherRigidbody_9() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_OtherRigidbody_9)); } inline int32_t get_m_OtherRigidbody_9() const { return ___m_OtherRigidbody_9; } inline int32_t* get_address_of_m_OtherRigidbody_9() { return &___m_OtherRigidbody_9; } inline void set_m_OtherRigidbody_9(int32_t value) { ___m_OtherRigidbody_9 = value; } inline static int32_t get_offset_of_m_Enabled_10() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Enabled_10)); } inline int32_t get_m_Enabled_10() const { return ___m_Enabled_10; } inline int32_t* get_address_of_m_Enabled_10() { return &___m_Enabled_10; } inline void set_m_Enabled_10(int32_t value) { ___m_Enabled_10 = value; } }; // UnityEngine.CubemapFace struct CubemapFace_t74DD9C86D8A5E5F782F136F8753580668F96FFB9 { public: // System.Int32 UnityEngine.CubemapFace::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CubemapFace_t74DD9C86D8A5E5F782F136F8753580668F96FFB9, ___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.EventSystems.RaycastResult struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 { public: // UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0; // UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1; // System.Single UnityEngine.EventSystems.RaycastResult::distance float ___distance_2; // System.Single UnityEngine.EventSystems.RaycastResult::index float ___index_3; // System.Int32 UnityEngine.EventSystems.RaycastResult::depth int32_t ___depth_4; // System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer int32_t ___sortingLayer_5; // System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder int32_t ___sortingOrder_6; // UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7; // UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8; // UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9; public: inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___m_GameObject_0)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_GameObject_0() const { return ___m_GameObject_0; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; } inline void set_m_GameObject_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___m_GameObject_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_0), (void*)value); } inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___module_1)); } inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * get_module_1() const { return ___module_1; } inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 ** get_address_of_module_1() { return &___module_1; } inline void set_module_1(BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * value) { ___module_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___module_1), (void*)value); } inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___distance_2)); } inline float get_distance_2() const { return ___distance_2; } inline float* get_address_of_distance_2() { return &___distance_2; } inline void set_distance_2(float value) { ___distance_2 = value; } inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___index_3)); } inline float get_index_3() const { return ___index_3; } inline float* get_address_of_index_3() { return &___index_3; } inline void set_index_3(float value) { ___index_3 = value; } inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___depth_4)); } inline int32_t get_depth_4() const { return ___depth_4; } inline int32_t* get_address_of_depth_4() { return &___depth_4; } inline void set_depth_4(int32_t value) { ___depth_4 = value; } inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingLayer_5)); } inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; } inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; } inline void set_sortingLayer_5(int32_t value) { ___sortingLayer_5 = value; } inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingOrder_6)); } inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; } inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; } inline void set_sortingOrder_6(int32_t value) { ___sortingOrder_6 = value; } inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldPosition_7)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldPosition_7() const { return ___worldPosition_7; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldPosition_7() { return &___worldPosition_7; } inline void set_worldPosition_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___worldPosition_7 = value; } inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldNormal_8)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldNormal_8() const { return ___worldNormal_8; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldNormal_8() { return &___worldNormal_8; } inline void set_worldNormal_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___worldNormal_8 = value; } inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___screenPosition_9)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_screenPosition_9() const { return ___screenPosition_9; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_screenPosition_9() { return &___screenPosition_9; } inline void set_screenPosition_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___screenPosition_9 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_pinvoke { GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0; BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1; float ___distance_2; float ___index_3; int32_t ___depth_4; int32_t ___sortingLayer_5; int32_t ___sortingOrder_6; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9; }; // Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_com { GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0; BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1; float ___distance_2; float ___index_3; int32_t ___depth_4; int32_t ___sortingLayer_5; int32_t ___sortingOrder_6; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9; }; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D { public: // System.Type UnityEngine.Experimental.LowLevel.PlayerLoopSystem::type Type_t * ___type_0; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem[] UnityEngine.Experimental.LowLevel.PlayerLoopSystem::subSystemList PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* ___subSystemList_1; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem_UpdateFunction UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateDelegate UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 * ___updateDelegate_2; // System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateFunction intptr_t ___updateFunction_3; // System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::loopConditionFunction intptr_t ___loopConditionFunction_4; public: inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___type_0)); } inline Type_t * get_type_0() const { return ___type_0; } inline Type_t ** get_address_of_type_0() { return &___type_0; } inline void set_type_0(Type_t * value) { ___type_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_0), (void*)value); } inline static int32_t get_offset_of_subSystemList_1() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___subSystemList_1)); } inline PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* get_subSystemList_1() const { return ___subSystemList_1; } inline PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2** get_address_of_subSystemList_1() { return &___subSystemList_1; } inline void set_subSystemList_1(PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2* value) { ___subSystemList_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___subSystemList_1), (void*)value); } inline static int32_t get_offset_of_updateDelegate_2() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___updateDelegate_2)); } inline UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 * get_updateDelegate_2() const { return ___updateDelegate_2; } inline UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 ** get_address_of_updateDelegate_2() { return &___updateDelegate_2; } inline void set_updateDelegate_2(UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8 * value) { ___updateDelegate_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___updateDelegate_2), (void*)value); } inline static int32_t get_offset_of_updateFunction_3() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___updateFunction_3)); } inline intptr_t get_updateFunction_3() const { return ___updateFunction_3; } inline intptr_t* get_address_of_updateFunction_3() { return &___updateFunction_3; } inline void set_updateFunction_3(intptr_t value) { ___updateFunction_3 = value; } inline static int32_t get_offset_of_loopConditionFunction_4() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, ___loopConditionFunction_4)); } inline intptr_t get_loopConditionFunction_4() const { return ___loopConditionFunction_4; } inline intptr_t* get_address_of_loopConditionFunction_4() { return &___loopConditionFunction_4; } inline void set_loopConditionFunction_4(intptr_t value) { ___loopConditionFunction_4 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_pinvoke { Type_t * ___type_0; PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_pinvoke* ___subSystemList_1; Il2CppMethodPointer ___updateDelegate_2; intptr_t ___updateFunction_3; intptr_t ___loopConditionFunction_4; }; // Native definition for COM marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_com { Type_t * ___type_0; PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_com* ___subSystemList_1; Il2CppMethodPointer ___updateDelegate_2; intptr_t ___updateFunction_3; intptr_t ___loopConditionFunction_4; }; // UnityEngine.Experimental.Rendering.GraphicsFormat struct GraphicsFormat_t512915BBE299AE115F4DB0B96DF1DA2E72ECA181 { public: // System.Int32 UnityEngine.Experimental.Rendering.GraphicsFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GraphicsFormat_t512915BBE299AE115F4DB0B96DF1DA2E72ECA181, ___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.Experimental.XR.MeshGenerationStatus struct MeshGenerationStatus_t58ABE4F39930471B888640F3BF5843A5A52CDBC6 { public: // System.Int32 UnityEngine.Experimental.XR.MeshGenerationStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MeshGenerationStatus_t58ABE4F39930471B888640F3BF5843A5A52CDBC6, ___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.Experimental.XR.MeshVertexAttributes struct MeshVertexAttributes_t4C1E42BCB078C4499F890CE145589B9085A5D737 { public: // System.Int32 UnityEngine.Experimental.XR.MeshVertexAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MeshVertexAttributes_t4C1E42BCB078C4499F890CE145589B9085A5D737, ___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.Experimental.XR.PlaneAlignment struct PlaneAlignment_tA2F16C66968FD0E8F2D028575BF5A74395340AC6 { public: // System.Int32 UnityEngine.Experimental.XR.PlaneAlignment::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlaneAlignment_tA2F16C66968FD0E8F2D028575BF5A74395340AC6, ___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.Experimental.XR.TrackingState struct TrackingState_tC867717ED982A6E61C703B6A0CCF908E9642C854 { public: // System.Int32 UnityEngine.Experimental.XR.TrackingState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingState_tC867717ED982A6E61C703B6A0CCF908E9642C854, ___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.FontStyle struct FontStyle_t273973EBB1F40C2381F6D60AB957149DE5720CF3 { public: // System.Int32 UnityEngine.FontStyle::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FontStyle_t273973EBB1F40C2381F6D60AB957149DE5720CF3, ___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.HorizontalWrapMode struct HorizontalWrapMode_t56D876281F814EC1AF0C21A34E20BBF4BEEA302C { public: // System.Int32 UnityEngine.HorizontalWrapMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HorizontalWrapMode_t56D876281F814EC1AF0C21A34E20BBF4BEEA302C, ___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_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : 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_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___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_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_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_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_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_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com { intptr_t ___m_CachedPtr_0; }; // UnityEngine.ParticleSystem_Particle struct Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E { public: // UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_Position Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Position_0; // UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_Velocity Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Velocity_1; // UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_AnimatedVelocity Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AnimatedVelocity_2; // UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_InitialVelocity Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_InitialVelocity_3; // UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_AxisOfRotation Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AxisOfRotation_4; // UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_Rotation Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Rotation_5; // UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_AngularVelocity Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AngularVelocity_6; // UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_StartSize Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_StartSize_7; // UnityEngine.Color32 UnityEngine.ParticleSystem_Particle::m_StartColor Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___m_StartColor_8; // System.UInt32 UnityEngine.ParticleSystem_Particle::m_RandomSeed uint32_t ___m_RandomSeed_9; // System.Single UnityEngine.ParticleSystem_Particle::m_Lifetime float ___m_Lifetime_10; // System.Single UnityEngine.ParticleSystem_Particle::m_StartLifetime float ___m_StartLifetime_11; // System.Int32 UnityEngine.ParticleSystem_Particle::m_MeshIndex int32_t ___m_MeshIndex_12; // System.Single UnityEngine.ParticleSystem_Particle::m_EmitAccumulator0 float ___m_EmitAccumulator0_13; // System.Single UnityEngine.ParticleSystem_Particle::m_EmitAccumulator1 float ___m_EmitAccumulator1_14; // System.UInt32 UnityEngine.ParticleSystem_Particle::m_Flags uint32_t ___m_Flags_15; public: inline static int32_t get_offset_of_m_Position_0() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Position_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Position_0() const { return ___m_Position_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Position_0() { return &___m_Position_0; } inline void set_m_Position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Position_0 = value; } inline static int32_t get_offset_of_m_Velocity_1() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Velocity_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Velocity_1() const { return ___m_Velocity_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Velocity_1() { return &___m_Velocity_1; } inline void set_m_Velocity_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Velocity_1 = value; } inline static int32_t get_offset_of_m_AnimatedVelocity_2() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_AnimatedVelocity_2)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AnimatedVelocity_2() const { return ___m_AnimatedVelocity_2; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AnimatedVelocity_2() { return &___m_AnimatedVelocity_2; } inline void set_m_AnimatedVelocity_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_AnimatedVelocity_2 = value; } inline static int32_t get_offset_of_m_InitialVelocity_3() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_InitialVelocity_3)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_InitialVelocity_3() const { return ___m_InitialVelocity_3; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_InitialVelocity_3() { return &___m_InitialVelocity_3; } inline void set_m_InitialVelocity_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_InitialVelocity_3 = value; } inline static int32_t get_offset_of_m_AxisOfRotation_4() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_AxisOfRotation_4)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AxisOfRotation_4() const { return ___m_AxisOfRotation_4; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AxisOfRotation_4() { return &___m_AxisOfRotation_4; } inline void set_m_AxisOfRotation_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_AxisOfRotation_4 = value; } inline static int32_t get_offset_of_m_Rotation_5() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Rotation_5)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Rotation_5() const { return ___m_Rotation_5; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Rotation_5() { return &___m_Rotation_5; } inline void set_m_Rotation_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Rotation_5 = value; } inline static int32_t get_offset_of_m_AngularVelocity_6() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_AngularVelocity_6)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AngularVelocity_6() const { return ___m_AngularVelocity_6; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AngularVelocity_6() { return &___m_AngularVelocity_6; } inline void set_m_AngularVelocity_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_AngularVelocity_6 = value; } inline static int32_t get_offset_of_m_StartSize_7() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_StartSize_7)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_StartSize_7() const { return ___m_StartSize_7; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_StartSize_7() { return &___m_StartSize_7; } inline void set_m_StartSize_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_StartSize_7 = value; } inline static int32_t get_offset_of_m_StartColor_8() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_StartColor_8)); } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_m_StartColor_8() const { return ___m_StartColor_8; } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_m_StartColor_8() { return &___m_StartColor_8; } inline void set_m_StartColor_8(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value) { ___m_StartColor_8 = value; } inline static int32_t get_offset_of_m_RandomSeed_9() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_RandomSeed_9)); } inline uint32_t get_m_RandomSeed_9() const { return ___m_RandomSeed_9; } inline uint32_t* get_address_of_m_RandomSeed_9() { return &___m_RandomSeed_9; } inline void set_m_RandomSeed_9(uint32_t value) { ___m_RandomSeed_9 = value; } inline static int32_t get_offset_of_m_Lifetime_10() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Lifetime_10)); } inline float get_m_Lifetime_10() const { return ___m_Lifetime_10; } inline float* get_address_of_m_Lifetime_10() { return &___m_Lifetime_10; } inline void set_m_Lifetime_10(float value) { ___m_Lifetime_10 = value; } inline static int32_t get_offset_of_m_StartLifetime_11() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_StartLifetime_11)); } inline float get_m_StartLifetime_11() const { return ___m_StartLifetime_11; } inline float* get_address_of_m_StartLifetime_11() { return &___m_StartLifetime_11; } inline void set_m_StartLifetime_11(float value) { ___m_StartLifetime_11 = value; } inline static int32_t get_offset_of_m_MeshIndex_12() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_MeshIndex_12)); } inline int32_t get_m_MeshIndex_12() const { return ___m_MeshIndex_12; } inline int32_t* get_address_of_m_MeshIndex_12() { return &___m_MeshIndex_12; } inline void set_m_MeshIndex_12(int32_t value) { ___m_MeshIndex_12 = value; } inline static int32_t get_offset_of_m_EmitAccumulator0_13() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_EmitAccumulator0_13)); } inline float get_m_EmitAccumulator0_13() const { return ___m_EmitAccumulator0_13; } inline float* get_address_of_m_EmitAccumulator0_13() { return &___m_EmitAccumulator0_13; } inline void set_m_EmitAccumulator0_13(float value) { ___m_EmitAccumulator0_13 = value; } inline static int32_t get_offset_of_m_EmitAccumulator1_14() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_EmitAccumulator1_14)); } inline float get_m_EmitAccumulator1_14() const { return ___m_EmitAccumulator1_14; } inline float* get_address_of_m_EmitAccumulator1_14() { return &___m_EmitAccumulator1_14; } inline void set_m_EmitAccumulator1_14(float value) { ___m_EmitAccumulator1_14 = value; } inline static int32_t get_offset_of_m_Flags_15() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Flags_15)); } inline uint32_t get_m_Flags_15() const { return ___m_Flags_15; } inline uint32_t* get_address_of_m_Flags_15() { return &___m_Flags_15; } inline void set_m_Flags_15(uint32_t value) { ___m_Flags_15 = value; } }; // UnityEngine.Plane struct Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED { public: // UnityEngine.Vector3 UnityEngine.Plane::m_Normal Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_0; // System.Single UnityEngine.Plane::m_Distance float ___m_Distance_1; public: inline static int32_t get_offset_of_m_Normal_0() { return static_cast<int32_t>(offsetof(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, ___m_Normal_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_0() const { return ___m_Normal_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_0() { return &___m_Normal_0; } inline void set_m_Normal_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Normal_0 = value; } inline static int32_t get_offset_of_m_Distance_1() { return static_cast<int32_t>(offsetof(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, ___m_Distance_1)); } inline float get_m_Distance_1() const { return ___m_Distance_1; } inline float* get_address_of_m_Distance_1() { return &___m_Distance_1; } inline void set_m_Distance_1(float value) { ___m_Distance_1 = value; } }; // UnityEngine.Playables.FrameData_Flags struct Flags_tC705783C7BC90E0953FD3B996C7900B58A452D69 { public: // System.Int32 UnityEngine.Playables.FrameData_Flags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_tC705783C7BC90E0953FD3B996C7900B58A452D69, ___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.Playables.PlayableGraph struct PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA { public: // System.IntPtr UnityEngine.Playables.PlayableGraph::m_Handle intptr_t ___m_Handle_0; // System.UInt32 UnityEngine.Playables.PlayableGraph::m_Version uint32_t ___m_Version_1; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA, ___m_Handle_0)); } inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; } inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(intptr_t value) { ___m_Handle_0 = value; } inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA, ___m_Version_1)); } inline uint32_t get_m_Version_1() const { return ___m_Version_1; } inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; } inline void set_m_Version_1(uint32_t value) { ___m_Version_1 = value; } }; // UnityEngine.Playables.PlayableHandle struct PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 { public: // System.IntPtr UnityEngine.Playables.PlayableHandle::m_Handle intptr_t ___m_Handle_0; // System.UInt32 UnityEngine.Playables.PlayableHandle::m_Version uint32_t ___m_Version_1; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182, ___m_Handle_0)); } inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; } inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(intptr_t value) { ___m_Handle_0 = value; } inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182, ___m_Version_1)); } inline uint32_t get_m_Version_1() const { return ___m_Version_1; } inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; } inline void set_m_Version_1(uint32_t value) { ___m_Version_1 = value; } }; struct PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182_StaticFields { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Playables.PlayableHandle::m_Null PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Null_2; public: inline static int32_t get_offset_of_m_Null_2() { return static_cast<int32_t>(offsetof(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182_StaticFields, ___m_Null_2)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Null_2() const { return ___m_Null_2; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Null_2() { return &___m_Null_2; } inline void set_m_Null_2(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Null_2 = value; } }; // UnityEngine.Playables.PlayableOutputHandle struct PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 { public: // System.IntPtr UnityEngine.Playables.PlayableOutputHandle::m_Handle intptr_t ___m_Handle_0; // System.UInt32 UnityEngine.Playables.PlayableOutputHandle::m_Version uint32_t ___m_Version_1; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922, ___m_Handle_0)); } inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; } inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(intptr_t value) { ___m_Handle_0 = value; } inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922, ___m_Version_1)); } inline uint32_t get_m_Version_1() const { return ___m_Version_1; } inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; } inline void set_m_Version_1(uint32_t value) { ___m_Version_1 = value; } }; struct PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922_StaticFields { public: // UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.PlayableOutputHandle::m_Null PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 ___m_Null_2; public: inline static int32_t get_offset_of_m_Null_2() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922_StaticFields, ___m_Null_2)); } inline PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 get_m_Null_2() const { return ___m_Null_2; } inline PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 * get_address_of_m_Null_2() { return &___m_Null_2; } inline void set_m_Null_2(PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 value) { ___m_Null_2 = value; } }; // UnityEngine.Pose struct Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 { public: // UnityEngine.Vector3 UnityEngine.Pose::position Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0; // UnityEngine.Quaternion UnityEngine.Pose::rotation Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___rotation_1; public: inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29, ___position_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_0() const { return ___position_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_0() { return &___position_0; } inline void set_position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___position_0 = value; } inline static int32_t get_offset_of_rotation_1() { return static_cast<int32_t>(offsetof(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29, ___rotation_1)); } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_rotation_1() const { return ___rotation_1; } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_rotation_1() { return &___rotation_1; } inline void set_rotation_1(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value) { ___rotation_1 = value; } }; struct Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29_StaticFields { public: // UnityEngine.Pose UnityEngine.Pose::k_Identity Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___k_Identity_2; public: inline static int32_t get_offset_of_k_Identity_2() { return static_cast<int32_t>(offsetof(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29_StaticFields, ___k_Identity_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_k_Identity_2() const { return ___k_Identity_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_k_Identity_2() { return &___k_Identity_2; } inline void set_k_Identity_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___k_Identity_2 = value; } }; // UnityEngine.PostProcessing.AmbientOcclusionModel_SampleCount struct SampleCount_t57E4FDA1707CF46A156CF136FBDEE6C119B5A6DE { public: // System.Int32 UnityEngine.PostProcessing.AmbientOcclusionModel_SampleCount::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SampleCount_t57E4FDA1707CF46A156CF136FBDEE6C119B5A6DE, ___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.PostProcessing.AntialiasingModel_FxaaPreset struct FxaaPreset_t7A3D6AB8B20A13C6D96A3FDA28978711C1ABFC13 { public: // System.Int32 UnityEngine.PostProcessing.AntialiasingModel_FxaaPreset::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FxaaPreset_t7A3D6AB8B20A13C6D96A3FDA28978711C1ABFC13, ___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.PostProcessing.AntialiasingModel_Method struct Method_t9A51CA6AA63DE1F25694C2F439954C27F473C882 { public: // System.Int32 UnityEngine.PostProcessing.AntialiasingModel_Method::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Method_t9A51CA6AA63DE1F25694C2F439954C27F473C882, ___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.PostProcessing.BloomModel_Settings struct Settings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A { public: // UnityEngine.PostProcessing.BloomModel_BloomSettings UnityEngine.PostProcessing.BloomModel_Settings::bloom BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0 ___bloom_0; // UnityEngine.PostProcessing.BloomModel_LensDirtSettings UnityEngine.PostProcessing.BloomModel_Settings::lensDirt LensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A ___lensDirt_1; public: inline static int32_t get_offset_of_bloom_0() { return static_cast<int32_t>(offsetof(Settings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A, ___bloom_0)); } inline BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0 get_bloom_0() const { return ___bloom_0; } inline BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0 * get_address_of_bloom_0() { return &___bloom_0; } inline void set_bloom_0(BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0 value) { ___bloom_0 = value; } inline static int32_t get_offset_of_lensDirt_1() { return static_cast<int32_t>(offsetof(Settings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A, ___lensDirt_1)); } inline LensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A get_lensDirt_1() const { return ___lensDirt_1; } inline LensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A * get_address_of_lensDirt_1() { return &___lensDirt_1; } inline void set_lensDirt_1(LensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A value) { ___lensDirt_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___lensDirt_1))->___texture_0), (void*)NULL); } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.BloomModel/Settings struct Settings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A_marshaled_pinvoke { BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0_marshaled_pinvoke ___bloom_0; LensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A_marshaled_pinvoke ___lensDirt_1; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.BloomModel/Settings struct Settings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A_marshaled_com { BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0_marshaled_com ___bloom_0; LensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A_marshaled_com ___lensDirt_1; }; // UnityEngine.PostProcessing.BuiltinDebugViewsModel_Mode struct Mode_tE6D4BA29442A4ABB76D9ADE04877164873931AB7 { public: // System.Int32 UnityEngine.PostProcessing.BuiltinDebugViewsModel_Mode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Mode_tE6D4BA29442A4ABB76D9ADE04877164873931AB7, ___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.PostProcessing.ColorGradingModel_ChannelMixerSettings struct ChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B { public: // UnityEngine.Vector3 UnityEngine.PostProcessing.ColorGradingModel_ChannelMixerSettings::red Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___red_0; // UnityEngine.Vector3 UnityEngine.PostProcessing.ColorGradingModel_ChannelMixerSettings::green Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___green_1; // UnityEngine.Vector3 UnityEngine.PostProcessing.ColorGradingModel_ChannelMixerSettings::blue Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___blue_2; // System.Int32 UnityEngine.PostProcessing.ColorGradingModel_ChannelMixerSettings::currentEditingChannel int32_t ___currentEditingChannel_3; public: inline static int32_t get_offset_of_red_0() { return static_cast<int32_t>(offsetof(ChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B, ___red_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_red_0() const { return ___red_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_red_0() { return &___red_0; } inline void set_red_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___red_0 = value; } inline static int32_t get_offset_of_green_1() { return static_cast<int32_t>(offsetof(ChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B, ___green_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_green_1() const { return ___green_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_green_1() { return &___green_1; } inline void set_green_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___green_1 = value; } inline static int32_t get_offset_of_blue_2() { return static_cast<int32_t>(offsetof(ChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B, ___blue_2)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_blue_2() const { return ___blue_2; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_blue_2() { return &___blue_2; } inline void set_blue_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___blue_2 = value; } inline static int32_t get_offset_of_currentEditingChannel_3() { return static_cast<int32_t>(offsetof(ChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B, ___currentEditingChannel_3)); } inline int32_t get_currentEditingChannel_3() const { return ___currentEditingChannel_3; } inline int32_t* get_address_of_currentEditingChannel_3() { return &___currentEditingChannel_3; } inline void set_currentEditingChannel_3(int32_t value) { ___currentEditingChannel_3 = value; } }; // UnityEngine.PostProcessing.ColorGradingModel_ColorWheelMode struct ColorWheelMode_tF684466A07AFC545A3148235696DDAFE737CE34E { public: // System.Int32 UnityEngine.PostProcessing.ColorGradingModel_ColorWheelMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ColorWheelMode_tF684466A07AFC545A3148235696DDAFE737CE34E, ___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.PostProcessing.ColorGradingModel_LinearWheelsSettings struct LinearWheelsSettings_tA2E68F6BF46B81203AF36DCB129409CAB51EC704 { public: // UnityEngine.Color UnityEngine.PostProcessing.ColorGradingModel_LinearWheelsSettings::lift Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___lift_0; // UnityEngine.Color UnityEngine.PostProcessing.ColorGradingModel_LinearWheelsSettings::gamma Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___gamma_1; // UnityEngine.Color UnityEngine.PostProcessing.ColorGradingModel_LinearWheelsSettings::gain Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___gain_2; public: inline static int32_t get_offset_of_lift_0() { return static_cast<int32_t>(offsetof(LinearWheelsSettings_tA2E68F6BF46B81203AF36DCB129409CAB51EC704, ___lift_0)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_lift_0() const { return ___lift_0; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_lift_0() { return &___lift_0; } inline void set_lift_0(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___lift_0 = value; } inline static int32_t get_offset_of_gamma_1() { return static_cast<int32_t>(offsetof(LinearWheelsSettings_tA2E68F6BF46B81203AF36DCB129409CAB51EC704, ___gamma_1)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_gamma_1() const { return ___gamma_1; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_gamma_1() { return &___gamma_1; } inline void set_gamma_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___gamma_1 = value; } inline static int32_t get_offset_of_gain_2() { return static_cast<int32_t>(offsetof(LinearWheelsSettings_tA2E68F6BF46B81203AF36DCB129409CAB51EC704, ___gain_2)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_gain_2() const { return ___gain_2; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_gain_2() { return &___gain_2; } inline void set_gain_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___gain_2 = value; } }; // UnityEngine.PostProcessing.ColorGradingModel_LogWheelsSettings struct LogWheelsSettings_t6946B0985F2ECDA5D31B31D9DC70072ED0819EF5 { public: // UnityEngine.Color UnityEngine.PostProcessing.ColorGradingModel_LogWheelsSettings::slope Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___slope_0; // UnityEngine.Color UnityEngine.PostProcessing.ColorGradingModel_LogWheelsSettings::power Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___power_1; // UnityEngine.Color UnityEngine.PostProcessing.ColorGradingModel_LogWheelsSettings::offset Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___offset_2; public: inline static int32_t get_offset_of_slope_0() { return static_cast<int32_t>(offsetof(LogWheelsSettings_t6946B0985F2ECDA5D31B31D9DC70072ED0819EF5, ___slope_0)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_slope_0() const { return ___slope_0; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_slope_0() { return &___slope_0; } inline void set_slope_0(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___slope_0 = value; } inline static int32_t get_offset_of_power_1() { return static_cast<int32_t>(offsetof(LogWheelsSettings_t6946B0985F2ECDA5D31B31D9DC70072ED0819EF5, ___power_1)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_power_1() const { return ___power_1; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_power_1() { return &___power_1; } inline void set_power_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___power_1 = value; } inline static int32_t get_offset_of_offset_2() { return static_cast<int32_t>(offsetof(LogWheelsSettings_t6946B0985F2ECDA5D31B31D9DC70072ED0819EF5, ___offset_2)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_offset_2() const { return ___offset_2; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_offset_2() { return &___offset_2; } inline void set_offset_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___offset_2 = value; } }; // UnityEngine.PostProcessing.ColorGradingModel_Tonemapper struct Tonemapper_tB393B8D6ED90C74BC74C860CEE8B3D2374DEE621 { public: // System.Int32 UnityEngine.PostProcessing.ColorGradingModel_Tonemapper::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Tonemapper_tB393B8D6ED90C74BC74C860CEE8B3D2374DEE621, ___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.PostProcessing.DepthOfFieldModel_KernelSize struct KernelSize_tE92DFA32991EA99967B6FA6A9CA00BC6002B72AD { public: // System.Int32 UnityEngine.PostProcessing.DepthOfFieldModel_KernelSize::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(KernelSize_tE92DFA32991EA99967B6FA6A9CA00BC6002B72AD, ___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.PostProcessing.EyeAdaptationModel_EyeAdaptationType struct EyeAdaptationType_t4F58B587481FC6D1F5DD5A4775362728CEBBEBB5 { public: // System.Int32 UnityEngine.PostProcessing.EyeAdaptationModel_EyeAdaptationType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EyeAdaptationType_t4F58B587481FC6D1F5DD5A4775362728CEBBEBB5, ___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.PostProcessing.ScreenSpaceReflectionModel_SSRReflectionBlendType struct SSRReflectionBlendType_t11182016FBBAAEA4C9480BB658E7563133E34AF9 { public: // System.Int32 UnityEngine.PostProcessing.ScreenSpaceReflectionModel_SSRReflectionBlendType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SSRReflectionBlendType_t11182016FBBAAEA4C9480BB658E7563133E34AF9, ___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.PostProcessing.ScreenSpaceReflectionModel_SSRResolution struct SSRResolution_t40118FB40978EC7A537F3DF56576259886E87CA7 { public: // System.Int32 UnityEngine.PostProcessing.ScreenSpaceReflectionModel_SSRResolution::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SSRResolution_t40118FB40978EC7A537F3DF56576259886E87CA7, ___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.PostProcessing.VignetteModel_Mode struct Mode_t78BB10CCA9904C7105408E016CBC0AF7585A625D { public: // System.Int32 UnityEngine.PostProcessing.VignetteModel_Mode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Mode_t78BB10CCA9904C7105408E016CBC0AF7585A625D, ___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.Ray struct Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 { public: // UnityEngine.Vector3 UnityEngine.Ray::m_Origin Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Origin_0; // UnityEngine.Vector3 UnityEngine.Ray::m_Direction Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Direction_1; public: inline static int32_t get_offset_of_m_Origin_0() { return static_cast<int32_t>(offsetof(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, ___m_Origin_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Origin_0() const { return ___m_Origin_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Origin_0() { return &___m_Origin_0; } inline void set_m_Origin_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Origin_0 = value; } inline static int32_t get_offset_of_m_Direction_1() { return static_cast<int32_t>(offsetof(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, ___m_Direction_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Direction_1() const { return ___m_Direction_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Direction_1() { return &___m_Direction_1; } inline void set_m_Direction_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Direction_1 = value; } }; // UnityEngine.RaycastHit struct RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 { public: // UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Point_0; // UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_1; // System.UInt32 UnityEngine.RaycastHit::m_FaceID uint32_t ___m_FaceID_2; // System.Single UnityEngine.RaycastHit::m_Distance float ___m_Distance_3; // UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_UV_4; // System.Int32 UnityEngine.RaycastHit::m_Collider int32_t ___m_Collider_5; public: inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Point_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Point_0() const { return ___m_Point_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Point_0() { return &___m_Point_0; } inline void set_m_Point_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Point_0 = value; } inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Normal_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_1() const { return ___m_Normal_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_1() { return &___m_Normal_1; } inline void set_m_Normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Normal_1 = value; } inline static int32_t get_offset_of_m_FaceID_2() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_FaceID_2)); } inline uint32_t get_m_FaceID_2() const { return ___m_FaceID_2; } inline uint32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; } inline void set_m_FaceID_2(uint32_t value) { ___m_FaceID_2 = value; } inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Distance_3)); } inline float get_m_Distance_3() const { return ___m_Distance_3; } inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; } inline void set_m_Distance_3(float value) { ___m_Distance_3 = value; } inline static int32_t get_offset_of_m_UV_4() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_UV_4)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_UV_4() const { return ___m_UV_4; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_UV_4() { return &___m_UV_4; } inline void set_m_UV_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_UV_4 = value; } inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Collider_5)); } inline int32_t get_m_Collider_5() const { return ___m_Collider_5; } inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; } inline void set_m_Collider_5(int32_t value) { ___m_Collider_5 = value; } }; // UnityEngine.RaycastHit2D struct RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE { public: // UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Centroid_0; // UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Point_1; // UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Normal_2; // System.Single UnityEngine.RaycastHit2D::m_Distance float ___m_Distance_3; // System.Single UnityEngine.RaycastHit2D::m_Fraction float ___m_Fraction_4; // System.Int32 UnityEngine.RaycastHit2D::m_Collider int32_t ___m_Collider_5; public: inline static int32_t get_offset_of_m_Centroid_0() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Centroid_0)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Centroid_0() const { return ___m_Centroid_0; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Centroid_0() { return &___m_Centroid_0; } inline void set_m_Centroid_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_Centroid_0 = value; } inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Point_1)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Point_1() const { return ___m_Point_1; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Point_1() { return &___m_Point_1; } inline void set_m_Point_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_Point_1 = value; } inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Normal_2)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Normal_2() const { return ___m_Normal_2; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Normal_2() { return &___m_Normal_2; } inline void set_m_Normal_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_Normal_2 = value; } inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Distance_3)); } inline float get_m_Distance_3() const { return ___m_Distance_3; } inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; } inline void set_m_Distance_3(float value) { ___m_Distance_3 = value; } inline static int32_t get_offset_of_m_Fraction_4() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Fraction_4)); } inline float get_m_Fraction_4() const { return ___m_Fraction_4; } inline float* get_address_of_m_Fraction_4() { return &___m_Fraction_4; } inline void set_m_Fraction_4(float value) { ___m_Fraction_4 = value; } inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Collider_5)); } inline int32_t get_m_Collider_5() const { return ___m_Collider_5; } inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; } inline void set_m_Collider_5(int32_t value) { ___m_Collider_5 = value; } }; // UnityEngine.RenderBuffer struct RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 { public: // System.Int32 UnityEngine.RenderBuffer::m_RenderTextureInstanceID int32_t ___m_RenderTextureInstanceID_0; // System.IntPtr UnityEngine.RenderBuffer::m_BufferPtr intptr_t ___m_BufferPtr_1; public: inline static int32_t get_offset_of_m_RenderTextureInstanceID_0() { return static_cast<int32_t>(offsetof(RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6, ___m_RenderTextureInstanceID_0)); } inline int32_t get_m_RenderTextureInstanceID_0() const { return ___m_RenderTextureInstanceID_0; } inline int32_t* get_address_of_m_RenderTextureInstanceID_0() { return &___m_RenderTextureInstanceID_0; } inline void set_m_RenderTextureInstanceID_0(int32_t value) { ___m_RenderTextureInstanceID_0 = value; } inline static int32_t get_offset_of_m_BufferPtr_1() { return static_cast<int32_t>(offsetof(RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6, ___m_BufferPtr_1)); } inline intptr_t get_m_BufferPtr_1() const { return ___m_BufferPtr_1; } inline intptr_t* get_address_of_m_BufferPtr_1() { return &___m_BufferPtr_1; } inline void set_m_BufferPtr_1(intptr_t value) { ___m_BufferPtr_1 = value; } }; // UnityEngine.RenderTextureCreationFlags struct RenderTextureCreationFlags_tF63E06301E4BB4746F7E07759B359872BD4BFB1E { public: // System.Int32 UnityEngine.RenderTextureCreationFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderTextureCreationFlags_tF63E06301E4BB4746F7E07759B359872BD4BFB1E, ___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.RenderTextureMemoryless struct RenderTextureMemoryless_t19E37ADD57C1F00D67146A2BB4521D06F370D2E9 { public: // System.Int32 UnityEngine.RenderTextureMemoryless::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderTextureMemoryless_t19E37ADD57C1F00D67146A2BB4521D06F370D2E9, ___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.BuiltinRenderTextureType struct BuiltinRenderTextureType_t6ECEE9FF62E815D7ED640D057EEA84C0FD145D01 { public: // System.Int32 UnityEngine.Rendering.BuiltinRenderTextureType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BuiltinRenderTextureType_t6ECEE9FF62E815D7ED640D057EEA84C0FD145D01, ___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.LODParameters struct LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960 { public: // System.Int32 UnityEngine.Rendering.LODParameters::m_IsOrthographic int32_t ___m_IsOrthographic_0; // UnityEngine.Vector3 UnityEngine.Rendering.LODParameters::m_CameraPosition Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_CameraPosition_1; // System.Single UnityEngine.Rendering.LODParameters::m_FieldOfView float ___m_FieldOfView_2; // System.Single UnityEngine.Rendering.LODParameters::m_OrthoSize float ___m_OrthoSize_3; // System.Int32 UnityEngine.Rendering.LODParameters::m_CameraPixelHeight int32_t ___m_CameraPixelHeight_4; public: inline static int32_t get_offset_of_m_IsOrthographic_0() { return static_cast<int32_t>(offsetof(LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960, ___m_IsOrthographic_0)); } inline int32_t get_m_IsOrthographic_0() const { return ___m_IsOrthographic_0; } inline int32_t* get_address_of_m_IsOrthographic_0() { return &___m_IsOrthographic_0; } inline void set_m_IsOrthographic_0(int32_t value) { ___m_IsOrthographic_0 = value; } inline static int32_t get_offset_of_m_CameraPosition_1() { return static_cast<int32_t>(offsetof(LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960, ___m_CameraPosition_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_CameraPosition_1() const { return ___m_CameraPosition_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_CameraPosition_1() { return &___m_CameraPosition_1; } inline void set_m_CameraPosition_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_CameraPosition_1 = value; } inline static int32_t get_offset_of_m_FieldOfView_2() { return static_cast<int32_t>(offsetof(LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960, ___m_FieldOfView_2)); } inline float get_m_FieldOfView_2() const { return ___m_FieldOfView_2; } inline float* get_address_of_m_FieldOfView_2() { return &___m_FieldOfView_2; } inline void set_m_FieldOfView_2(float value) { ___m_FieldOfView_2 = value; } inline static int32_t get_offset_of_m_OrthoSize_3() { return static_cast<int32_t>(offsetof(LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960, ___m_OrthoSize_3)); } inline float get_m_OrthoSize_3() const { return ___m_OrthoSize_3; } inline float* get_address_of_m_OrthoSize_3() { return &___m_OrthoSize_3; } inline void set_m_OrthoSize_3(float value) { ___m_OrthoSize_3 = value; } inline static int32_t get_offset_of_m_CameraPixelHeight_4() { return static_cast<int32_t>(offsetof(LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960, ___m_CameraPixelHeight_4)); } inline int32_t get_m_CameraPixelHeight_4() const { return ___m_CameraPixelHeight_4; } inline int32_t* get_address_of_m_CameraPixelHeight_4() { return &___m_CameraPixelHeight_4; } inline void set_m_CameraPixelHeight_4(int32_t value) { ___m_CameraPixelHeight_4 = value; } }; // UnityEngine.Rendering.ScriptableRenderContext struct ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B { public: // System.IntPtr UnityEngine.Rendering.ScriptableRenderContext::m_Ptr intptr_t ___m_Ptr_0; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B, ___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; } }; // UnityEngine.Rendering.ShadowSamplingMode struct ShadowSamplingMode_t585A9BDECAC505FF19FF785F55CDD403A2E5DA73 { public: // System.Int32 UnityEngine.Rendering.ShadowSamplingMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ShadowSamplingMode_t585A9BDECAC505FF19FF785F55CDD403A2E5DA73, ___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_t90D0E4110D3F4D062F3E8C0F69809BFBBDF8E19C { 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_t90D0E4110D3F4D062F3E8C0F69809BFBBDF8E19C, ___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.SceneManagement.LoadSceneMode struct LoadSceneMode_t75F0B96794398942671B8315D2A9AC25C40A22D5 { public: // System.Int32 UnityEngine.SceneManagement.LoadSceneMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LoadSceneMode_t75F0B96794398942671B8315D2A9AC25C40A22D5, ___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.SceneManagement.LocalPhysicsMode struct LocalPhysicsMode_t6B9ECF9ECF2D2BF2D0B65FE053E7B2235BC4C385 { public: // System.Int32 UnityEngine.SceneManagement.LocalPhysicsMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LocalPhysicsMode_t6B9ECF9ECF2D2BF2D0B65FE053E7B2235BC4C385, ___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.TextAnchor struct TextAnchor_tEC19034D476659A5E05366C63564F34DD30E7C57 { public: // System.Int32 UnityEngine.TextAnchor::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextAnchor_tEC19034D476659A5E05366C63564F34DD30E7C57, ___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.Tilemaps.Tile_ColliderType struct ColliderType_tCF48B308BF04CE1D262A726D500126E8C8859F2B { public: // System.Int32 UnityEngine.Tilemaps.Tile_ColliderType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ColliderType_tCF48B308BF04CE1D262A726D500126E8C8859F2B, ___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.Tilemaps.TileFlags struct TileFlags_tBD601639E3CC4B4BA675548F3B8F17B709A974AF { public: // System.Int32 UnityEngine.Tilemaps.TileFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TileFlags_tBD601639E3CC4B4BA675548F3B8F17B709A974AF, ___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.TouchPhase struct TouchPhase_tD902305F0B673116C42548A58E8BEED50177A33D { public: // System.Int32 UnityEngine.TouchPhase::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchPhase_tD902305F0B673116C42548A58E8BEED50177A33D, ___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.TouchType struct TouchType_t27DBEAB2242247A15EDE96D740F7EB73ACC938DB { public: // System.Int32 UnityEngine.TouchType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchType_t27DBEAB2242247A15EDE96D740F7EB73ACC938DB, ___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.UI.ColorBlock struct ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA { public: // UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_NormalColor_0; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_HighlightedColor_1; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_PressedColor_2; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_SelectedColor Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_SelectedColor_3; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_DisabledColor_4; // System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier float ___m_ColorMultiplier_5; // System.Single UnityEngine.UI.ColorBlock::m_FadeDuration float ___m_FadeDuration_6; public: inline static int32_t get_offset_of_m_NormalColor_0() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_NormalColor_0)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_NormalColor_0() const { return ___m_NormalColor_0; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_NormalColor_0() { return &___m_NormalColor_0; } inline void set_m_NormalColor_0(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___m_NormalColor_0 = value; } inline static int32_t get_offset_of_m_HighlightedColor_1() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_HighlightedColor_1)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_HighlightedColor_1() const { return ___m_HighlightedColor_1; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_HighlightedColor_1() { return &___m_HighlightedColor_1; } inline void set_m_HighlightedColor_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___m_HighlightedColor_1 = value; } inline static int32_t get_offset_of_m_PressedColor_2() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_PressedColor_2)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_PressedColor_2() const { return ___m_PressedColor_2; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_PressedColor_2() { return &___m_PressedColor_2; } inline void set_m_PressedColor_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___m_PressedColor_2 = value; } inline static int32_t get_offset_of_m_SelectedColor_3() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_SelectedColor_3)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_SelectedColor_3() const { return ___m_SelectedColor_3; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_SelectedColor_3() { return &___m_SelectedColor_3; } inline void set_m_SelectedColor_3(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___m_SelectedColor_3 = value; } inline static int32_t get_offset_of_m_DisabledColor_4() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_DisabledColor_4)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_DisabledColor_4() const { return ___m_DisabledColor_4; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_DisabledColor_4() { return &___m_DisabledColor_4; } inline void set_m_DisabledColor_4(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___m_DisabledColor_4 = value; } inline static int32_t get_offset_of_m_ColorMultiplier_5() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_ColorMultiplier_5)); } inline float get_m_ColorMultiplier_5() const { return ___m_ColorMultiplier_5; } inline float* get_address_of_m_ColorMultiplier_5() { return &___m_ColorMultiplier_5; } inline void set_m_ColorMultiplier_5(float value) { ___m_ColorMultiplier_5 = value; } inline static int32_t get_offset_of_m_FadeDuration_6() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_FadeDuration_6)); } inline float get_m_FadeDuration_6() const { return ___m_FadeDuration_6; } inline float* get_address_of_m_FadeDuration_6() { return &___m_FadeDuration_6; } inline void set_m_FadeDuration_6(float value) { ___m_FadeDuration_6 = value; } }; // UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenMode struct ColorTweenMode_tDCE018D37330F576ACCD00D16CAF91AE55315F2F { 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_tDCE018D37330F576ACCD00D16CAF91AE55315F2F, ___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.UI.Navigation_Mode struct Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26 { public: // System.Int32 UnityEngine.UI.Navigation_Mode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26, ___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.UICharInfo struct UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A { public: // UnityEngine.Vector2 UnityEngine.UICharInfo::cursorPos Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___cursorPos_0; // System.Single UnityEngine.UICharInfo::charWidth float ___charWidth_1; public: inline static int32_t get_offset_of_cursorPos_0() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___cursorPos_0)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_cursorPos_0() const { return ___cursorPos_0; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_cursorPos_0() { return &___cursorPos_0; } inline void set_cursorPos_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___cursorPos_0 = value; } inline static int32_t get_offset_of_charWidth_1() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___charWidth_1)); } inline float get_charWidth_1() const { return ___charWidth_1; } inline float* get_address_of_charWidth_1() { return &___charWidth_1; } inline void set_charWidth_1(float value) { ___charWidth_1 = value; } }; // UnityEngine.UIVertex struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 { public: // UnityEngine.Vector3 UnityEngine.UIVertex::position Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0; // UnityEngine.Vector3 UnityEngine.UIVertex::normal Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___normal_1; // UnityEngine.Vector4 UnityEngine.UIVertex::tangent Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___tangent_2; // UnityEngine.Color32 UnityEngine.UIVertex::color Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_3; // UnityEngine.Vector2 UnityEngine.UIVertex::uv0 Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv0_4; // UnityEngine.Vector2 UnityEngine.UIVertex::uv1 Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv1_5; // UnityEngine.Vector2 UnityEngine.UIVertex::uv2 Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv2_6; // UnityEngine.Vector2 UnityEngine.UIVertex::uv3 Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv3_7; public: inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___position_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_0() const { return ___position_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_0() { return &___position_0; } inline void set_position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___position_0 = value; } inline static int32_t get_offset_of_normal_1() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___normal_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_normal_1() const { return ___normal_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_normal_1() { return &___normal_1; } inline void set_normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___normal_1 = value; } inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___tangent_2)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_tangent_2() const { return ___tangent_2; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_tangent_2() { return &___tangent_2; } inline void set_tangent_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___tangent_2 = value; } inline static int32_t get_offset_of_color_3() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___color_3)); } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_color_3() const { return ___color_3; } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_color_3() { return &___color_3; } inline void set_color_3(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value) { ___color_3 = value; } inline static int32_t get_offset_of_uv0_4() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv0_4)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv0_4() const { return ___uv0_4; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv0_4() { return &___uv0_4; } inline void set_uv0_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___uv0_4 = value; } inline static int32_t get_offset_of_uv1_5() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv1_5)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv1_5() const { return ___uv1_5; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv1_5() { return &___uv1_5; } inline void set_uv1_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___uv1_5 = value; } inline static int32_t get_offset_of_uv2_6() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv2_6)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv2_6() const { return ___uv2_6; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv2_6() { return &___uv2_6; } inline void set_uv2_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___uv2_6 = value; } inline static int32_t get_offset_of_uv3_7() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv3_7)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv3_7() const { return ___uv3_7; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv3_7() { return &___uv3_7; } inline void set_uv3_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___uv3_7 = value; } }; struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields { public: // UnityEngine.Color32 UnityEngine.UIVertex::s_DefaultColor Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___s_DefaultColor_8; // UnityEngine.Vector4 UnityEngine.UIVertex::s_DefaultTangent Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___s_DefaultTangent_9; // UnityEngine.UIVertex UnityEngine.UIVertex::simpleVert UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___simpleVert_10; public: inline static int32_t get_offset_of_s_DefaultColor_8() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultColor_8)); } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_s_DefaultColor_8() const { return ___s_DefaultColor_8; } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_s_DefaultColor_8() { return &___s_DefaultColor_8; } inline void set_s_DefaultColor_8(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value) { ___s_DefaultColor_8 = value; } inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultTangent_9)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; } inline void set_s_DefaultTangent_9(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___s_DefaultTangent_9 = value; } inline static int32_t get_offset_of_simpleVert_10() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___simpleVert_10)); } inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 get_simpleVert_10() const { return ___simpleVert_10; } inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * get_address_of_simpleVert_10() { return &___simpleVert_10; } inline void set_simpleVert_10(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value) { ___simpleVert_10 = value; } }; // UnityEngine.VRTextureUsage struct VRTextureUsage_t2D7C2397ABF03DD28086B969100F7D91DDD978A0 { public: // System.Int32 UnityEngine.VRTextureUsage::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VRTextureUsage_t2D7C2397ABF03DD28086B969100F7D91DDD978A0, ___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.VerticalWrapMode struct VerticalWrapMode_tD909C5B2F6A25AE3797BC71373196D850FC845E9 { public: // System.Int32 UnityEngine.VerticalWrapMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VerticalWrapMode_tD909C5B2F6A25AE3797BC71373196D850FC845E9, ___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.Windows.Speech.ConfidenceLevel struct ConfidenceLevel_t56554EC6B602F1294B9E933704E2EC961906AA36 { public: // System.Int32 UnityEngine.Windows.Speech.ConfidenceLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConfidenceLevel_t56554EC6B602F1294B9E933704E2EC961906AA36, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.XR.AvailableTrackingData struct AvailableTrackingData_tF1140FC398AFB5CA7E9FBBBC8ECB242E91E86AAD { public: // System.Int32 UnityEngine.XR.AvailableTrackingData::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AvailableTrackingData_tF1140FC398AFB5CA7E9FBBBC8ECB242E91E86AAD, ___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.InputFeatureType struct InputFeatureType_t683990CF03F80321E203CDC5EDCA5846BB56BAF4 { public: // System.UInt32 UnityEngine.XR.InputFeatureType::value__ uint32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputFeatureType_t683990CF03F80321E203CDC5EDCA5846BB56BAF4, ___value___2)); } inline uint32_t get_value___2() const { return ___value___2; } inline uint32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint32_t value) { ___value___2 = value; } }; // UnityEngine.XR.WSA.Input.InteractionSourceFlags struct InteractionSourceFlags_tFEED23CE62EF1B04EEBB6C7DD1CA6921D73E9BBE { public: // System.Int32 UnityEngine.XR.WSA.Input.InteractionSourceFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InteractionSourceFlags_tFEED23CE62EF1B04EEBB6C7DD1CA6921D73E9BBE, ___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.WSA.Input.InteractionSourceHandedness struct InteractionSourceHandedness_t10FDFBFAABBC3E04468D3AE77CE3614E7DD9308E { public: // System.Int32 UnityEngine.XR.WSA.Input.InteractionSourceHandedness::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InteractionSourceHandedness_t10FDFBFAABBC3E04468D3AE77CE3614E7DD9308E, ___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.WSA.Input.InteractionSourceKind struct InteractionSourceKind_t5405F2951F4D1FC7D041FBAC720950BDA3CD3819 { public: // System.Int32 UnityEngine.XR.WSA.Input.InteractionSourceKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InteractionSourceKind_t5405F2951F4D1FC7D041FBAC720950BDA3CD3819, ___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.WSA.Input.InteractionSourcePoseFlags struct InteractionSourcePoseFlags_t46E1164F226BCDCDEAD84C338483E7A401794BA8 { public: // System.Int32 UnityEngine.XR.WSA.Input.InteractionSourcePoseFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InteractionSourcePoseFlags_t46E1164F226BCDCDEAD84C338483E7A401794BA8, ___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.WSA.Input.InteractionSourcePositionAccuracy struct InteractionSourcePositionAccuracy_t53AC6BBABBE0182903C6CA4529BD2FA3479276AD { public: // System.Int32 UnityEngine.XR.WSA.Input.InteractionSourcePositionAccuracy::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InteractionSourcePositionAccuracy_t53AC6BBABBE0182903C6CA4529BD2FA3479276AD, ___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.WSA.Input.InteractionSourcePressType struct InteractionSourcePressType_tC4234E53B3E760D31EC9D35FF56FE667D33A182D { public: // System.Int32 UnityEngine.XR.WSA.Input.InteractionSourcePressType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InteractionSourcePressType_tC4234E53B3E760D31EC9D35FF56FE667D33A182D, ___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.WSA.Input.InteractionSourceStateFlags struct InteractionSourceStateFlags_t44E9FA88305A647259525473BD922773CACB5905 { public: // System.Int32 UnityEngine.XR.WSA.Input.InteractionSourceStateFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InteractionSourceStateFlags_t44E9FA88305A647259525473BD922773CACB5905, ___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.WSA.SurfaceData struct SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66 { public: // UnityEngine.XR.WSA.SurfaceId UnityEngine.XR.WSA.SurfaceData::id SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF ___id_0; // UnityEngine.MeshFilter UnityEngine.XR.WSA.SurfaceData::outputMesh MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * ___outputMesh_1; // UnityEngine.XR.WSA.WorldAnchor UnityEngine.XR.WSA.SurfaceData::outputAnchor WorldAnchor_tD6275232D14415769601A3BD6AE1E7D5622F96EE * ___outputAnchor_2; // UnityEngine.MeshCollider UnityEngine.XR.WSA.SurfaceData::outputCollider MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___outputCollider_3; // System.Single UnityEngine.XR.WSA.SurfaceData::trianglesPerCubicMeter float ___trianglesPerCubicMeter_4; // System.Boolean UnityEngine.XR.WSA.SurfaceData::bakeCollider bool ___bakeCollider_5; public: inline static int32_t get_offset_of_id_0() { return static_cast<int32_t>(offsetof(SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66, ___id_0)); } inline SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF get_id_0() const { return ___id_0; } inline SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF * get_address_of_id_0() { return &___id_0; } inline void set_id_0(SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF value) { ___id_0 = value; } inline static int32_t get_offset_of_outputMesh_1() { return static_cast<int32_t>(offsetof(SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66, ___outputMesh_1)); } inline MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * get_outputMesh_1() const { return ___outputMesh_1; } inline MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 ** get_address_of_outputMesh_1() { return &___outputMesh_1; } inline void set_outputMesh_1(MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * value) { ___outputMesh_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___outputMesh_1), (void*)value); } inline static int32_t get_offset_of_outputAnchor_2() { return static_cast<int32_t>(offsetof(SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66, ___outputAnchor_2)); } inline WorldAnchor_tD6275232D14415769601A3BD6AE1E7D5622F96EE * get_outputAnchor_2() const { return ___outputAnchor_2; } inline WorldAnchor_tD6275232D14415769601A3BD6AE1E7D5622F96EE ** get_address_of_outputAnchor_2() { return &___outputAnchor_2; } inline void set_outputAnchor_2(WorldAnchor_tD6275232D14415769601A3BD6AE1E7D5622F96EE * value) { ___outputAnchor_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___outputAnchor_2), (void*)value); } inline static int32_t get_offset_of_outputCollider_3() { return static_cast<int32_t>(offsetof(SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66, ___outputCollider_3)); } inline MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * get_outputCollider_3() const { return ___outputCollider_3; } inline MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE ** get_address_of_outputCollider_3() { return &___outputCollider_3; } inline void set_outputCollider_3(MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * value) { ___outputCollider_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___outputCollider_3), (void*)value); } inline static int32_t get_offset_of_trianglesPerCubicMeter_4() { return static_cast<int32_t>(offsetof(SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66, ___trianglesPerCubicMeter_4)); } inline float get_trianglesPerCubicMeter_4() const { return ___trianglesPerCubicMeter_4; } inline float* get_address_of_trianglesPerCubicMeter_4() { return &___trianglesPerCubicMeter_4; } inline void set_trianglesPerCubicMeter_4(float value) { ___trianglesPerCubicMeter_4 = value; } inline static int32_t get_offset_of_bakeCollider_5() { return static_cast<int32_t>(offsetof(SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66, ___bakeCollider_5)); } inline bool get_bakeCollider_5() const { return ___bakeCollider_5; } inline bool* get_address_of_bakeCollider_5() { return &___bakeCollider_5; } inline void set_bakeCollider_5(bool value) { ___bakeCollider_5 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.XR.WSA.SurfaceData struct SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66_marshaled_pinvoke { SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF ___id_0; MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * ___outputMesh_1; WorldAnchor_tD6275232D14415769601A3BD6AE1E7D5622F96EE * ___outputAnchor_2; MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___outputCollider_3; float ___trianglesPerCubicMeter_4; int32_t ___bakeCollider_5; }; // Native definition for COM marshalling of UnityEngine.XR.WSA.SurfaceData struct SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66_marshaled_com { SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF ___id_0; MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * ___outputMesh_1; WorldAnchor_tD6275232D14415769601A3BD6AE1E7D5622F96EE * ___outputAnchor_2; MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___outputCollider_3; float ___trianglesPerCubicMeter_4; int32_t ___bakeCollider_5; }; // UnityEngine.XR.WSA.WebCam.PhotoCapture_CaptureResultType struct CaptureResultType_t6558EC085D1F5804260CE9BAE4754D4F1D55C657 { public: // System.Int32 UnityEngine.XR.WSA.WebCam.PhotoCapture_CaptureResultType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CaptureResultType_t6558EC085D1F5804260CE9BAE4754D4F1D55C657, ___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.WSA.WebCam.VideoCapture_CaptureResultType struct CaptureResultType_tE8A9D5707D57A1045C26B4B6E33D60E8D43AFFBE { public: // System.Int32 UnityEngine.XR.WSA.WebCam.VideoCapture_CaptureResultType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CaptureResultType_tE8A9D5707D57A1045C26B4B6E33D60E8D43AFFBE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.XR.XRNode struct XRNode_tC8909A28AC7B1B4D71839715DDC1011895BA5F5F { public: // System.Int32 UnityEngine.XR.XRNode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XRNode_tC8909A28AC7B1B4D71839715DDC1011895BA5F5F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum> struct Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Resources.ResourceLocator> struct Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___dictionary_0)); } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___current_3)); } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->____value_0), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object> struct Enumerator_t2EDE6E26336E2877DCC9EE6FEB16C78BB83848B4 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_t283EECF1507E23DEAA390A103471739BF608C018 * ___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_tBF49E6D84C3874E47C1681064699318B6BBA4A27 ___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_t2EDE6E26336E2877DCC9EE6FEB16C78BB83848B4, ___dictionary_0)); } inline Dictionary_2_t283EECF1507E23DEAA390A103471739BF608C018 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t283EECF1507E23DEAA390A103471739BF608C018 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t283EECF1507E23DEAA390A103471739BF608C018 * 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_t2EDE6E26336E2877DCC9EE6FEB16C78BB83848B4, ___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_t2EDE6E26336E2877DCC9EE6FEB16C78BB83848B4, ___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_t2EDE6E26336E2877DCC9EE6FEB16C78BB83848B4, ___current_3)); } inline KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 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_t2EDE6E26336E2877DCC9EE6FEB16C78BB83848B4, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Int32Enum> struct Enumerator_t1A2412749D128EFB09246B3515C978C55AB97AE7 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * ___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_t1A2412749D128EFB09246B3515C978C55AB97AE7, ___dictionary_0)); } inline Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1A2412749D128EFB09246B3515C978C55AB97AE7, ___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_t1A2412749D128EFB09246B3515C978C55AB97AE7, ___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_t1A2412749D128EFB09246B3515C978C55AB97AE7, ___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; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object> struct KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum> struct KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755, ___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_tAF60C2042FF9801393411C345D151C0E632D9755, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Collections.Generic.List`1_Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct Enumerator_tC2AA66EAA1C0E0866F7FF4C03B9B46ED328C259B { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tC2AA66EAA1C0E0866F7FF4C03B9B46ED328C259B, ___list_0)); } inline List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1 * get_list_0() const { return ___list_0; } inline List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tC2AA66EAA1C0E0866F7FF4C03B9B46ED328C259B, ___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_tC2AA66EAA1C0E0866F7FF4C03B9B46ED328C259B, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tC2AA66EAA1C0E0866F7FF4C03B9B46ED328C259B, ___current_3)); } inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B get_current_3() const { return ___current_3; } inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } }; // System.Collections.Generic.List`1_Enumerator<System.Int32Enum> struct Enumerator_t466722FA3B0808834F81142CF36A155FB30BA42D { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t116A3B8CE581BED3D4552A7F22FE553557ADC4C5 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current int32_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t466722FA3B0808834F81142CF36A155FB30BA42D, ___list_0)); } inline List_1_t116A3B8CE581BED3D4552A7F22FE553557ADC4C5 * get_list_0() const { return ___list_0; } inline List_1_t116A3B8CE581BED3D4552A7F22FE553557ADC4C5 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t116A3B8CE581BED3D4552A7F22FE553557ADC4C5 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t466722FA3B0808834F81142CF36A155FB30BA42D, ___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_t466722FA3B0808834F81142CF36A155FB30BA42D, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t466722FA3B0808834F81142CF36A155FB30BA42D, ___current_3)); } inline int32_t get_current_3() const { return ___current_3; } inline int32_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(int32_t value) { ___current_3 = value; } }; // System.Collections.Generic.List`1_Enumerator<UnityEngine.EventSystems.RaycastResult> struct Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_tB291263EEE72B9F137CA4DC19F039DE672D08028 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618, ___list_0)); } inline List_1_tB291263EEE72B9F137CA4DC19F039DE672D08028 * get_list_0() const { return ___list_0; } inline List_1_tB291263EEE72B9F137CA4DC19F039DE672D08028 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tB291263EEE72B9F137CA4DC19F039DE672D08028 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618, ___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_tA27E2343069402A698ECAD46C2DC47ACD7786618, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618, ___current_3)); } inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 get_current_3() const { return ___current_3; } inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_GameObject_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___module_1), (void*)NULL); #endif } }; // System.Collections.Generic.List`1_Enumerator<UnityEngine.RaycastHit2D> struct Enumerator_tD560D253141BCDFD156853DB97521A047D18CB72 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t0F62CCE949E86085F8C12C989DB33BF40F2B73A9 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tD560D253141BCDFD156853DB97521A047D18CB72, ___list_0)); } inline List_1_t0F62CCE949E86085F8C12C989DB33BF40F2B73A9 * get_list_0() const { return ___list_0; } inline List_1_t0F62CCE949E86085F8C12C989DB33BF40F2B73A9 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t0F62CCE949E86085F8C12C989DB33BF40F2B73A9 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tD560D253141BCDFD156853DB97521A047D18CB72, ___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_tD560D253141BCDFD156853DB97521A047D18CB72, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tD560D253141BCDFD156853DB97521A047D18CB72, ___current_3)); } inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE get_current_3() const { return ___current_3; } inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE * get_address_of_current_3() { return &___current_3; } inline void set_current_3(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE value) { ___current_3 = value; } }; // System.Collections.Generic.List`1_Enumerator<UnityEngine.UICharInfo> struct Enumerator_tC74B83EBD6E429004D77BE34197889A60AE87C4F { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_tD850FBA632A52824016AAA9B3748BA38F51E087E * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tC74B83EBD6E429004D77BE34197889A60AE87C4F, ___list_0)); } inline List_1_tD850FBA632A52824016AAA9B3748BA38F51E087E * get_list_0() const { return ___list_0; } inline List_1_tD850FBA632A52824016AAA9B3748BA38F51E087E ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tD850FBA632A52824016AAA9B3748BA38F51E087E * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tC74B83EBD6E429004D77BE34197889A60AE87C4F, ___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_tC74B83EBD6E429004D77BE34197889A60AE87C4F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tC74B83EBD6E429004D77BE34197889A60AE87C4F, ___current_3)); } inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A get_current_3() const { return ___current_3; } inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A * get_address_of_current_3() { return &___current_3; } inline void set_current_3(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A value) { ___current_3 = value; } }; // System.Collections.Generic.List`1_Enumerator<UnityEngine.UIVertex> struct Enumerator_tB8E2767D02BACB3BBF4CD57DE113A222EE0CC3D4 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t4CE16E1B496C9FE941554BB47727DFDD7C3D9554 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tB8E2767D02BACB3BBF4CD57DE113A222EE0CC3D4, ___list_0)); } inline List_1_t4CE16E1B496C9FE941554BB47727DFDD7C3D9554 * get_list_0() const { return ___list_0; } inline List_1_t4CE16E1B496C9FE941554BB47727DFDD7C3D9554 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t4CE16E1B496C9FE941554BB47727DFDD7C3D9554 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB8E2767D02BACB3BBF4CD57DE113A222EE0CC3D4, ___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_tB8E2767D02BACB3BBF4CD57DE113A222EE0CC3D4, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tB8E2767D02BACB3BBF4CD57DE113A222EE0CC3D4, ___current_3)); } inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 get_current_3() const { return ___current_3; } inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value) { ___current_3 = value; } }; // System.ConsoleKeyInfo struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 { public: // System.Char System.ConsoleKeyInfo::_keyChar Il2CppChar ____keyChar_0; // System.ConsoleKey System.ConsoleKeyInfo::_key int32_t ____key_1; // System.ConsoleModifiers System.ConsoleKeyInfo::_mods int32_t ____mods_2; public: inline static int32_t get_offset_of__keyChar_0() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____keyChar_0)); } inline Il2CppChar get__keyChar_0() const { return ____keyChar_0; } inline Il2CppChar* get_address_of__keyChar_0() { return &____keyChar_0; } inline void set__keyChar_0(Il2CppChar value) { ____keyChar_0 = value; } inline static int32_t get_offset_of__key_1() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____key_1)); } inline int32_t get__key_1() const { return ____key_1; } inline int32_t* get_address_of__key_1() { return &____key_1; } inline void set__key_1(int32_t value) { ____key_1 = value; } inline static int32_t get_offset_of__mods_2() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____mods_2)); } inline int32_t get__mods_2() const { return ____mods_2; } inline int32_t* get_address_of__mods_2() { return &____mods_2; } inline void set__mods_2(int32_t value) { ____mods_2 = value; } }; // Native definition for P/Invoke marshalling of System.ConsoleKeyInfo struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_pinvoke { uint8_t ____keyChar_0; int32_t ____key_1; int32_t ____mods_2; }; // Native definition for COM marshalling of System.ConsoleKeyInfo struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_com { uint8_t ____keyChar_0; int32_t ____key_1; int32_t ____mods_2; }; // System.DTSubString struct DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D { public: // System.String System.DTSubString::s String_t* ___s_0; // System.Int32 System.DTSubString::index int32_t ___index_1; // System.Int32 System.DTSubString::length int32_t ___length_2; // System.DTSubStringType System.DTSubString::type int32_t ___type_3; // System.Int32 System.DTSubString::value int32_t ___value_4; public: inline static int32_t get_offset_of_s_0() { return static_cast<int32_t>(offsetof(DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D, ___s_0)); } inline String_t* get_s_0() const { return ___s_0; } inline String_t** get_address_of_s_0() { return &___s_0; } inline void set_s_0(String_t* value) { ___s_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D, ___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_length_2() { return static_cast<int32_t>(offsetof(DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D, ___length_2)); } inline int32_t get_length_2() const { return ___length_2; } inline int32_t* get_address_of_length_2() { return &___length_2; } inline void set_length_2(int32_t value) { ___length_2 = value; } inline static int32_t get_offset_of_type_3() { return static_cast<int32_t>(offsetof(DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D, ___type_3)); } inline int32_t get_type_3() const { return ___type_3; } inline int32_t* get_address_of_type_3() { return &___type_3; } inline void set_type_3(int32_t value) { ___type_3 = value; } inline static int32_t get_offset_of_value_4() { return static_cast<int32_t>(offsetof(DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D, ___value_4)); } inline int32_t get_value_4() const { return ___value_4; } inline int32_t* get_address_of_value_4() { return &___value_4; } inline void set_value_4(int32_t value) { ___value_4 = value; } }; // Native definition for P/Invoke marshalling of System.DTSubString struct DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshaled_pinvoke { char* ___s_0; int32_t ___index_1; int32_t ___length_2; int32_t ___type_3; int32_t ___value_4; }; // Native definition for COM marshalling of System.DTSubString struct DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshaled_com { Il2CppChar* ___s_0; int32_t ___index_1; int32_t ___length_2; int32_t ___type_3; int32_t ___value_4; }; // System.Reflection.MonoEventInfo struct MonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB { public: // System.Type System.Reflection.MonoEventInfo::declaring_type Type_t * ___declaring_type_0; // System.Type System.Reflection.MonoEventInfo::reflected_type Type_t * ___reflected_type_1; // System.String System.Reflection.MonoEventInfo::name String_t* ___name_2; // System.Reflection.MethodInfo System.Reflection.MonoEventInfo::add_method MethodInfo_t * ___add_method_3; // System.Reflection.MethodInfo System.Reflection.MonoEventInfo::remove_method MethodInfo_t * ___remove_method_4; // System.Reflection.MethodInfo System.Reflection.MonoEventInfo::raise_method MethodInfo_t * ___raise_method_5; // System.Reflection.EventAttributes System.Reflection.MonoEventInfo::attrs int32_t ___attrs_6; // System.Reflection.MethodInfo[] System.Reflection.MonoEventInfo::other_methods MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* ___other_methods_7; public: inline static int32_t get_offset_of_declaring_type_0() { return static_cast<int32_t>(offsetof(MonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB, ___declaring_type_0)); } inline Type_t * get_declaring_type_0() const { return ___declaring_type_0; } inline Type_t ** get_address_of_declaring_type_0() { return &___declaring_type_0; } inline void set_declaring_type_0(Type_t * value) { ___declaring_type_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___declaring_type_0), (void*)value); } inline static int32_t get_offset_of_reflected_type_1() { return static_cast<int32_t>(offsetof(MonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB, ___reflected_type_1)); } inline Type_t * get_reflected_type_1() const { return ___reflected_type_1; } inline Type_t ** get_address_of_reflected_type_1() { return &___reflected_type_1; } inline void set_reflected_type_1(Type_t * value) { ___reflected_type_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___reflected_type_1), (void*)value); } inline static int32_t get_offset_of_name_2() { return static_cast<int32_t>(offsetof(MonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB, ___name_2)); } inline String_t* get_name_2() const { return ___name_2; } inline String_t** get_address_of_name_2() { return &___name_2; } inline void set_name_2(String_t* value) { ___name_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_2), (void*)value); } inline static int32_t get_offset_of_add_method_3() { return static_cast<int32_t>(offsetof(MonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB, ___add_method_3)); } inline MethodInfo_t * get_add_method_3() const { return ___add_method_3; } inline MethodInfo_t ** get_address_of_add_method_3() { return &___add_method_3; } inline void set_add_method_3(MethodInfo_t * value) { ___add_method_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___add_method_3), (void*)value); } inline static int32_t get_offset_of_remove_method_4() { return static_cast<int32_t>(offsetof(MonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB, ___remove_method_4)); } inline MethodInfo_t * get_remove_method_4() const { return ___remove_method_4; } inline MethodInfo_t ** get_address_of_remove_method_4() { return &___remove_method_4; } inline void set_remove_method_4(MethodInfo_t * value) { ___remove_method_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___remove_method_4), (void*)value); } inline static int32_t get_offset_of_raise_method_5() { return static_cast<int32_t>(offsetof(MonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB, ___raise_method_5)); } inline MethodInfo_t * get_raise_method_5() const { return ___raise_method_5; } inline MethodInfo_t ** get_address_of_raise_method_5() { return &___raise_method_5; } inline void set_raise_method_5(MethodInfo_t * value) { ___raise_method_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___raise_method_5), (void*)value); } inline static int32_t get_offset_of_attrs_6() { return static_cast<int32_t>(offsetof(MonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB, ___attrs_6)); } inline int32_t get_attrs_6() const { return ___attrs_6; } inline int32_t* get_address_of_attrs_6() { return &___attrs_6; } inline void set_attrs_6(int32_t value) { ___attrs_6 = value; } inline static int32_t get_offset_of_other_methods_7() { return static_cast<int32_t>(offsetof(MonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB, ___other_methods_7)); } inline MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* get_other_methods_7() const { return ___other_methods_7; } inline MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B** get_address_of_other_methods_7() { return &___other_methods_7; } inline void set_other_methods_7(MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* value) { ___other_methods_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___other_methods_7), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.MonoEventInfo struct MonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB_marshaled_pinvoke { Type_t * ___declaring_type_0; Type_t * ___reflected_type_1; char* ___name_2; MethodInfo_t * ___add_method_3; MethodInfo_t * ___remove_method_4; MethodInfo_t * ___raise_method_5; int32_t ___attrs_6; MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* ___other_methods_7; }; // Native definition for COM marshalling of System.Reflection.MonoEventInfo struct MonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB_marshaled_com { Type_t * ___declaring_type_0; Type_t * ___reflected_type_1; Il2CppChar* ___name_2; MethodInfo_t * ___add_method_3; MethodInfo_t * ___remove_method_4; MethodInfo_t * ___raise_method_5; int32_t ___attrs_6; MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* ___other_methods_7; }; // System.Reflection.MonoMethodInfo struct MonoMethodInfo_t846D423B6DB28262B9AC22C1D07EC38D23DF7D5D { public: // System.Type System.Reflection.MonoMethodInfo::parent Type_t * ___parent_0; // System.Type System.Reflection.MonoMethodInfo::ret Type_t * ___ret_1; // System.Reflection.MethodAttributes System.Reflection.MonoMethodInfo::attrs int32_t ___attrs_2; // System.Reflection.MethodImplAttributes System.Reflection.MonoMethodInfo::iattrs int32_t ___iattrs_3; // System.Reflection.CallingConventions System.Reflection.MonoMethodInfo::callconv int32_t ___callconv_4; public: inline static int32_t get_offset_of_parent_0() { return static_cast<int32_t>(offsetof(MonoMethodInfo_t846D423B6DB28262B9AC22C1D07EC38D23DF7D5D, ___parent_0)); } inline Type_t * get_parent_0() const { return ___parent_0; } inline Type_t ** get_address_of_parent_0() { return &___parent_0; } inline void set_parent_0(Type_t * value) { ___parent_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_0), (void*)value); } inline static int32_t get_offset_of_ret_1() { return static_cast<int32_t>(offsetof(MonoMethodInfo_t846D423B6DB28262B9AC22C1D07EC38D23DF7D5D, ___ret_1)); } inline Type_t * get_ret_1() const { return ___ret_1; } inline Type_t ** get_address_of_ret_1() { return &___ret_1; } inline void set_ret_1(Type_t * value) { ___ret_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ret_1), (void*)value); } inline static int32_t get_offset_of_attrs_2() { return static_cast<int32_t>(offsetof(MonoMethodInfo_t846D423B6DB28262B9AC22C1D07EC38D23DF7D5D, ___attrs_2)); } inline int32_t get_attrs_2() const { return ___attrs_2; } inline int32_t* get_address_of_attrs_2() { return &___attrs_2; } inline void set_attrs_2(int32_t value) { ___attrs_2 = value; } inline static int32_t get_offset_of_iattrs_3() { return static_cast<int32_t>(offsetof(MonoMethodInfo_t846D423B6DB28262B9AC22C1D07EC38D23DF7D5D, ___iattrs_3)); } inline int32_t get_iattrs_3() const { return ___iattrs_3; } inline int32_t* get_address_of_iattrs_3() { return &___iattrs_3; } inline void set_iattrs_3(int32_t value) { ___iattrs_3 = value; } inline static int32_t get_offset_of_callconv_4() { return static_cast<int32_t>(offsetof(MonoMethodInfo_t846D423B6DB28262B9AC22C1D07EC38D23DF7D5D, ___callconv_4)); } inline int32_t get_callconv_4() const { return ___callconv_4; } inline int32_t* get_address_of_callconv_4() { return &___callconv_4; } inline void set_callconv_4(int32_t value) { ___callconv_4 = value; } }; // Native definition for P/Invoke marshalling of System.Reflection.MonoMethodInfo struct MonoMethodInfo_t846D423B6DB28262B9AC22C1D07EC38D23DF7D5D_marshaled_pinvoke { Type_t * ___parent_0; Type_t * ___ret_1; int32_t ___attrs_2; int32_t ___iattrs_3; int32_t ___callconv_4; }; // Native definition for COM marshalling of System.Reflection.MonoMethodInfo struct MonoMethodInfo_t846D423B6DB28262B9AC22C1D07EC38D23DF7D5D_marshaled_com { Type_t * ___parent_0; Type_t * ___ret_1; int32_t ___attrs_2; int32_t ___iattrs_3; int32_t ___callconv_4; }; // System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 { public: // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext RuntimeObject * ___m_additionalContext_0; // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state int32_t ___m_state_1; public: inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_additionalContext_0)); } inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; } inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; } inline void set_m_additionalContext_0(RuntimeObject * value) { ___m_additionalContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value); } inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_state_1)); } inline int32_t get_m_state_1() const { return ___m_state_1; } inline int32_t* get_address_of_m_state_1() { return &___m_state_1; } inline void set_m_state_1(int32_t value) { ___m_state_1 = value; } }; // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION struct DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F { public: // System.TimeZoneInfo_TIME_ZONE_INFORMATION System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION::TZI TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 ___TZI_0; // System.String System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION::TimeZoneKeyName String_t* ___TimeZoneKeyName_1; // System.Byte System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION::DynamicDaylightTimeDisabled uint8_t ___DynamicDaylightTimeDisabled_2; public: inline static int32_t get_offset_of_TZI_0() { return static_cast<int32_t>(offsetof(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F, ___TZI_0)); } inline TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 get_TZI_0() const { return ___TZI_0; } inline TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 * get_address_of_TZI_0() { return &___TZI_0; } inline void set_TZI_0(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 value) { ___TZI_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___TZI_0))->___StandardName_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___TZI_0))->___DaylightName_4), (void*)NULL); #endif } inline static int32_t get_offset_of_TimeZoneKeyName_1() { return static_cast<int32_t>(offsetof(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F, ___TimeZoneKeyName_1)); } inline String_t* get_TimeZoneKeyName_1() const { return ___TimeZoneKeyName_1; } inline String_t** get_address_of_TimeZoneKeyName_1() { return &___TimeZoneKeyName_1; } inline void set_TimeZoneKeyName_1(String_t* value) { ___TimeZoneKeyName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___TimeZoneKeyName_1), (void*)value); } inline static int32_t get_offset_of_DynamicDaylightTimeDisabled_2() { return static_cast<int32_t>(offsetof(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F, ___DynamicDaylightTimeDisabled_2)); } inline uint8_t get_DynamicDaylightTimeDisabled_2() const { return ___DynamicDaylightTimeDisabled_2; } inline uint8_t* get_address_of_DynamicDaylightTimeDisabled_2() { return &___DynamicDaylightTimeDisabled_2; } inline void set_DynamicDaylightTimeDisabled_2(uint8_t value) { ___DynamicDaylightTimeDisabled_2 = value; } }; // Native definition for P/Invoke marshalling of System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION struct DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke { TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke ___TZI_0; Il2CppChar ___TimeZoneKeyName_1[128]; uint8_t ___DynamicDaylightTimeDisabled_2; }; // Native definition for COM marshalling of System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION struct DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_com { TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_com ___TZI_0; Il2CppChar ___TimeZoneKeyName_1[128]; uint8_t ___DynamicDaylightTimeDisabled_2; }; // System.TimeZoneInfo_TransitionTime struct TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 { public: // System.DateTime System.TimeZoneInfo_TransitionTime::m_timeOfDay DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_timeOfDay_0; // System.Byte System.TimeZoneInfo_TransitionTime::m_month uint8_t ___m_month_1; // System.Byte System.TimeZoneInfo_TransitionTime::m_week uint8_t ___m_week_2; // System.Byte System.TimeZoneInfo_TransitionTime::m_day uint8_t ___m_day_3; // System.DayOfWeek System.TimeZoneInfo_TransitionTime::m_dayOfWeek int32_t ___m_dayOfWeek_4; // System.Boolean System.TimeZoneInfo_TransitionTime::m_isFixedDateRule bool ___m_isFixedDateRule_5; public: inline static int32_t get_offset_of_m_timeOfDay_0() { return static_cast<int32_t>(offsetof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, ___m_timeOfDay_0)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_timeOfDay_0() const { return ___m_timeOfDay_0; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_timeOfDay_0() { return &___m_timeOfDay_0; } inline void set_m_timeOfDay_0(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___m_timeOfDay_0 = value; } inline static int32_t get_offset_of_m_month_1() { return static_cast<int32_t>(offsetof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, ___m_month_1)); } inline uint8_t get_m_month_1() const { return ___m_month_1; } inline uint8_t* get_address_of_m_month_1() { return &___m_month_1; } inline void set_m_month_1(uint8_t value) { ___m_month_1 = value; } inline static int32_t get_offset_of_m_week_2() { return static_cast<int32_t>(offsetof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, ___m_week_2)); } inline uint8_t get_m_week_2() const { return ___m_week_2; } inline uint8_t* get_address_of_m_week_2() { return &___m_week_2; } inline void set_m_week_2(uint8_t value) { ___m_week_2 = value; } inline static int32_t get_offset_of_m_day_3() { return static_cast<int32_t>(offsetof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, ___m_day_3)); } inline uint8_t get_m_day_3() const { return ___m_day_3; } inline uint8_t* get_address_of_m_day_3() { return &___m_day_3; } inline void set_m_day_3(uint8_t value) { ___m_day_3 = value; } inline static int32_t get_offset_of_m_dayOfWeek_4() { return static_cast<int32_t>(offsetof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, ___m_dayOfWeek_4)); } inline int32_t get_m_dayOfWeek_4() const { return ___m_dayOfWeek_4; } inline int32_t* get_address_of_m_dayOfWeek_4() { return &___m_dayOfWeek_4; } inline void set_m_dayOfWeek_4(int32_t value) { ___m_dayOfWeek_4 = value; } inline static int32_t get_offset_of_m_isFixedDateRule_5() { return static_cast<int32_t>(offsetof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, ___m_isFixedDateRule_5)); } inline bool get_m_isFixedDateRule_5() const { return ___m_isFixedDateRule_5; } inline bool* get_address_of_m_isFixedDateRule_5() { return &___m_isFixedDateRule_5; } inline void set_m_isFixedDateRule_5(bool value) { ___m_isFixedDateRule_5 = value; } }; // Native definition for P/Invoke marshalling of System.TimeZoneInfo/TransitionTime struct TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshaled_pinvoke { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_timeOfDay_0; uint8_t ___m_month_1; uint8_t ___m_week_2; uint8_t ___m_day_3; int32_t ___m_dayOfWeek_4; int32_t ___m_isFixedDateRule_5; }; // Native definition for COM marshalling of System.TimeZoneInfo/TransitionTime struct TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshaled_com { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_timeOfDay_0; uint8_t ___m_month_1; uint8_t ___m_week_2; uint8_t ___m_day_3; int32_t ___m_dayOfWeek_4; int32_t ___m_isFixedDateRule_5; }; // System.TypedReference struct TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8 { public: // System.RuntimeTypeHandle System.TypedReference::type RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___type_0; // System.IntPtr System.TypedReference::Value intptr_t ___Value_1; // System.IntPtr System.TypedReference::Type intptr_t ___Type_2; public: inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8, ___type_0)); } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get_type_0() const { return ___type_0; } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of_type_0() { return &___type_0; } inline void set_type_0(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value) { ___type_0 = value; } inline static int32_t get_offset_of_Value_1() { return static_cast<int32_t>(offsetof(TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8, ___Value_1)); } inline intptr_t get_Value_1() const { return ___Value_1; } inline intptr_t* get_address_of_Value_1() { return &___Value_1; } inline void set_Value_1(intptr_t value) { ___Value_1 = value; } inline static int32_t get_offset_of_Type_2() { return static_cast<int32_t>(offsetof(TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8, ___Type_2)); } inline intptr_t get_Type_2() const { return ___Type_2; } inline intptr_t* get_address_of_Type_2() { return &___Type_2; } inline void set_Type_2(intptr_t value) { ___Type_2 = value; } }; // Unity.Collections.NativeArray`1<System.Int32> struct NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF { 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_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF, ___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_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF, ___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_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF, ___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; } }; // Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1 #ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define #define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke { void* ___m_Buffer_0; int32_t ___m_Length_1; int32_t ___m_AllocatorLabel_2; }; #endif // Native definition for COM marshalling of Unity.Collections.NativeArray`1 #ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define #define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com { void* ___m_Buffer_0; int32_t ___m_Length_1; int32_t ___m_AllocatorLabel_2; }; #endif // Unity.Collections.NativeArray`1<UnityEngine.Plane> struct NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 { 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_t83B803BC075802611FE185566F7FE576D1B85F52, ___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_t83B803BC075802611FE185566F7FE576D1B85F52, ___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_t83B803BC075802611FE185566F7FE576D1B85F52, ___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; } }; // Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1 #ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define #define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke { void* ___m_Buffer_0; int32_t ___m_Length_1; int32_t ___m_AllocatorLabel_2; }; #endif // Native definition for COM marshalling of Unity.Collections.NativeArray`1 #ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define #define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com { void* ___m_Buffer_0; int32_t ___m_Length_1; int32_t ___m_AllocatorLabel_2; }; #endif // Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility> struct NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 { 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_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520, ___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_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520, ___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_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520, ___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; } }; // Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1 #ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define #define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke { void* ___m_Buffer_0; int32_t ___m_Length_1; int32_t ___m_AllocatorLabel_2; }; #endif // Native definition for COM marshalling of Unity.Collections.NativeArray`1 #ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define #define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com { void* ___m_Buffer_0; int32_t ___m_Length_1; int32_t ___m_AllocatorLabel_2; }; #endif // UnityEngine.Animations.AnimationClipPlayable struct AnimationClipPlayable_t6EF38F9EED94096D4793638AFC8D11D285B43183 { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationClipPlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationClipPlayable_t6EF38F9EED94096D4793638AFC8D11D285B43183, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; // UnityEngine.Animations.AnimationLayerMixerPlayable struct AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371 { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationLayerMixerPlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; struct AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371_StaticFields { public: // UnityEngine.Animations.AnimationLayerMixerPlayable UnityEngine.Animations.AnimationLayerMixerPlayable::m_NullPlayable AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371 ___m_NullPlayable_1; public: inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371_StaticFields, ___m_NullPlayable_1)); } inline AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371 get_m_NullPlayable_1() const { return ___m_NullPlayable_1; } inline AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371 * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; } inline void set_m_NullPlayable_1(AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371 value) { ___m_NullPlayable_1 = value; } }; // UnityEngine.Animations.AnimationMixerPlayable struct AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationMixerPlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; struct AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A_StaticFields { public: // UnityEngine.Animations.AnimationMixerPlayable UnityEngine.Animations.AnimationMixerPlayable::m_NullPlayable AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A ___m_NullPlayable_1; public: inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A_StaticFields, ___m_NullPlayable_1)); } inline AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A get_m_NullPlayable_1() const { return ___m_NullPlayable_1; } inline AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; } inline void set_m_NullPlayable_1(AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A value) { ___m_NullPlayable_1 = value; } }; // UnityEngine.Animations.AnimationMotionXToDeltaPlayable struct AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationMotionXToDeltaPlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; struct AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC_StaticFields { public: // UnityEngine.Animations.AnimationMotionXToDeltaPlayable UnityEngine.Animations.AnimationMotionXToDeltaPlayable::m_NullPlayable AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC ___m_NullPlayable_1; public: inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC_StaticFields, ___m_NullPlayable_1)); } inline AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC get_m_NullPlayable_1() const { return ___m_NullPlayable_1; } inline AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; } inline void set_m_NullPlayable_1(AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC value) { ___m_NullPlayable_1 = value; } }; // UnityEngine.Animations.AnimationOffsetPlayable struct AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationOffsetPlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; struct AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E_StaticFields { public: // UnityEngine.Animations.AnimationOffsetPlayable UnityEngine.Animations.AnimationOffsetPlayable::m_NullPlayable AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E ___m_NullPlayable_1; public: inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E_StaticFields, ___m_NullPlayable_1)); } inline AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E get_m_NullPlayable_1() const { return ___m_NullPlayable_1; } inline AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; } inline void set_m_NullPlayable_1(AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E value) { ___m_NullPlayable_1 = value; } }; // UnityEngine.Animations.AnimationPosePlayable struct AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07 { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationPosePlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; struct AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07_StaticFields { public: // UnityEngine.Animations.AnimationPosePlayable UnityEngine.Animations.AnimationPosePlayable::m_NullPlayable AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07 ___m_NullPlayable_1; public: inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07_StaticFields, ___m_NullPlayable_1)); } inline AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07 get_m_NullPlayable_1() const { return ___m_NullPlayable_1; } inline AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07 * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; } inline void set_m_NullPlayable_1(AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07 value) { ___m_NullPlayable_1 = value; } }; // UnityEngine.Animations.AnimationRemoveScalePlayable struct AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationRemoveScalePlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; struct AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B_StaticFields { public: // UnityEngine.Animations.AnimationRemoveScalePlayable UnityEngine.Animations.AnimationRemoveScalePlayable::m_NullPlayable AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B ___m_NullPlayable_1; public: inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B_StaticFields, ___m_NullPlayable_1)); } inline AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B get_m_NullPlayable_1() const { return ___m_NullPlayable_1; } inline AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; } inline void set_m_NullPlayable_1(AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B value) { ___m_NullPlayable_1 = value; } }; // UnityEngine.Animations.AnimatorControllerPlayable struct AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimatorControllerPlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; struct AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B_StaticFields { public: // UnityEngine.Animations.AnimatorControllerPlayable UnityEngine.Animations.AnimatorControllerPlayable::m_NullPlayable AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B ___m_NullPlayable_1; public: inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B_StaticFields, ___m_NullPlayable_1)); } inline AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B get_m_NullPlayable_1() const { return ___m_NullPlayable_1; } inline AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; } inline void set_m_NullPlayable_1(AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B value) { ___m_NullPlayable_1 = value; } }; // UnityEngine.Audio.AudioClipPlayable struct AudioClipPlayable_t6094311F945E65BC29F85B23A81E8426D596553C { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Audio.AudioClipPlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AudioClipPlayable_t6094311F945E65BC29F85B23A81E8426D596553C, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; // UnityEngine.Audio.AudioMixerPlayable struct AudioMixerPlayable_t2C445EB39F9111CCFF7E2E1F813B22007862FA9F { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Audio.AudioMixerPlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AudioMixerPlayable_t2C445EB39F9111CCFF7E2E1F813B22007862FA9F, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; // UnityEngine.Experimental.Animations.AnimationScriptPlayable struct AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Animations.AnimationScriptPlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; struct AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F_StaticFields { public: // UnityEngine.Experimental.Animations.AnimationScriptPlayable UnityEngine.Experimental.Animations.AnimationScriptPlayable::m_NullPlayable AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F ___m_NullPlayable_1; public: inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F_StaticFields, ___m_NullPlayable_1)); } inline AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F get_m_NullPlayable_1() const { return ___m_NullPlayable_1; } inline AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; } inline void set_m_NullPlayable_1(AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F value) { ___m_NullPlayable_1 = value; } }; // UnityEngine.Experimental.Playables.CameraPlayable struct CameraPlayable_t3EEDF247328760DA29DC7E39B712076ED0FD9937 { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Playables.CameraPlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(CameraPlayable_t3EEDF247328760DA29DC7E39B712076ED0FD9937, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; // UnityEngine.Experimental.Playables.MaterialEffectPlayable struct MaterialEffectPlayable_t40911576524A28294D958991232297B1728713FC { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Playables.MaterialEffectPlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(MaterialEffectPlayable_t40911576524A28294D958991232297B1728713FC, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; // UnityEngine.Experimental.Playables.TextureMixerPlayable struct TextureMixerPlayable_tC536766EC72A3E271307F13E649F22BA411B9326 { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Playables.TextureMixerPlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(TextureMixerPlayable_tC536766EC72A3E271307F13E649F22BA411B9326, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; // UnityEngine.Experimental.Video.VideoClipPlayable struct VideoClipPlayable_t4B7997FDB02C74F9E88F37574F0F4F9DE08CCC12 { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Video.VideoClipPlayable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(VideoClipPlayable_t4B7997FDB02C74F9E88F37574F0F4F9DE08CCC12, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; // UnityEngine.Experimental.XR.BoundedPlane struct BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 { public: // System.UInt32 UnityEngine.Experimental.XR.BoundedPlane::m_InstanceId uint32_t ___m_InstanceId_0; // UnityEngine.Experimental.XR.TrackableId UnityEngine.Experimental.XR.BoundedPlane::<Id>k__BackingField TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___U3CIdU3Ek__BackingField_1; // UnityEngine.Experimental.XR.TrackableId UnityEngine.Experimental.XR.BoundedPlane::<SubsumedById>k__BackingField TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___U3CSubsumedByIdU3Ek__BackingField_2; // UnityEngine.Pose UnityEngine.Experimental.XR.BoundedPlane::<Pose>k__BackingField Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___U3CPoseU3Ek__BackingField_3; // UnityEngine.Vector3 UnityEngine.Experimental.XR.BoundedPlane::<Center>k__BackingField Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CCenterU3Ek__BackingField_4; // UnityEngine.Vector2 UnityEngine.Experimental.XR.BoundedPlane::<Size>k__BackingField Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___U3CSizeU3Ek__BackingField_5; // UnityEngine.Experimental.XR.PlaneAlignment UnityEngine.Experimental.XR.BoundedPlane::<Alignment>k__BackingField int32_t ___U3CAlignmentU3Ek__BackingField_6; public: inline static int32_t get_offset_of_m_InstanceId_0() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___m_InstanceId_0)); } inline uint32_t get_m_InstanceId_0() const { return ___m_InstanceId_0; } inline uint32_t* get_address_of_m_InstanceId_0() { return &___m_InstanceId_0; } inline void set_m_InstanceId_0(uint32_t value) { ___m_InstanceId_0 = value; } inline static int32_t get_offset_of_U3CIdU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___U3CIdU3Ek__BackingField_1)); } inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B get_U3CIdU3Ek__BackingField_1() const { return ___U3CIdU3Ek__BackingField_1; } inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B * get_address_of_U3CIdU3Ek__BackingField_1() { return &___U3CIdU3Ek__BackingField_1; } inline void set_U3CIdU3Ek__BackingField_1(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B value) { ___U3CIdU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CSubsumedByIdU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___U3CSubsumedByIdU3Ek__BackingField_2)); } inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B get_U3CSubsumedByIdU3Ek__BackingField_2() const { return ___U3CSubsumedByIdU3Ek__BackingField_2; } inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B * get_address_of_U3CSubsumedByIdU3Ek__BackingField_2() { return &___U3CSubsumedByIdU3Ek__BackingField_2; } inline void set_U3CSubsumedByIdU3Ek__BackingField_2(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B value) { ___U3CSubsumedByIdU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CPoseU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___U3CPoseU3Ek__BackingField_3)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_U3CPoseU3Ek__BackingField_3() const { return ___U3CPoseU3Ek__BackingField_3; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_U3CPoseU3Ek__BackingField_3() { return &___U3CPoseU3Ek__BackingField_3; } inline void set_U3CPoseU3Ek__BackingField_3(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___U3CPoseU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CCenterU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___U3CCenterU3Ek__BackingField_4)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CCenterU3Ek__BackingField_4() const { return ___U3CCenterU3Ek__BackingField_4; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CCenterU3Ek__BackingField_4() { return &___U3CCenterU3Ek__BackingField_4; } inline void set_U3CCenterU3Ek__BackingField_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___U3CCenterU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CSizeU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___U3CSizeU3Ek__BackingField_5)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_U3CSizeU3Ek__BackingField_5() const { return ___U3CSizeU3Ek__BackingField_5; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_U3CSizeU3Ek__BackingField_5() { return &___U3CSizeU3Ek__BackingField_5; } inline void set_U3CSizeU3Ek__BackingField_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___U3CSizeU3Ek__BackingField_5 = value; } inline static int32_t get_offset_of_U3CAlignmentU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___U3CAlignmentU3Ek__BackingField_6)); } inline int32_t get_U3CAlignmentU3Ek__BackingField_6() const { return ___U3CAlignmentU3Ek__BackingField_6; } inline int32_t* get_address_of_U3CAlignmentU3Ek__BackingField_6() { return &___U3CAlignmentU3Ek__BackingField_6; } inline void set_U3CAlignmentU3Ek__BackingField_6(int32_t value) { ___U3CAlignmentU3Ek__BackingField_6 = value; } }; // UnityEngine.Experimental.XR.MeshGenerationResult struct MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056 { public: // UnityEngine.Experimental.XR.TrackableId UnityEngine.Experimental.XR.MeshGenerationResult::<MeshId>k__BackingField TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___U3CMeshIdU3Ek__BackingField_0; // UnityEngine.Mesh UnityEngine.Experimental.XR.MeshGenerationResult::<Mesh>k__BackingField Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___U3CMeshU3Ek__BackingField_1; // UnityEngine.MeshCollider UnityEngine.Experimental.XR.MeshGenerationResult::<MeshCollider>k__BackingField MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___U3CMeshColliderU3Ek__BackingField_2; // UnityEngine.Experimental.XR.MeshGenerationStatus UnityEngine.Experimental.XR.MeshGenerationResult::<Status>k__BackingField int32_t ___U3CStatusU3Ek__BackingField_3; // UnityEngine.Experimental.XR.MeshVertexAttributes UnityEngine.Experimental.XR.MeshGenerationResult::<Attributes>k__BackingField int32_t ___U3CAttributesU3Ek__BackingField_4; public: inline static int32_t get_offset_of_U3CMeshIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056, ___U3CMeshIdU3Ek__BackingField_0)); } inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B get_U3CMeshIdU3Ek__BackingField_0() const { return ___U3CMeshIdU3Ek__BackingField_0; } inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B * get_address_of_U3CMeshIdU3Ek__BackingField_0() { return &___U3CMeshIdU3Ek__BackingField_0; } inline void set_U3CMeshIdU3Ek__BackingField_0(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B value) { ___U3CMeshIdU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CMeshU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056, ___U3CMeshU3Ek__BackingField_1)); } inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_U3CMeshU3Ek__BackingField_1() const { return ___U3CMeshU3Ek__BackingField_1; } inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_U3CMeshU3Ek__BackingField_1() { return &___U3CMeshU3Ek__BackingField_1; } inline void set_U3CMeshU3Ek__BackingField_1(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value) { ___U3CMeshU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CMeshU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CMeshColliderU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056, ___U3CMeshColliderU3Ek__BackingField_2)); } inline MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * get_U3CMeshColliderU3Ek__BackingField_2() const { return ___U3CMeshColliderU3Ek__BackingField_2; } inline MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE ** get_address_of_U3CMeshColliderU3Ek__BackingField_2() { return &___U3CMeshColliderU3Ek__BackingField_2; } inline void set_U3CMeshColliderU3Ek__BackingField_2(MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * value) { ___U3CMeshColliderU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CMeshColliderU3Ek__BackingField_2), (void*)value); } inline static int32_t get_offset_of_U3CStatusU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056, ___U3CStatusU3Ek__BackingField_3)); } inline int32_t get_U3CStatusU3Ek__BackingField_3() const { return ___U3CStatusU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CStatusU3Ek__BackingField_3() { return &___U3CStatusU3Ek__BackingField_3; } inline void set_U3CStatusU3Ek__BackingField_3(int32_t value) { ___U3CStatusU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CAttributesU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056, ___U3CAttributesU3Ek__BackingField_4)); } inline int32_t get_U3CAttributesU3Ek__BackingField_4() const { return ___U3CAttributesU3Ek__BackingField_4; } inline int32_t* get_address_of_U3CAttributesU3Ek__BackingField_4() { return &___U3CAttributesU3Ek__BackingField_4; } inline void set_U3CAttributesU3Ek__BackingField_4(int32_t value) { ___U3CAttributesU3Ek__BackingField_4 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.MeshGenerationResult struct MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056_marshaled_pinvoke { TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___U3CMeshIdU3Ek__BackingField_0; Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___U3CMeshU3Ek__BackingField_1; MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___U3CMeshColliderU3Ek__BackingField_2; int32_t ___U3CStatusU3Ek__BackingField_3; int32_t ___U3CAttributesU3Ek__BackingField_4; }; // Native definition for COM marshalling of UnityEngine.Experimental.XR.MeshGenerationResult struct MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056_marshaled_com { TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___U3CMeshIdU3Ek__BackingField_0; Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___U3CMeshU3Ek__BackingField_1; MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___U3CMeshColliderU3Ek__BackingField_2; int32_t ___U3CStatusU3Ek__BackingField_3; int32_t ___U3CAttributesU3Ek__BackingField_4; }; // UnityEngine.Experimental.XR.ReferencePoint struct ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E { public: // UnityEngine.Experimental.XR.TrackableId UnityEngine.Experimental.XR.ReferencePoint::<Id>k__BackingField TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___U3CIdU3Ek__BackingField_0; // UnityEngine.Experimental.XR.TrackingState UnityEngine.Experimental.XR.ReferencePoint::<TrackingState>k__BackingField int32_t ___U3CTrackingStateU3Ek__BackingField_1; // UnityEngine.Pose UnityEngine.Experimental.XR.ReferencePoint::<Pose>k__BackingField Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___U3CPoseU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E, ___U3CIdU3Ek__BackingField_0)); } inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B get_U3CIdU3Ek__BackingField_0() const { return ___U3CIdU3Ek__BackingField_0; } inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B * get_address_of_U3CIdU3Ek__BackingField_0() { return &___U3CIdU3Ek__BackingField_0; } inline void set_U3CIdU3Ek__BackingField_0(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B value) { ___U3CIdU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CTrackingStateU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E, ___U3CTrackingStateU3Ek__BackingField_1)); } inline int32_t get_U3CTrackingStateU3Ek__BackingField_1() const { return ___U3CTrackingStateU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CTrackingStateU3Ek__BackingField_1() { return &___U3CTrackingStateU3Ek__BackingField_1; } inline void set_U3CTrackingStateU3Ek__BackingField_1(int32_t value) { ___U3CTrackingStateU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CPoseU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E, ___U3CPoseU3Ek__BackingField_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_U3CPoseU3Ek__BackingField_2() const { return ___U3CPoseU3Ek__BackingField_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_U3CPoseU3Ek__BackingField_2() { return &___U3CPoseU3Ek__BackingField_2; } inline void set_U3CPoseU3Ek__BackingField_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___U3CPoseU3Ek__BackingField_2 = value; } }; // UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs struct SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA { public: // UnityEngine.Experimental.XR.XRSessionSubsystem UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs::m_Session XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F * ___m_Session_0; // UnityEngine.Experimental.XR.TrackingState UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs::<NewState>k__BackingField int32_t ___U3CNewStateU3Ek__BackingField_1; public: inline static int32_t get_offset_of_m_Session_0() { return static_cast<int32_t>(offsetof(SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA, ___m_Session_0)); } inline XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F * get_m_Session_0() const { return ___m_Session_0; } inline XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F ** get_address_of_m_Session_0() { return &___m_Session_0; } inline void set_m_Session_0(XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F * value) { ___m_Session_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Session_0), (void*)value); } inline static int32_t get_offset_of_U3CNewStateU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA, ___U3CNewStateU3Ek__BackingField_1)); } inline int32_t get_U3CNewStateU3Ek__BackingField_1() const { return ___U3CNewStateU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CNewStateU3Ek__BackingField_1() { return &___U3CNewStateU3Ek__BackingField_1; } inline void set_U3CNewStateU3Ek__BackingField_1(int32_t value) { ___U3CNewStateU3Ek__BackingField_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs struct SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA_marshaled_pinvoke { XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F * ___m_Session_0; int32_t ___U3CNewStateU3Ek__BackingField_1; }; // Native definition for COM marshalling of UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs struct SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA_marshaled_com { XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F * ___m_Session_0; int32_t ___U3CNewStateU3Ek__BackingField_1; }; // UnityEngine.ParticleSystem_EmitParams struct EmitParams_t03557E552852EC6B71876CD05C4098733702A219 { public: // UnityEngine.ParticleSystem_Particle UnityEngine.ParticleSystem_EmitParams::m_Particle Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E ___m_Particle_0; // System.Boolean UnityEngine.ParticleSystem_EmitParams::m_PositionSet bool ___m_PositionSet_1; // System.Boolean UnityEngine.ParticleSystem_EmitParams::m_VelocitySet bool ___m_VelocitySet_2; // System.Boolean UnityEngine.ParticleSystem_EmitParams::m_AxisOfRotationSet bool ___m_AxisOfRotationSet_3; // System.Boolean UnityEngine.ParticleSystem_EmitParams::m_RotationSet bool ___m_RotationSet_4; // System.Boolean UnityEngine.ParticleSystem_EmitParams::m_AngularVelocitySet bool ___m_AngularVelocitySet_5; // System.Boolean UnityEngine.ParticleSystem_EmitParams::m_StartSizeSet bool ___m_StartSizeSet_6; // System.Boolean UnityEngine.ParticleSystem_EmitParams::m_StartColorSet bool ___m_StartColorSet_7; // System.Boolean UnityEngine.ParticleSystem_EmitParams::m_RandomSeedSet bool ___m_RandomSeedSet_8; // System.Boolean UnityEngine.ParticleSystem_EmitParams::m_StartLifetimeSet bool ___m_StartLifetimeSet_9; // System.Boolean UnityEngine.ParticleSystem_EmitParams::m_MeshIndexSet bool ___m_MeshIndexSet_10; // System.Boolean UnityEngine.ParticleSystem_EmitParams::m_ApplyShapeToPosition bool ___m_ApplyShapeToPosition_11; public: inline static int32_t get_offset_of_m_Particle_0() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_Particle_0)); } inline Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E get_m_Particle_0() const { return ___m_Particle_0; } inline Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E * get_address_of_m_Particle_0() { return &___m_Particle_0; } inline void set_m_Particle_0(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E value) { ___m_Particle_0 = value; } inline static int32_t get_offset_of_m_PositionSet_1() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_PositionSet_1)); } inline bool get_m_PositionSet_1() const { return ___m_PositionSet_1; } inline bool* get_address_of_m_PositionSet_1() { return &___m_PositionSet_1; } inline void set_m_PositionSet_1(bool value) { ___m_PositionSet_1 = value; } inline static int32_t get_offset_of_m_VelocitySet_2() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_VelocitySet_2)); } inline bool get_m_VelocitySet_2() const { return ___m_VelocitySet_2; } inline bool* get_address_of_m_VelocitySet_2() { return &___m_VelocitySet_2; } inline void set_m_VelocitySet_2(bool value) { ___m_VelocitySet_2 = value; } inline static int32_t get_offset_of_m_AxisOfRotationSet_3() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_AxisOfRotationSet_3)); } inline bool get_m_AxisOfRotationSet_3() const { return ___m_AxisOfRotationSet_3; } inline bool* get_address_of_m_AxisOfRotationSet_3() { return &___m_AxisOfRotationSet_3; } inline void set_m_AxisOfRotationSet_3(bool value) { ___m_AxisOfRotationSet_3 = value; } inline static int32_t get_offset_of_m_RotationSet_4() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_RotationSet_4)); } inline bool get_m_RotationSet_4() const { return ___m_RotationSet_4; } inline bool* get_address_of_m_RotationSet_4() { return &___m_RotationSet_4; } inline void set_m_RotationSet_4(bool value) { ___m_RotationSet_4 = value; } inline static int32_t get_offset_of_m_AngularVelocitySet_5() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_AngularVelocitySet_5)); } inline bool get_m_AngularVelocitySet_5() const { return ___m_AngularVelocitySet_5; } inline bool* get_address_of_m_AngularVelocitySet_5() { return &___m_AngularVelocitySet_5; } inline void set_m_AngularVelocitySet_5(bool value) { ___m_AngularVelocitySet_5 = value; } inline static int32_t get_offset_of_m_StartSizeSet_6() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_StartSizeSet_6)); } inline bool get_m_StartSizeSet_6() const { return ___m_StartSizeSet_6; } inline bool* get_address_of_m_StartSizeSet_6() { return &___m_StartSizeSet_6; } inline void set_m_StartSizeSet_6(bool value) { ___m_StartSizeSet_6 = value; } inline static int32_t get_offset_of_m_StartColorSet_7() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_StartColorSet_7)); } inline bool get_m_StartColorSet_7() const { return ___m_StartColorSet_7; } inline bool* get_address_of_m_StartColorSet_7() { return &___m_StartColorSet_7; } inline void set_m_StartColorSet_7(bool value) { ___m_StartColorSet_7 = value; } inline static int32_t get_offset_of_m_RandomSeedSet_8() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_RandomSeedSet_8)); } inline bool get_m_RandomSeedSet_8() const { return ___m_RandomSeedSet_8; } inline bool* get_address_of_m_RandomSeedSet_8() { return &___m_RandomSeedSet_8; } inline void set_m_RandomSeedSet_8(bool value) { ___m_RandomSeedSet_8 = value; } inline static int32_t get_offset_of_m_StartLifetimeSet_9() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_StartLifetimeSet_9)); } inline bool get_m_StartLifetimeSet_9() const { return ___m_StartLifetimeSet_9; } inline bool* get_address_of_m_StartLifetimeSet_9() { return &___m_StartLifetimeSet_9; } inline void set_m_StartLifetimeSet_9(bool value) { ___m_StartLifetimeSet_9 = value; } inline static int32_t get_offset_of_m_MeshIndexSet_10() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_MeshIndexSet_10)); } inline bool get_m_MeshIndexSet_10() const { return ___m_MeshIndexSet_10; } inline bool* get_address_of_m_MeshIndexSet_10() { return &___m_MeshIndexSet_10; } inline void set_m_MeshIndexSet_10(bool value) { ___m_MeshIndexSet_10 = value; } inline static int32_t get_offset_of_m_ApplyShapeToPosition_11() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_ApplyShapeToPosition_11)); } inline bool get_m_ApplyShapeToPosition_11() const { return ___m_ApplyShapeToPosition_11; } inline bool* get_address_of_m_ApplyShapeToPosition_11() { return &___m_ApplyShapeToPosition_11; } inline void set_m_ApplyShapeToPosition_11(bool value) { ___m_ApplyShapeToPosition_11 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/EmitParams struct EmitParams_t03557E552852EC6B71876CD05C4098733702A219_marshaled_pinvoke { Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E ___m_Particle_0; int32_t ___m_PositionSet_1; int32_t ___m_VelocitySet_2; int32_t ___m_AxisOfRotationSet_3; int32_t ___m_RotationSet_4; int32_t ___m_AngularVelocitySet_5; int32_t ___m_StartSizeSet_6; int32_t ___m_StartColorSet_7; int32_t ___m_RandomSeedSet_8; int32_t ___m_StartLifetimeSet_9; int32_t ___m_MeshIndexSet_10; int32_t ___m_ApplyShapeToPosition_11; }; // Native definition for COM marshalling of UnityEngine.ParticleSystem/EmitParams struct EmitParams_t03557E552852EC6B71876CD05C4098733702A219_marshaled_com { Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E ___m_Particle_0; int32_t ___m_PositionSet_1; int32_t ___m_VelocitySet_2; int32_t ___m_AxisOfRotationSet_3; int32_t ___m_RotationSet_4; int32_t ___m_AngularVelocitySet_5; int32_t ___m_StartSizeSet_6; int32_t ___m_StartColorSet_7; int32_t ___m_RandomSeedSet_8; int32_t ___m_StartLifetimeSet_9; int32_t ___m_MeshIndexSet_10; int32_t ___m_ApplyShapeToPosition_11; }; // UnityEngine.Playables.Playable struct Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Playables.Playable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; struct Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0_StaticFields { public: // UnityEngine.Playables.Playable UnityEngine.Playables.Playable::m_NullPlayable Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 ___m_NullPlayable_1; public: inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0_StaticFields, ___m_NullPlayable_1)); } inline Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 get_m_NullPlayable_1() const { return ___m_NullPlayable_1; } inline Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; } inline void set_m_NullPlayable_1(Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 value) { ___m_NullPlayable_1 = value; } }; // UnityEngine.Playables.PlayableBinding struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 { public: // System.String UnityEngine.Playables.PlayableBinding::m_StreamName String_t* ___m_StreamName_0; // UnityEngine.Object UnityEngine.Playables.PlayableBinding::m_SourceObject Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___m_SourceObject_1; // System.Type UnityEngine.Playables.PlayableBinding::m_SourceBindingType Type_t * ___m_SourceBindingType_2; // UnityEngine.Playables.PlayableBinding_CreateOutputMethod UnityEngine.Playables.PlayableBinding::m_CreateOutputMethod CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * ___m_CreateOutputMethod_3; public: inline static int32_t get_offset_of_m_StreamName_0() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_StreamName_0)); } inline String_t* get_m_StreamName_0() const { return ___m_StreamName_0; } inline String_t** get_address_of_m_StreamName_0() { return &___m_StreamName_0; } inline void set_m_StreamName_0(String_t* value) { ___m_StreamName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_StreamName_0), (void*)value); } inline static int32_t get_offset_of_m_SourceObject_1() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_SourceObject_1)); } inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_m_SourceObject_1() const { return ___m_SourceObject_1; } inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_m_SourceObject_1() { return &___m_SourceObject_1; } inline void set_m_SourceObject_1(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value) { ___m_SourceObject_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SourceObject_1), (void*)value); } inline static int32_t get_offset_of_m_SourceBindingType_2() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_SourceBindingType_2)); } inline Type_t * get_m_SourceBindingType_2() const { return ___m_SourceBindingType_2; } inline Type_t ** get_address_of_m_SourceBindingType_2() { return &___m_SourceBindingType_2; } inline void set_m_SourceBindingType_2(Type_t * value) { ___m_SourceBindingType_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SourceBindingType_2), (void*)value); } inline static int32_t get_offset_of_m_CreateOutputMethod_3() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_CreateOutputMethod_3)); } inline CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * get_m_CreateOutputMethod_3() const { return ___m_CreateOutputMethod_3; } inline CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 ** get_address_of_m_CreateOutputMethod_3() { return &___m_CreateOutputMethod_3; } inline void set_m_CreateOutputMethod_3(CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * value) { ___m_CreateOutputMethod_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CreateOutputMethod_3), (void*)value); } }; struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields { public: // UnityEngine.Playables.PlayableBinding[] UnityEngine.Playables.PlayableBinding::None PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* ___None_4; // System.Double UnityEngine.Playables.PlayableBinding::DefaultDuration double ___DefaultDuration_5; public: inline static int32_t get_offset_of_None_4() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields, ___None_4)); } inline PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* get_None_4() const { return ___None_4; } inline PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB** get_address_of_None_4() { return &___None_4; } inline void set_None_4(PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* value) { ___None_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___None_4), (void*)value); } inline static int32_t get_offset_of_DefaultDuration_5() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields, ___DefaultDuration_5)); } inline double get_DefaultDuration_5() const { return ___DefaultDuration_5; } inline double* get_address_of_DefaultDuration_5() { return &___DefaultDuration_5; } inline void set_DefaultDuration_5(double value) { ___DefaultDuration_5 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Playables.PlayableBinding struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_marshaled_pinvoke { char* ___m_StreamName_0; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke ___m_SourceObject_1; Type_t * ___m_SourceBindingType_2; Il2CppMethodPointer ___m_CreateOutputMethod_3; }; // Native definition for COM marshalling of UnityEngine.Playables.PlayableBinding struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_marshaled_com { Il2CppChar* ___m_StreamName_0; Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com* ___m_SourceObject_1; Type_t * ___m_SourceBindingType_2; Il2CppMethodPointer ___m_CreateOutputMethod_3; }; // UnityEngine.Playables.PlayableOutput struct PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 { public: // UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.PlayableOutput::m_Handle PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345, ___m_Handle_0)); } inline PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 value) { ___m_Handle_0 = value; } }; struct PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345_StaticFields { public: // UnityEngine.Playables.PlayableOutput UnityEngine.Playables.PlayableOutput::m_NullPlayableOutput PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 ___m_NullPlayableOutput_1; public: inline static int32_t get_offset_of_m_NullPlayableOutput_1() { return static_cast<int32_t>(offsetof(PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345_StaticFields, ___m_NullPlayableOutput_1)); } inline PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 get_m_NullPlayableOutput_1() const { return ___m_NullPlayableOutput_1; } inline PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 * get_address_of_m_NullPlayableOutput_1() { return &___m_NullPlayableOutput_1; } inline void set_m_NullPlayableOutput_1(PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 value) { ___m_NullPlayableOutput_1 = value; } }; // UnityEngine.PostProcessing.AmbientOcclusionModel_Settings struct Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57 { public: // System.Single UnityEngine.PostProcessing.AmbientOcclusionModel_Settings::intensity float ___intensity_0; // System.Single UnityEngine.PostProcessing.AmbientOcclusionModel_Settings::radius float ___radius_1; // UnityEngine.PostProcessing.AmbientOcclusionModel_SampleCount UnityEngine.PostProcessing.AmbientOcclusionModel_Settings::sampleCount int32_t ___sampleCount_2; // System.Boolean UnityEngine.PostProcessing.AmbientOcclusionModel_Settings::downsampling bool ___downsampling_3; // System.Boolean UnityEngine.PostProcessing.AmbientOcclusionModel_Settings::forceForwardCompatibility bool ___forceForwardCompatibility_4; // System.Boolean UnityEngine.PostProcessing.AmbientOcclusionModel_Settings::ambientOnly bool ___ambientOnly_5; // System.Boolean UnityEngine.PostProcessing.AmbientOcclusionModel_Settings::highPrecision bool ___highPrecision_6; public: inline static int32_t get_offset_of_intensity_0() { return static_cast<int32_t>(offsetof(Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57, ___intensity_0)); } inline float get_intensity_0() const { return ___intensity_0; } inline float* get_address_of_intensity_0() { return &___intensity_0; } inline void set_intensity_0(float value) { ___intensity_0 = value; } inline static int32_t get_offset_of_radius_1() { return static_cast<int32_t>(offsetof(Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57, ___radius_1)); } inline float get_radius_1() const { return ___radius_1; } inline float* get_address_of_radius_1() { return &___radius_1; } inline void set_radius_1(float value) { ___radius_1 = value; } inline static int32_t get_offset_of_sampleCount_2() { return static_cast<int32_t>(offsetof(Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57, ___sampleCount_2)); } inline int32_t get_sampleCount_2() const { return ___sampleCount_2; } inline int32_t* get_address_of_sampleCount_2() { return &___sampleCount_2; } inline void set_sampleCount_2(int32_t value) { ___sampleCount_2 = value; } inline static int32_t get_offset_of_downsampling_3() { return static_cast<int32_t>(offsetof(Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57, ___downsampling_3)); } inline bool get_downsampling_3() const { return ___downsampling_3; } inline bool* get_address_of_downsampling_3() { return &___downsampling_3; } inline void set_downsampling_3(bool value) { ___downsampling_3 = value; } inline static int32_t get_offset_of_forceForwardCompatibility_4() { return static_cast<int32_t>(offsetof(Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57, ___forceForwardCompatibility_4)); } inline bool get_forceForwardCompatibility_4() const { return ___forceForwardCompatibility_4; } inline bool* get_address_of_forceForwardCompatibility_4() { return &___forceForwardCompatibility_4; } inline void set_forceForwardCompatibility_4(bool value) { ___forceForwardCompatibility_4 = value; } inline static int32_t get_offset_of_ambientOnly_5() { return static_cast<int32_t>(offsetof(Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57, ___ambientOnly_5)); } inline bool get_ambientOnly_5() const { return ___ambientOnly_5; } inline bool* get_address_of_ambientOnly_5() { return &___ambientOnly_5; } inline void set_ambientOnly_5(bool value) { ___ambientOnly_5 = value; } inline static int32_t get_offset_of_highPrecision_6() { return static_cast<int32_t>(offsetof(Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57, ___highPrecision_6)); } inline bool get_highPrecision_6() const { return ___highPrecision_6; } inline bool* get_address_of_highPrecision_6() { return &___highPrecision_6; } inline void set_highPrecision_6(bool value) { ___highPrecision_6 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.AmbientOcclusionModel/Settings struct Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57_marshaled_pinvoke { float ___intensity_0; float ___radius_1; int32_t ___sampleCount_2; int32_t ___downsampling_3; int32_t ___forceForwardCompatibility_4; int32_t ___ambientOnly_5; int32_t ___highPrecision_6; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.AmbientOcclusionModel/Settings struct Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57_marshaled_com { float ___intensity_0; float ___radius_1; int32_t ___sampleCount_2; int32_t ___downsampling_3; int32_t ___forceForwardCompatibility_4; int32_t ___ambientOnly_5; int32_t ___highPrecision_6; }; // UnityEngine.PostProcessing.AntialiasingModel_FxaaSettings struct FxaaSettings_t49E6F1CF29002CE1ED38E0C6241ACF3EAD5EE52E { public: // UnityEngine.PostProcessing.AntialiasingModel_FxaaPreset UnityEngine.PostProcessing.AntialiasingModel_FxaaSettings::preset int32_t ___preset_0; public: inline static int32_t get_offset_of_preset_0() { return static_cast<int32_t>(offsetof(FxaaSettings_t49E6F1CF29002CE1ED38E0C6241ACF3EAD5EE52E, ___preset_0)); } inline int32_t get_preset_0() const { return ___preset_0; } inline int32_t* get_address_of_preset_0() { return &___preset_0; } inline void set_preset_0(int32_t value) { ___preset_0 = value; } }; // UnityEngine.PostProcessing.BuiltinDebugViewsModel_Settings struct Settings_t897B8FE3086F458E5E210D35F39B494A88494591 { public: // UnityEngine.PostProcessing.BuiltinDebugViewsModel_Mode UnityEngine.PostProcessing.BuiltinDebugViewsModel_Settings::mode int32_t ___mode_0; // UnityEngine.PostProcessing.BuiltinDebugViewsModel_DepthSettings UnityEngine.PostProcessing.BuiltinDebugViewsModel_Settings::depth DepthSettings_tC484EB6F5B3327CF16840634323AF5CFFEE126EC ___depth_1; // UnityEngine.PostProcessing.BuiltinDebugViewsModel_MotionVectorsSettings UnityEngine.PostProcessing.BuiltinDebugViewsModel_Settings::motionVectors MotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256 ___motionVectors_2; public: inline static int32_t get_offset_of_mode_0() { return static_cast<int32_t>(offsetof(Settings_t897B8FE3086F458E5E210D35F39B494A88494591, ___mode_0)); } inline int32_t get_mode_0() const { return ___mode_0; } inline int32_t* get_address_of_mode_0() { return &___mode_0; } inline void set_mode_0(int32_t value) { ___mode_0 = value; } inline static int32_t get_offset_of_depth_1() { return static_cast<int32_t>(offsetof(Settings_t897B8FE3086F458E5E210D35F39B494A88494591, ___depth_1)); } inline DepthSettings_tC484EB6F5B3327CF16840634323AF5CFFEE126EC get_depth_1() const { return ___depth_1; } inline DepthSettings_tC484EB6F5B3327CF16840634323AF5CFFEE126EC * get_address_of_depth_1() { return &___depth_1; } inline void set_depth_1(DepthSettings_tC484EB6F5B3327CF16840634323AF5CFFEE126EC value) { ___depth_1 = value; } inline static int32_t get_offset_of_motionVectors_2() { return static_cast<int32_t>(offsetof(Settings_t897B8FE3086F458E5E210D35F39B494A88494591, ___motionVectors_2)); } inline MotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256 get_motionVectors_2() const { return ___motionVectors_2; } inline MotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256 * get_address_of_motionVectors_2() { return &___motionVectors_2; } inline void set_motionVectors_2(MotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256 value) { ___motionVectors_2 = value; } }; // UnityEngine.PostProcessing.ColorGradingModel_ColorWheelsSettings struct ColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8 { public: // UnityEngine.PostProcessing.ColorGradingModel_ColorWheelMode UnityEngine.PostProcessing.ColorGradingModel_ColorWheelsSettings::mode int32_t ___mode_0; // UnityEngine.PostProcessing.ColorGradingModel_LogWheelsSettings UnityEngine.PostProcessing.ColorGradingModel_ColorWheelsSettings::log LogWheelsSettings_t6946B0985F2ECDA5D31B31D9DC70072ED0819EF5 ___log_1; // UnityEngine.PostProcessing.ColorGradingModel_LinearWheelsSettings UnityEngine.PostProcessing.ColorGradingModel_ColorWheelsSettings::linear LinearWheelsSettings_tA2E68F6BF46B81203AF36DCB129409CAB51EC704 ___linear_2; public: inline static int32_t get_offset_of_mode_0() { return static_cast<int32_t>(offsetof(ColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8, ___mode_0)); } inline int32_t get_mode_0() const { return ___mode_0; } inline int32_t* get_address_of_mode_0() { return &___mode_0; } inline void set_mode_0(int32_t value) { ___mode_0 = value; } inline static int32_t get_offset_of_log_1() { return static_cast<int32_t>(offsetof(ColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8, ___log_1)); } inline LogWheelsSettings_t6946B0985F2ECDA5D31B31D9DC70072ED0819EF5 get_log_1() const { return ___log_1; } inline LogWheelsSettings_t6946B0985F2ECDA5D31B31D9DC70072ED0819EF5 * get_address_of_log_1() { return &___log_1; } inline void set_log_1(LogWheelsSettings_t6946B0985F2ECDA5D31B31D9DC70072ED0819EF5 value) { ___log_1 = value; } inline static int32_t get_offset_of_linear_2() { return static_cast<int32_t>(offsetof(ColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8, ___linear_2)); } inline LinearWheelsSettings_tA2E68F6BF46B81203AF36DCB129409CAB51EC704 get_linear_2() const { return ___linear_2; } inline LinearWheelsSettings_tA2E68F6BF46B81203AF36DCB129409CAB51EC704 * get_address_of_linear_2() { return &___linear_2; } inline void set_linear_2(LinearWheelsSettings_tA2E68F6BF46B81203AF36DCB129409CAB51EC704 value) { ___linear_2 = value; } }; // UnityEngine.PostProcessing.ColorGradingModel_TonemappingSettings struct TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC { public: // UnityEngine.PostProcessing.ColorGradingModel_Tonemapper UnityEngine.PostProcessing.ColorGradingModel_TonemappingSettings::tonemapper int32_t ___tonemapper_0; // System.Single UnityEngine.PostProcessing.ColorGradingModel_TonemappingSettings::neutralBlackIn float ___neutralBlackIn_1; // System.Single UnityEngine.PostProcessing.ColorGradingModel_TonemappingSettings::neutralWhiteIn float ___neutralWhiteIn_2; // System.Single UnityEngine.PostProcessing.ColorGradingModel_TonemappingSettings::neutralBlackOut float ___neutralBlackOut_3; // System.Single UnityEngine.PostProcessing.ColorGradingModel_TonemappingSettings::neutralWhiteOut float ___neutralWhiteOut_4; // System.Single UnityEngine.PostProcessing.ColorGradingModel_TonemappingSettings::neutralWhiteLevel float ___neutralWhiteLevel_5; // System.Single UnityEngine.PostProcessing.ColorGradingModel_TonemappingSettings::neutralWhiteClip float ___neutralWhiteClip_6; public: inline static int32_t get_offset_of_tonemapper_0() { return static_cast<int32_t>(offsetof(TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC, ___tonemapper_0)); } inline int32_t get_tonemapper_0() const { return ___tonemapper_0; } inline int32_t* get_address_of_tonemapper_0() { return &___tonemapper_0; } inline void set_tonemapper_0(int32_t value) { ___tonemapper_0 = value; } inline static int32_t get_offset_of_neutralBlackIn_1() { return static_cast<int32_t>(offsetof(TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC, ___neutralBlackIn_1)); } inline float get_neutralBlackIn_1() const { return ___neutralBlackIn_1; } inline float* get_address_of_neutralBlackIn_1() { return &___neutralBlackIn_1; } inline void set_neutralBlackIn_1(float value) { ___neutralBlackIn_1 = value; } inline static int32_t get_offset_of_neutralWhiteIn_2() { return static_cast<int32_t>(offsetof(TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC, ___neutralWhiteIn_2)); } inline float get_neutralWhiteIn_2() const { return ___neutralWhiteIn_2; } inline float* get_address_of_neutralWhiteIn_2() { return &___neutralWhiteIn_2; } inline void set_neutralWhiteIn_2(float value) { ___neutralWhiteIn_2 = value; } inline static int32_t get_offset_of_neutralBlackOut_3() { return static_cast<int32_t>(offsetof(TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC, ___neutralBlackOut_3)); } inline float get_neutralBlackOut_3() const { return ___neutralBlackOut_3; } inline float* get_address_of_neutralBlackOut_3() { return &___neutralBlackOut_3; } inline void set_neutralBlackOut_3(float value) { ___neutralBlackOut_3 = value; } inline static int32_t get_offset_of_neutralWhiteOut_4() { return static_cast<int32_t>(offsetof(TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC, ___neutralWhiteOut_4)); } inline float get_neutralWhiteOut_4() const { return ___neutralWhiteOut_4; } inline float* get_address_of_neutralWhiteOut_4() { return &___neutralWhiteOut_4; } inline void set_neutralWhiteOut_4(float value) { ___neutralWhiteOut_4 = value; } inline static int32_t get_offset_of_neutralWhiteLevel_5() { return static_cast<int32_t>(offsetof(TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC, ___neutralWhiteLevel_5)); } inline float get_neutralWhiteLevel_5() const { return ___neutralWhiteLevel_5; } inline float* get_address_of_neutralWhiteLevel_5() { return &___neutralWhiteLevel_5; } inline void set_neutralWhiteLevel_5(float value) { ___neutralWhiteLevel_5 = value; } inline static int32_t get_offset_of_neutralWhiteClip_6() { return static_cast<int32_t>(offsetof(TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC, ___neutralWhiteClip_6)); } inline float get_neutralWhiteClip_6() const { return ___neutralWhiteClip_6; } inline float* get_address_of_neutralWhiteClip_6() { return &___neutralWhiteClip_6; } inline void set_neutralWhiteClip_6(float value) { ___neutralWhiteClip_6 = value; } }; // UnityEngine.PostProcessing.DepthOfFieldModel_Settings struct Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E { public: // System.Single UnityEngine.PostProcessing.DepthOfFieldModel_Settings::focusDistance float ___focusDistance_0; // System.Single UnityEngine.PostProcessing.DepthOfFieldModel_Settings::aperture float ___aperture_1; // System.Single UnityEngine.PostProcessing.DepthOfFieldModel_Settings::focalLength float ___focalLength_2; // System.Boolean UnityEngine.PostProcessing.DepthOfFieldModel_Settings::useCameraFov bool ___useCameraFov_3; // UnityEngine.PostProcessing.DepthOfFieldModel_KernelSize UnityEngine.PostProcessing.DepthOfFieldModel_Settings::kernelSize int32_t ___kernelSize_4; public: inline static int32_t get_offset_of_focusDistance_0() { return static_cast<int32_t>(offsetof(Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E, ___focusDistance_0)); } inline float get_focusDistance_0() const { return ___focusDistance_0; } inline float* get_address_of_focusDistance_0() { return &___focusDistance_0; } inline void set_focusDistance_0(float value) { ___focusDistance_0 = value; } inline static int32_t get_offset_of_aperture_1() { return static_cast<int32_t>(offsetof(Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E, ___aperture_1)); } inline float get_aperture_1() const { return ___aperture_1; } inline float* get_address_of_aperture_1() { return &___aperture_1; } inline void set_aperture_1(float value) { ___aperture_1 = value; } inline static int32_t get_offset_of_focalLength_2() { return static_cast<int32_t>(offsetof(Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E, ___focalLength_2)); } inline float get_focalLength_2() const { return ___focalLength_2; } inline float* get_address_of_focalLength_2() { return &___focalLength_2; } inline void set_focalLength_2(float value) { ___focalLength_2 = value; } inline static int32_t get_offset_of_useCameraFov_3() { return static_cast<int32_t>(offsetof(Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E, ___useCameraFov_3)); } inline bool get_useCameraFov_3() const { return ___useCameraFov_3; } inline bool* get_address_of_useCameraFov_3() { return &___useCameraFov_3; } inline void set_useCameraFov_3(bool value) { ___useCameraFov_3 = value; } inline static int32_t get_offset_of_kernelSize_4() { return static_cast<int32_t>(offsetof(Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E, ___kernelSize_4)); } inline int32_t get_kernelSize_4() const { return ___kernelSize_4; } inline int32_t* get_address_of_kernelSize_4() { return &___kernelSize_4; } inline void set_kernelSize_4(int32_t value) { ___kernelSize_4 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.DepthOfFieldModel/Settings struct Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E_marshaled_pinvoke { float ___focusDistance_0; float ___aperture_1; float ___focalLength_2; int32_t ___useCameraFov_3; int32_t ___kernelSize_4; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.DepthOfFieldModel/Settings struct Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E_marshaled_com { float ___focusDistance_0; float ___aperture_1; float ___focalLength_2; int32_t ___useCameraFov_3; int32_t ___kernelSize_4; }; // UnityEngine.PostProcessing.EyeAdaptationModel_Settings struct Settings_t8A8457FAF6223DD887350322DC6D951891572426 { public: // System.Single UnityEngine.PostProcessing.EyeAdaptationModel_Settings::lowPercent float ___lowPercent_0; // System.Single UnityEngine.PostProcessing.EyeAdaptationModel_Settings::highPercent float ___highPercent_1; // System.Single UnityEngine.PostProcessing.EyeAdaptationModel_Settings::minLuminance float ___minLuminance_2; // System.Single UnityEngine.PostProcessing.EyeAdaptationModel_Settings::maxLuminance float ___maxLuminance_3; // System.Single UnityEngine.PostProcessing.EyeAdaptationModel_Settings::keyValue float ___keyValue_4; // System.Boolean UnityEngine.PostProcessing.EyeAdaptationModel_Settings::dynamicKeyValue bool ___dynamicKeyValue_5; // UnityEngine.PostProcessing.EyeAdaptationModel_EyeAdaptationType UnityEngine.PostProcessing.EyeAdaptationModel_Settings::adaptationType int32_t ___adaptationType_6; // System.Single UnityEngine.PostProcessing.EyeAdaptationModel_Settings::speedUp float ___speedUp_7; // System.Single UnityEngine.PostProcessing.EyeAdaptationModel_Settings::speedDown float ___speedDown_8; // System.Int32 UnityEngine.PostProcessing.EyeAdaptationModel_Settings::logMin int32_t ___logMin_9; // System.Int32 UnityEngine.PostProcessing.EyeAdaptationModel_Settings::logMax int32_t ___logMax_10; public: inline static int32_t get_offset_of_lowPercent_0() { return static_cast<int32_t>(offsetof(Settings_t8A8457FAF6223DD887350322DC6D951891572426, ___lowPercent_0)); } inline float get_lowPercent_0() const { return ___lowPercent_0; } inline float* get_address_of_lowPercent_0() { return &___lowPercent_0; } inline void set_lowPercent_0(float value) { ___lowPercent_0 = value; } inline static int32_t get_offset_of_highPercent_1() { return static_cast<int32_t>(offsetof(Settings_t8A8457FAF6223DD887350322DC6D951891572426, ___highPercent_1)); } inline float get_highPercent_1() const { return ___highPercent_1; } inline float* get_address_of_highPercent_1() { return &___highPercent_1; } inline void set_highPercent_1(float value) { ___highPercent_1 = value; } inline static int32_t get_offset_of_minLuminance_2() { return static_cast<int32_t>(offsetof(Settings_t8A8457FAF6223DD887350322DC6D951891572426, ___minLuminance_2)); } inline float get_minLuminance_2() const { return ___minLuminance_2; } inline float* get_address_of_minLuminance_2() { return &___minLuminance_2; } inline void set_minLuminance_2(float value) { ___minLuminance_2 = value; } inline static int32_t get_offset_of_maxLuminance_3() { return static_cast<int32_t>(offsetof(Settings_t8A8457FAF6223DD887350322DC6D951891572426, ___maxLuminance_3)); } inline float get_maxLuminance_3() const { return ___maxLuminance_3; } inline float* get_address_of_maxLuminance_3() { return &___maxLuminance_3; } inline void set_maxLuminance_3(float value) { ___maxLuminance_3 = value; } inline static int32_t get_offset_of_keyValue_4() { return static_cast<int32_t>(offsetof(Settings_t8A8457FAF6223DD887350322DC6D951891572426, ___keyValue_4)); } inline float get_keyValue_4() const { return ___keyValue_4; } inline float* get_address_of_keyValue_4() { return &___keyValue_4; } inline void set_keyValue_4(float value) { ___keyValue_4 = value; } inline static int32_t get_offset_of_dynamicKeyValue_5() { return static_cast<int32_t>(offsetof(Settings_t8A8457FAF6223DD887350322DC6D951891572426, ___dynamicKeyValue_5)); } inline bool get_dynamicKeyValue_5() const { return ___dynamicKeyValue_5; } inline bool* get_address_of_dynamicKeyValue_5() { return &___dynamicKeyValue_5; } inline void set_dynamicKeyValue_5(bool value) { ___dynamicKeyValue_5 = value; } inline static int32_t get_offset_of_adaptationType_6() { return static_cast<int32_t>(offsetof(Settings_t8A8457FAF6223DD887350322DC6D951891572426, ___adaptationType_6)); } inline int32_t get_adaptationType_6() const { return ___adaptationType_6; } inline int32_t* get_address_of_adaptationType_6() { return &___adaptationType_6; } inline void set_adaptationType_6(int32_t value) { ___adaptationType_6 = value; } inline static int32_t get_offset_of_speedUp_7() { return static_cast<int32_t>(offsetof(Settings_t8A8457FAF6223DD887350322DC6D951891572426, ___speedUp_7)); } inline float get_speedUp_7() const { return ___speedUp_7; } inline float* get_address_of_speedUp_7() { return &___speedUp_7; } inline void set_speedUp_7(float value) { ___speedUp_7 = value; } inline static int32_t get_offset_of_speedDown_8() { return static_cast<int32_t>(offsetof(Settings_t8A8457FAF6223DD887350322DC6D951891572426, ___speedDown_8)); } inline float get_speedDown_8() const { return ___speedDown_8; } inline float* get_address_of_speedDown_8() { return &___speedDown_8; } inline void set_speedDown_8(float value) { ___speedDown_8 = value; } inline static int32_t get_offset_of_logMin_9() { return static_cast<int32_t>(offsetof(Settings_t8A8457FAF6223DD887350322DC6D951891572426, ___logMin_9)); } inline int32_t get_logMin_9() const { return ___logMin_9; } inline int32_t* get_address_of_logMin_9() { return &___logMin_9; } inline void set_logMin_9(int32_t value) { ___logMin_9 = value; } inline static int32_t get_offset_of_logMax_10() { return static_cast<int32_t>(offsetof(Settings_t8A8457FAF6223DD887350322DC6D951891572426, ___logMax_10)); } inline int32_t get_logMax_10() const { return ___logMax_10; } inline int32_t* get_address_of_logMax_10() { return &___logMax_10; } inline void set_logMax_10(int32_t value) { ___logMax_10 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.EyeAdaptationModel/Settings struct Settings_t8A8457FAF6223DD887350322DC6D951891572426_marshaled_pinvoke { float ___lowPercent_0; float ___highPercent_1; float ___minLuminance_2; float ___maxLuminance_3; float ___keyValue_4; int32_t ___dynamicKeyValue_5; int32_t ___adaptationType_6; float ___speedUp_7; float ___speedDown_8; int32_t ___logMin_9; int32_t ___logMax_10; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.EyeAdaptationModel/Settings struct Settings_t8A8457FAF6223DD887350322DC6D951891572426_marshaled_com { float ___lowPercent_0; float ___highPercent_1; float ___minLuminance_2; float ___maxLuminance_3; float ___keyValue_4; int32_t ___dynamicKeyValue_5; int32_t ___adaptationType_6; float ___speedUp_7; float ___speedDown_8; int32_t ___logMin_9; int32_t ___logMax_10; }; // UnityEngine.PostProcessing.ScreenSpaceReflectionModel_ReflectionSettings struct ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C { public: // UnityEngine.PostProcessing.ScreenSpaceReflectionModel_SSRReflectionBlendType UnityEngine.PostProcessing.ScreenSpaceReflectionModel_ReflectionSettings::blendType int32_t ___blendType_0; // UnityEngine.PostProcessing.ScreenSpaceReflectionModel_SSRResolution UnityEngine.PostProcessing.ScreenSpaceReflectionModel_ReflectionSettings::reflectionQuality int32_t ___reflectionQuality_1; // System.Single UnityEngine.PostProcessing.ScreenSpaceReflectionModel_ReflectionSettings::maxDistance float ___maxDistance_2; // System.Int32 UnityEngine.PostProcessing.ScreenSpaceReflectionModel_ReflectionSettings::iterationCount int32_t ___iterationCount_3; // System.Int32 UnityEngine.PostProcessing.ScreenSpaceReflectionModel_ReflectionSettings::stepSize int32_t ___stepSize_4; // System.Single UnityEngine.PostProcessing.ScreenSpaceReflectionModel_ReflectionSettings::widthModifier float ___widthModifier_5; // System.Single UnityEngine.PostProcessing.ScreenSpaceReflectionModel_ReflectionSettings::reflectionBlur float ___reflectionBlur_6; // System.Boolean UnityEngine.PostProcessing.ScreenSpaceReflectionModel_ReflectionSettings::reflectBackfaces bool ___reflectBackfaces_7; public: inline static int32_t get_offset_of_blendType_0() { return static_cast<int32_t>(offsetof(ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C, ___blendType_0)); } inline int32_t get_blendType_0() const { return ___blendType_0; } inline int32_t* get_address_of_blendType_0() { return &___blendType_0; } inline void set_blendType_0(int32_t value) { ___blendType_0 = value; } inline static int32_t get_offset_of_reflectionQuality_1() { return static_cast<int32_t>(offsetof(ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C, ___reflectionQuality_1)); } inline int32_t get_reflectionQuality_1() const { return ___reflectionQuality_1; } inline int32_t* get_address_of_reflectionQuality_1() { return &___reflectionQuality_1; } inline void set_reflectionQuality_1(int32_t value) { ___reflectionQuality_1 = value; } inline static int32_t get_offset_of_maxDistance_2() { return static_cast<int32_t>(offsetof(ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C, ___maxDistance_2)); } inline float get_maxDistance_2() const { return ___maxDistance_2; } inline float* get_address_of_maxDistance_2() { return &___maxDistance_2; } inline void set_maxDistance_2(float value) { ___maxDistance_2 = value; } inline static int32_t get_offset_of_iterationCount_3() { return static_cast<int32_t>(offsetof(ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C, ___iterationCount_3)); } inline int32_t get_iterationCount_3() const { return ___iterationCount_3; } inline int32_t* get_address_of_iterationCount_3() { return &___iterationCount_3; } inline void set_iterationCount_3(int32_t value) { ___iterationCount_3 = value; } inline static int32_t get_offset_of_stepSize_4() { return static_cast<int32_t>(offsetof(ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C, ___stepSize_4)); } inline int32_t get_stepSize_4() const { return ___stepSize_4; } inline int32_t* get_address_of_stepSize_4() { return &___stepSize_4; } inline void set_stepSize_4(int32_t value) { ___stepSize_4 = value; } inline static int32_t get_offset_of_widthModifier_5() { return static_cast<int32_t>(offsetof(ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C, ___widthModifier_5)); } inline float get_widthModifier_5() const { return ___widthModifier_5; } inline float* get_address_of_widthModifier_5() { return &___widthModifier_5; } inline void set_widthModifier_5(float value) { ___widthModifier_5 = value; } inline static int32_t get_offset_of_reflectionBlur_6() { return static_cast<int32_t>(offsetof(ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C, ___reflectionBlur_6)); } inline float get_reflectionBlur_6() const { return ___reflectionBlur_6; } inline float* get_address_of_reflectionBlur_6() { return &___reflectionBlur_6; } inline void set_reflectionBlur_6(float value) { ___reflectionBlur_6 = value; } inline static int32_t get_offset_of_reflectBackfaces_7() { return static_cast<int32_t>(offsetof(ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C, ___reflectBackfaces_7)); } inline bool get_reflectBackfaces_7() const { return ___reflectBackfaces_7; } inline bool* get_address_of_reflectBackfaces_7() { return &___reflectBackfaces_7; } inline void set_reflectBackfaces_7(bool value) { ___reflectBackfaces_7 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.ScreenSpaceReflectionModel/ReflectionSettings struct ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C_marshaled_pinvoke { int32_t ___blendType_0; int32_t ___reflectionQuality_1; float ___maxDistance_2; int32_t ___iterationCount_3; int32_t ___stepSize_4; float ___widthModifier_5; float ___reflectionBlur_6; int32_t ___reflectBackfaces_7; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.ScreenSpaceReflectionModel/ReflectionSettings struct ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C_marshaled_com { int32_t ___blendType_0; int32_t ___reflectionQuality_1; float ___maxDistance_2; int32_t ___iterationCount_3; int32_t ___stepSize_4; float ___widthModifier_5; float ___reflectionBlur_6; int32_t ___reflectBackfaces_7; }; // UnityEngine.PostProcessing.VignetteModel_Settings struct Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C { public: // UnityEngine.PostProcessing.VignetteModel_Mode UnityEngine.PostProcessing.VignetteModel_Settings::mode int32_t ___mode_0; // UnityEngine.Color UnityEngine.PostProcessing.VignetteModel_Settings::color Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color_1; // UnityEngine.Vector2 UnityEngine.PostProcessing.VignetteModel_Settings::center Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___center_2; // System.Single UnityEngine.PostProcessing.VignetteModel_Settings::intensity float ___intensity_3; // System.Single UnityEngine.PostProcessing.VignetteModel_Settings::smoothness float ___smoothness_4; // System.Single UnityEngine.PostProcessing.VignetteModel_Settings::roundness float ___roundness_5; // UnityEngine.Texture UnityEngine.PostProcessing.VignetteModel_Settings::mask Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___mask_6; // System.Single UnityEngine.PostProcessing.VignetteModel_Settings::opacity float ___opacity_7; // System.Boolean UnityEngine.PostProcessing.VignetteModel_Settings::rounded bool ___rounded_8; public: inline static int32_t get_offset_of_mode_0() { return static_cast<int32_t>(offsetof(Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C, ___mode_0)); } inline int32_t get_mode_0() const { return ___mode_0; } inline int32_t* get_address_of_mode_0() { return &___mode_0; } inline void set_mode_0(int32_t value) { ___mode_0 = value; } inline static int32_t get_offset_of_color_1() { return static_cast<int32_t>(offsetof(Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C, ___color_1)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_color_1() const { return ___color_1; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_color_1() { return &___color_1; } inline void set_color_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___color_1 = value; } inline static int32_t get_offset_of_center_2() { return static_cast<int32_t>(offsetof(Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C, ___center_2)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_center_2() const { return ___center_2; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_center_2() { return &___center_2; } inline void set_center_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___center_2 = value; } inline static int32_t get_offset_of_intensity_3() { return static_cast<int32_t>(offsetof(Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C, ___intensity_3)); } inline float get_intensity_3() const { return ___intensity_3; } inline float* get_address_of_intensity_3() { return &___intensity_3; } inline void set_intensity_3(float value) { ___intensity_3 = value; } inline static int32_t get_offset_of_smoothness_4() { return static_cast<int32_t>(offsetof(Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C, ___smoothness_4)); } inline float get_smoothness_4() const { return ___smoothness_4; } inline float* get_address_of_smoothness_4() { return &___smoothness_4; } inline void set_smoothness_4(float value) { ___smoothness_4 = value; } inline static int32_t get_offset_of_roundness_5() { return static_cast<int32_t>(offsetof(Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C, ___roundness_5)); } inline float get_roundness_5() const { return ___roundness_5; } inline float* get_address_of_roundness_5() { return &___roundness_5; } inline void set_roundness_5(float value) { ___roundness_5 = value; } inline static int32_t get_offset_of_mask_6() { return static_cast<int32_t>(offsetof(Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C, ___mask_6)); } inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * get_mask_6() const { return ___mask_6; } inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 ** get_address_of_mask_6() { return &___mask_6; } inline void set_mask_6(Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * value) { ___mask_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___mask_6), (void*)value); } inline static int32_t get_offset_of_opacity_7() { return static_cast<int32_t>(offsetof(Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C, ___opacity_7)); } inline float get_opacity_7() const { return ___opacity_7; } inline float* get_address_of_opacity_7() { return &___opacity_7; } inline void set_opacity_7(float value) { ___opacity_7 = value; } inline static int32_t get_offset_of_rounded_8() { return static_cast<int32_t>(offsetof(Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C, ___rounded_8)); } inline bool get_rounded_8() const { return ___rounded_8; } inline bool* get_address_of_rounded_8() { return &___rounded_8; } inline void set_rounded_8(bool value) { ___rounded_8 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.VignetteModel/Settings struct Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C_marshaled_pinvoke { int32_t ___mode_0; Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color_1; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___center_2; float ___intensity_3; float ___smoothness_4; float ___roundness_5; Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___mask_6; float ___opacity_7; int32_t ___rounded_8; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.VignetteModel/Settings struct Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C_marshaled_com { int32_t ___mode_0; Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color_1; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___center_2; float ___intensity_3; float ___smoothness_4; float ___roundness_5; Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___mask_6; float ___opacity_7; int32_t ___rounded_8; }; // UnityEngine.RenderTextureDescriptor struct RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E { public: // System.Int32 UnityEngine.RenderTextureDescriptor::<width>k__BackingField int32_t ___U3CwidthU3Ek__BackingField_0; // System.Int32 UnityEngine.RenderTextureDescriptor::<height>k__BackingField int32_t ___U3CheightU3Ek__BackingField_1; // System.Int32 UnityEngine.RenderTextureDescriptor::<msaaSamples>k__BackingField int32_t ___U3CmsaaSamplesU3Ek__BackingField_2; // System.Int32 UnityEngine.RenderTextureDescriptor::<volumeDepth>k__BackingField int32_t ___U3CvolumeDepthU3Ek__BackingField_3; // UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.RenderTextureDescriptor::_graphicsFormat int32_t ____graphicsFormat_4; // System.Int32 UnityEngine.RenderTextureDescriptor::_depthBufferBits int32_t ____depthBufferBits_5; // UnityEngine.Rendering.TextureDimension UnityEngine.RenderTextureDescriptor::<dimension>k__BackingField int32_t ___U3CdimensionU3Ek__BackingField_7; // UnityEngine.Rendering.ShadowSamplingMode UnityEngine.RenderTextureDescriptor::<shadowSamplingMode>k__BackingField int32_t ___U3CshadowSamplingModeU3Ek__BackingField_8; // UnityEngine.VRTextureUsage UnityEngine.RenderTextureDescriptor::<vrUsage>k__BackingField int32_t ___U3CvrUsageU3Ek__BackingField_9; // UnityEngine.RenderTextureCreationFlags UnityEngine.RenderTextureDescriptor::_flags int32_t ____flags_10; // UnityEngine.RenderTextureMemoryless UnityEngine.RenderTextureDescriptor::<memoryless>k__BackingField int32_t ___U3CmemorylessU3Ek__BackingField_11; public: inline static int32_t get_offset_of_U3CwidthU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CwidthU3Ek__BackingField_0)); } inline int32_t get_U3CwidthU3Ek__BackingField_0() const { return ___U3CwidthU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CwidthU3Ek__BackingField_0() { return &___U3CwidthU3Ek__BackingField_0; } inline void set_U3CwidthU3Ek__BackingField_0(int32_t value) { ___U3CwidthU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CheightU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CheightU3Ek__BackingField_1)); } inline int32_t get_U3CheightU3Ek__BackingField_1() const { return ___U3CheightU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CheightU3Ek__BackingField_1() { return &___U3CheightU3Ek__BackingField_1; } inline void set_U3CheightU3Ek__BackingField_1(int32_t value) { ___U3CheightU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CmsaaSamplesU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CmsaaSamplesU3Ek__BackingField_2)); } inline int32_t get_U3CmsaaSamplesU3Ek__BackingField_2() const { return ___U3CmsaaSamplesU3Ek__BackingField_2; } inline int32_t* get_address_of_U3CmsaaSamplesU3Ek__BackingField_2() { return &___U3CmsaaSamplesU3Ek__BackingField_2; } inline void set_U3CmsaaSamplesU3Ek__BackingField_2(int32_t value) { ___U3CmsaaSamplesU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CvolumeDepthU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CvolumeDepthU3Ek__BackingField_3)); } inline int32_t get_U3CvolumeDepthU3Ek__BackingField_3() const { return ___U3CvolumeDepthU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CvolumeDepthU3Ek__BackingField_3() { return &___U3CvolumeDepthU3Ek__BackingField_3; } inline void set_U3CvolumeDepthU3Ek__BackingField_3(int32_t value) { ___U3CvolumeDepthU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of__graphicsFormat_4() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ____graphicsFormat_4)); } inline int32_t get__graphicsFormat_4() const { return ____graphicsFormat_4; } inline int32_t* get_address_of__graphicsFormat_4() { return &____graphicsFormat_4; } inline void set__graphicsFormat_4(int32_t value) { ____graphicsFormat_4 = value; } inline static int32_t get_offset_of__depthBufferBits_5() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ____depthBufferBits_5)); } inline int32_t get__depthBufferBits_5() const { return ____depthBufferBits_5; } inline int32_t* get_address_of__depthBufferBits_5() { return &____depthBufferBits_5; } inline void set__depthBufferBits_5(int32_t value) { ____depthBufferBits_5 = value; } inline static int32_t get_offset_of_U3CdimensionU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CdimensionU3Ek__BackingField_7)); } inline int32_t get_U3CdimensionU3Ek__BackingField_7() const { return ___U3CdimensionU3Ek__BackingField_7; } inline int32_t* get_address_of_U3CdimensionU3Ek__BackingField_7() { return &___U3CdimensionU3Ek__BackingField_7; } inline void set_U3CdimensionU3Ek__BackingField_7(int32_t value) { ___U3CdimensionU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_U3CshadowSamplingModeU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CshadowSamplingModeU3Ek__BackingField_8)); } inline int32_t get_U3CshadowSamplingModeU3Ek__BackingField_8() const { return ___U3CshadowSamplingModeU3Ek__BackingField_8; } inline int32_t* get_address_of_U3CshadowSamplingModeU3Ek__BackingField_8() { return &___U3CshadowSamplingModeU3Ek__BackingField_8; } inline void set_U3CshadowSamplingModeU3Ek__BackingField_8(int32_t value) { ___U3CshadowSamplingModeU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_U3CvrUsageU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CvrUsageU3Ek__BackingField_9)); } inline int32_t get_U3CvrUsageU3Ek__BackingField_9() const { return ___U3CvrUsageU3Ek__BackingField_9; } inline int32_t* get_address_of_U3CvrUsageU3Ek__BackingField_9() { return &___U3CvrUsageU3Ek__BackingField_9; } inline void set_U3CvrUsageU3Ek__BackingField_9(int32_t value) { ___U3CvrUsageU3Ek__BackingField_9 = value; } inline static int32_t get_offset_of__flags_10() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ____flags_10)); } inline int32_t get__flags_10() const { return ____flags_10; } inline int32_t* get_address_of__flags_10() { return &____flags_10; } inline void set__flags_10(int32_t value) { ____flags_10 = value; } inline static int32_t get_offset_of_U3CmemorylessU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CmemorylessU3Ek__BackingField_11)); } inline int32_t get_U3CmemorylessU3Ek__BackingField_11() const { return ___U3CmemorylessU3Ek__BackingField_11; } inline int32_t* get_address_of_U3CmemorylessU3Ek__BackingField_11() { return &___U3CmemorylessU3Ek__BackingField_11; } inline void set_U3CmemorylessU3Ek__BackingField_11(int32_t value) { ___U3CmemorylessU3Ek__BackingField_11 = value; } }; struct RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E_StaticFields { public: // System.Int32[] UnityEngine.RenderTextureDescriptor::depthFormatBits Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___depthFormatBits_6; public: inline static int32_t get_offset_of_depthFormatBits_6() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E_StaticFields, ___depthFormatBits_6)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_depthFormatBits_6() const { return ___depthFormatBits_6; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_depthFormatBits_6() { return &___depthFormatBits_6; } inline void set_depthFormatBits_6(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___depthFormatBits_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___depthFormatBits_6), (void*)value); } }; // UnityEngine.Rendering.RenderTargetIdentifier struct RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B { public: // UnityEngine.Rendering.BuiltinRenderTextureType UnityEngine.Rendering.RenderTargetIdentifier::m_Type int32_t ___m_Type_0; // System.Int32 UnityEngine.Rendering.RenderTargetIdentifier::m_NameID int32_t ___m_NameID_1; // System.Int32 UnityEngine.Rendering.RenderTargetIdentifier::m_InstanceID int32_t ___m_InstanceID_2; // System.IntPtr UnityEngine.Rendering.RenderTargetIdentifier::m_BufferPointer intptr_t ___m_BufferPointer_3; // System.Int32 UnityEngine.Rendering.RenderTargetIdentifier::m_MipLevel int32_t ___m_MipLevel_4; // UnityEngine.CubemapFace UnityEngine.Rendering.RenderTargetIdentifier::m_CubeFace int32_t ___m_CubeFace_5; // System.Int32 UnityEngine.Rendering.RenderTargetIdentifier::m_DepthSlice int32_t ___m_DepthSlice_6; public: inline static int32_t get_offset_of_m_Type_0() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_Type_0)); } inline int32_t get_m_Type_0() const { return ___m_Type_0; } inline int32_t* get_address_of_m_Type_0() { return &___m_Type_0; } inline void set_m_Type_0(int32_t value) { ___m_Type_0 = value; } inline static int32_t get_offset_of_m_NameID_1() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_NameID_1)); } inline int32_t get_m_NameID_1() const { return ___m_NameID_1; } inline int32_t* get_address_of_m_NameID_1() { return &___m_NameID_1; } inline void set_m_NameID_1(int32_t value) { ___m_NameID_1 = value; } inline static int32_t get_offset_of_m_InstanceID_2() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_InstanceID_2)); } inline int32_t get_m_InstanceID_2() const { return ___m_InstanceID_2; } inline int32_t* get_address_of_m_InstanceID_2() { return &___m_InstanceID_2; } inline void set_m_InstanceID_2(int32_t value) { ___m_InstanceID_2 = value; } inline static int32_t get_offset_of_m_BufferPointer_3() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_BufferPointer_3)); } inline intptr_t get_m_BufferPointer_3() const { return ___m_BufferPointer_3; } inline intptr_t* get_address_of_m_BufferPointer_3() { return &___m_BufferPointer_3; } inline void set_m_BufferPointer_3(intptr_t value) { ___m_BufferPointer_3 = value; } inline static int32_t get_offset_of_m_MipLevel_4() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_MipLevel_4)); } inline int32_t get_m_MipLevel_4() const { return ___m_MipLevel_4; } inline int32_t* get_address_of_m_MipLevel_4() { return &___m_MipLevel_4; } inline void set_m_MipLevel_4(int32_t value) { ___m_MipLevel_4 = value; } inline static int32_t get_offset_of_m_CubeFace_5() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_CubeFace_5)); } inline int32_t get_m_CubeFace_5() const { return ___m_CubeFace_5; } inline int32_t* get_address_of_m_CubeFace_5() { return &___m_CubeFace_5; } inline void set_m_CubeFace_5(int32_t value) { ___m_CubeFace_5 = value; } inline static int32_t get_offset_of_m_DepthSlice_6() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_DepthSlice_6)); } inline int32_t get_m_DepthSlice_6() const { return ___m_DepthSlice_6; } inline int32_t* get_address_of_m_DepthSlice_6() { return &___m_DepthSlice_6; } inline void set_m_DepthSlice_6(int32_t value) { ___m_DepthSlice_6 = value; } }; // UnityEngine.SceneManagement.LoadSceneParameters struct LoadSceneParameters_tCB2FF5227064DFE794C8EAB65AEAD61838A5760A { public: // UnityEngine.SceneManagement.LoadSceneMode UnityEngine.SceneManagement.LoadSceneParameters::m_LoadSceneMode int32_t ___m_LoadSceneMode_0; // UnityEngine.SceneManagement.LocalPhysicsMode UnityEngine.SceneManagement.LoadSceneParameters::m_LocalPhysicsMode int32_t ___m_LocalPhysicsMode_1; public: inline static int32_t get_offset_of_m_LoadSceneMode_0() { return static_cast<int32_t>(offsetof(LoadSceneParameters_tCB2FF5227064DFE794C8EAB65AEAD61838A5760A, ___m_LoadSceneMode_0)); } inline int32_t get_m_LoadSceneMode_0() const { return ___m_LoadSceneMode_0; } inline int32_t* get_address_of_m_LoadSceneMode_0() { return &___m_LoadSceneMode_0; } inline void set_m_LoadSceneMode_0(int32_t value) { ___m_LoadSceneMode_0 = value; } inline static int32_t get_offset_of_m_LocalPhysicsMode_1() { return static_cast<int32_t>(offsetof(LoadSceneParameters_tCB2FF5227064DFE794C8EAB65AEAD61838A5760A, ___m_LocalPhysicsMode_1)); } inline int32_t get_m_LocalPhysicsMode_1() const { return ___m_LocalPhysicsMode_1; } inline int32_t* get_address_of_m_LocalPhysicsMode_1() { return &___m_LocalPhysicsMode_1; } inline void set_m_LocalPhysicsMode_1(int32_t value) { ___m_LocalPhysicsMode_1 = value; } }; // UnityEngine.TextGenerationSettings struct TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 { public: // UnityEngine.Font UnityEngine.TextGenerationSettings::font Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * ___font_0; // UnityEngine.Color UnityEngine.TextGenerationSettings::color Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color_1; // System.Int32 UnityEngine.TextGenerationSettings::fontSize int32_t ___fontSize_2; // System.Single UnityEngine.TextGenerationSettings::lineSpacing float ___lineSpacing_3; // System.Boolean UnityEngine.TextGenerationSettings::richText bool ___richText_4; // System.Single UnityEngine.TextGenerationSettings::scaleFactor float ___scaleFactor_5; // UnityEngine.FontStyle UnityEngine.TextGenerationSettings::fontStyle int32_t ___fontStyle_6; // UnityEngine.TextAnchor UnityEngine.TextGenerationSettings::textAnchor int32_t ___textAnchor_7; // System.Boolean UnityEngine.TextGenerationSettings::alignByGeometry bool ___alignByGeometry_8; // System.Boolean UnityEngine.TextGenerationSettings::resizeTextForBestFit bool ___resizeTextForBestFit_9; // System.Int32 UnityEngine.TextGenerationSettings::resizeTextMinSize int32_t ___resizeTextMinSize_10; // System.Int32 UnityEngine.TextGenerationSettings::resizeTextMaxSize int32_t ___resizeTextMaxSize_11; // System.Boolean UnityEngine.TextGenerationSettings::updateBounds bool ___updateBounds_12; // UnityEngine.VerticalWrapMode UnityEngine.TextGenerationSettings::verticalOverflow int32_t ___verticalOverflow_13; // UnityEngine.HorizontalWrapMode UnityEngine.TextGenerationSettings::horizontalOverflow int32_t ___horizontalOverflow_14; // UnityEngine.Vector2 UnityEngine.TextGenerationSettings::generationExtents Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___generationExtents_15; // UnityEngine.Vector2 UnityEngine.TextGenerationSettings::pivot Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_16; // System.Boolean UnityEngine.TextGenerationSettings::generateOutOfBounds bool ___generateOutOfBounds_17; public: inline static int32_t get_offset_of_font_0() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___font_0)); } inline Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * get_font_0() const { return ___font_0; } inline Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 ** get_address_of_font_0() { return &___font_0; } inline void set_font_0(Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * value) { ___font_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___font_0), (void*)value); } inline static int32_t get_offset_of_color_1() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___color_1)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_color_1() const { return ___color_1; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_color_1() { return &___color_1; } inline void set_color_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___color_1 = value; } inline static int32_t get_offset_of_fontSize_2() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___fontSize_2)); } inline int32_t get_fontSize_2() const { return ___fontSize_2; } inline int32_t* get_address_of_fontSize_2() { return &___fontSize_2; } inline void set_fontSize_2(int32_t value) { ___fontSize_2 = value; } inline static int32_t get_offset_of_lineSpacing_3() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___lineSpacing_3)); } inline float get_lineSpacing_3() const { return ___lineSpacing_3; } inline float* get_address_of_lineSpacing_3() { return &___lineSpacing_3; } inline void set_lineSpacing_3(float value) { ___lineSpacing_3 = value; } inline static int32_t get_offset_of_richText_4() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___richText_4)); } inline bool get_richText_4() const { return ___richText_4; } inline bool* get_address_of_richText_4() { return &___richText_4; } inline void set_richText_4(bool value) { ___richText_4 = value; } inline static int32_t get_offset_of_scaleFactor_5() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___scaleFactor_5)); } inline float get_scaleFactor_5() const { return ___scaleFactor_5; } inline float* get_address_of_scaleFactor_5() { return &___scaleFactor_5; } inline void set_scaleFactor_5(float value) { ___scaleFactor_5 = value; } inline static int32_t get_offset_of_fontStyle_6() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___fontStyle_6)); } inline int32_t get_fontStyle_6() const { return ___fontStyle_6; } inline int32_t* get_address_of_fontStyle_6() { return &___fontStyle_6; } inline void set_fontStyle_6(int32_t value) { ___fontStyle_6 = value; } inline static int32_t get_offset_of_textAnchor_7() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___textAnchor_7)); } inline int32_t get_textAnchor_7() const { return ___textAnchor_7; } inline int32_t* get_address_of_textAnchor_7() { return &___textAnchor_7; } inline void set_textAnchor_7(int32_t value) { ___textAnchor_7 = value; } inline static int32_t get_offset_of_alignByGeometry_8() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___alignByGeometry_8)); } inline bool get_alignByGeometry_8() const { return ___alignByGeometry_8; } inline bool* get_address_of_alignByGeometry_8() { return &___alignByGeometry_8; } inline void set_alignByGeometry_8(bool value) { ___alignByGeometry_8 = value; } inline static int32_t get_offset_of_resizeTextForBestFit_9() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___resizeTextForBestFit_9)); } inline bool get_resizeTextForBestFit_9() const { return ___resizeTextForBestFit_9; } inline bool* get_address_of_resizeTextForBestFit_9() { return &___resizeTextForBestFit_9; } inline void set_resizeTextForBestFit_9(bool value) { ___resizeTextForBestFit_9 = value; } inline static int32_t get_offset_of_resizeTextMinSize_10() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___resizeTextMinSize_10)); } inline int32_t get_resizeTextMinSize_10() const { return ___resizeTextMinSize_10; } inline int32_t* get_address_of_resizeTextMinSize_10() { return &___resizeTextMinSize_10; } inline void set_resizeTextMinSize_10(int32_t value) { ___resizeTextMinSize_10 = value; } inline static int32_t get_offset_of_resizeTextMaxSize_11() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___resizeTextMaxSize_11)); } inline int32_t get_resizeTextMaxSize_11() const { return ___resizeTextMaxSize_11; } inline int32_t* get_address_of_resizeTextMaxSize_11() { return &___resizeTextMaxSize_11; } inline void set_resizeTextMaxSize_11(int32_t value) { ___resizeTextMaxSize_11 = value; } inline static int32_t get_offset_of_updateBounds_12() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___updateBounds_12)); } inline bool get_updateBounds_12() const { return ___updateBounds_12; } inline bool* get_address_of_updateBounds_12() { return &___updateBounds_12; } inline void set_updateBounds_12(bool value) { ___updateBounds_12 = value; } inline static int32_t get_offset_of_verticalOverflow_13() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___verticalOverflow_13)); } inline int32_t get_verticalOverflow_13() const { return ___verticalOverflow_13; } inline int32_t* get_address_of_verticalOverflow_13() { return &___verticalOverflow_13; } inline void set_verticalOverflow_13(int32_t value) { ___verticalOverflow_13 = value; } inline static int32_t get_offset_of_horizontalOverflow_14() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___horizontalOverflow_14)); } inline int32_t get_horizontalOverflow_14() const { return ___horizontalOverflow_14; } inline int32_t* get_address_of_horizontalOverflow_14() { return &___horizontalOverflow_14; } inline void set_horizontalOverflow_14(int32_t value) { ___horizontalOverflow_14 = value; } inline static int32_t get_offset_of_generationExtents_15() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___generationExtents_15)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_generationExtents_15() const { return ___generationExtents_15; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_generationExtents_15() { return &___generationExtents_15; } inline void set_generationExtents_15(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___generationExtents_15 = value; } inline static int32_t get_offset_of_pivot_16() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___pivot_16)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_pivot_16() const { return ___pivot_16; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_pivot_16() { return &___pivot_16; } inline void set_pivot_16(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___pivot_16 = value; } inline static int32_t get_offset_of_generateOutOfBounds_17() { return static_cast<int32_t>(offsetof(TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, ___generateOutOfBounds_17)); } inline bool get_generateOutOfBounds_17() const { return ___generateOutOfBounds_17; } inline bool* get_address_of_generateOutOfBounds_17() { return &___generateOutOfBounds_17; } inline void set_generateOutOfBounds_17(bool value) { ___generateOutOfBounds_17 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.TextGenerationSettings struct TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68_marshaled_pinvoke { Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * ___font_0; Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color_1; int32_t ___fontSize_2; float ___lineSpacing_3; int32_t ___richText_4; float ___scaleFactor_5; int32_t ___fontStyle_6; int32_t ___textAnchor_7; int32_t ___alignByGeometry_8; int32_t ___resizeTextForBestFit_9; int32_t ___resizeTextMinSize_10; int32_t ___resizeTextMaxSize_11; int32_t ___updateBounds_12; int32_t ___verticalOverflow_13; int32_t ___horizontalOverflow_14; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___generationExtents_15; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_16; int32_t ___generateOutOfBounds_17; }; // Native definition for COM marshalling of UnityEngine.TextGenerationSettings struct TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68_marshaled_com { Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * ___font_0; Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color_1; int32_t ___fontSize_2; float ___lineSpacing_3; int32_t ___richText_4; float ___scaleFactor_5; int32_t ___fontStyle_6; int32_t ___textAnchor_7; int32_t ___alignByGeometry_8; int32_t ___resizeTextForBestFit_9; int32_t ___resizeTextMinSize_10; int32_t ___resizeTextMaxSize_11; int32_t ___updateBounds_12; int32_t ___verticalOverflow_13; int32_t ___horizontalOverflow_14; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___generationExtents_15; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_16; int32_t ___generateOutOfBounds_17; }; // UnityEngine.Tilemaps.TileData struct TileData_t8A50A35CAFD87C12E27D7E596D968C9114A4CBB5 { public: // UnityEngine.Sprite UnityEngine.Tilemaps.TileData::m_Sprite Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_Sprite_0; // UnityEngine.Color UnityEngine.Tilemaps.TileData::m_Color Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_Color_1; // UnityEngine.Matrix4x4 UnityEngine.Tilemaps.TileData::m_Transform Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___m_Transform_2; // UnityEngine.GameObject UnityEngine.Tilemaps.TileData::m_GameObject GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_3; // UnityEngine.Tilemaps.TileFlags UnityEngine.Tilemaps.TileData::m_Flags int32_t ___m_Flags_4; // UnityEngine.Tilemaps.Tile_ColliderType UnityEngine.Tilemaps.TileData::m_ColliderType int32_t ___m_ColliderType_5; public: inline static int32_t get_offset_of_m_Sprite_0() { return static_cast<int32_t>(offsetof(TileData_t8A50A35CAFD87C12E27D7E596D968C9114A4CBB5, ___m_Sprite_0)); } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_Sprite_0() const { return ___m_Sprite_0; } inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_Sprite_0() { return &___m_Sprite_0; } inline void set_m_Sprite_0(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value) { ___m_Sprite_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Sprite_0), (void*)value); } inline static int32_t get_offset_of_m_Color_1() { return static_cast<int32_t>(offsetof(TileData_t8A50A35CAFD87C12E27D7E596D968C9114A4CBB5, ___m_Color_1)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_Color_1() const { return ___m_Color_1; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_Color_1() { return &___m_Color_1; } inline void set_m_Color_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___m_Color_1 = value; } inline static int32_t get_offset_of_m_Transform_2() { return static_cast<int32_t>(offsetof(TileData_t8A50A35CAFD87C12E27D7E596D968C9114A4CBB5, ___m_Transform_2)); } inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_m_Transform_2() const { return ___m_Transform_2; } inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_m_Transform_2() { return &___m_Transform_2; } inline void set_m_Transform_2(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value) { ___m_Transform_2 = value; } inline static int32_t get_offset_of_m_GameObject_3() { return static_cast<int32_t>(offsetof(TileData_t8A50A35CAFD87C12E27D7E596D968C9114A4CBB5, ___m_GameObject_3)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_GameObject_3() const { return ___m_GameObject_3; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_GameObject_3() { return &___m_GameObject_3; } inline void set_m_GameObject_3(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___m_GameObject_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_3), (void*)value); } inline static int32_t get_offset_of_m_Flags_4() { return static_cast<int32_t>(offsetof(TileData_t8A50A35CAFD87C12E27D7E596D968C9114A4CBB5, ___m_Flags_4)); } inline int32_t get_m_Flags_4() const { return ___m_Flags_4; } inline int32_t* get_address_of_m_Flags_4() { return &___m_Flags_4; } inline void set_m_Flags_4(int32_t value) { ___m_Flags_4 = value; } inline static int32_t get_offset_of_m_ColliderType_5() { return static_cast<int32_t>(offsetof(TileData_t8A50A35CAFD87C12E27D7E596D968C9114A4CBB5, ___m_ColliderType_5)); } inline int32_t get_m_ColliderType_5() const { return ___m_ColliderType_5; } inline int32_t* get_address_of_m_ColliderType_5() { return &___m_ColliderType_5; } inline void set_m_ColliderType_5(int32_t value) { ___m_ColliderType_5 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Tilemaps.TileData struct TileData_t8A50A35CAFD87C12E27D7E596D968C9114A4CBB5_marshaled_pinvoke { Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_Sprite_0; Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_Color_1; Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___m_Transform_2; GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_3; int32_t ___m_Flags_4; int32_t ___m_ColliderType_5; }; // Native definition for COM marshalling of UnityEngine.Tilemaps.TileData struct TileData_t8A50A35CAFD87C12E27D7E596D968C9114A4CBB5_marshaled_com { Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_Sprite_0; Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_Color_1; Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___m_Transform_2; GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_3; int32_t ___m_Flags_4; int32_t ___m_ColliderType_5; }; // UnityEngine.Touch struct Touch_t806752C775BA713A91B6588A07CA98417CABC003 { public: // System.Int32 UnityEngine.Touch::m_FingerId int32_t ___m_FingerId_0; // UnityEngine.Vector2 UnityEngine.Touch::m_Position Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Position_1; // UnityEngine.Vector2 UnityEngine.Touch::m_RawPosition Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_RawPosition_2; // UnityEngine.Vector2 UnityEngine.Touch::m_PositionDelta Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_PositionDelta_3; // System.Single UnityEngine.Touch::m_TimeDelta float ___m_TimeDelta_4; // System.Int32 UnityEngine.Touch::m_TapCount int32_t ___m_TapCount_5; // UnityEngine.TouchPhase UnityEngine.Touch::m_Phase int32_t ___m_Phase_6; // UnityEngine.TouchType UnityEngine.Touch::m_Type int32_t ___m_Type_7; // System.Single UnityEngine.Touch::m_Pressure float ___m_Pressure_8; // System.Single UnityEngine.Touch::m_maximumPossiblePressure float ___m_maximumPossiblePressure_9; // System.Single UnityEngine.Touch::m_Radius float ___m_Radius_10; // System.Single UnityEngine.Touch::m_RadiusVariance float ___m_RadiusVariance_11; // System.Single UnityEngine.Touch::m_AltitudeAngle float ___m_AltitudeAngle_12; // System.Single UnityEngine.Touch::m_AzimuthAngle float ___m_AzimuthAngle_13; public: inline static int32_t get_offset_of_m_FingerId_0() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_FingerId_0)); } inline int32_t get_m_FingerId_0() const { return ___m_FingerId_0; } inline int32_t* get_address_of_m_FingerId_0() { return &___m_FingerId_0; } inline void set_m_FingerId_0(int32_t value) { ___m_FingerId_0 = value; } inline static int32_t get_offset_of_m_Position_1() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_Position_1)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Position_1() const { return ___m_Position_1; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Position_1() { return &___m_Position_1; } inline void set_m_Position_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_Position_1 = value; } inline static int32_t get_offset_of_m_RawPosition_2() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_RawPosition_2)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_RawPosition_2() const { return ___m_RawPosition_2; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_RawPosition_2() { return &___m_RawPosition_2; } inline void set_m_RawPosition_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_RawPosition_2 = value; } inline static int32_t get_offset_of_m_PositionDelta_3() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_PositionDelta_3)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_PositionDelta_3() const { return ___m_PositionDelta_3; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_PositionDelta_3() { return &___m_PositionDelta_3; } inline void set_m_PositionDelta_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_PositionDelta_3 = value; } inline static int32_t get_offset_of_m_TimeDelta_4() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_TimeDelta_4)); } inline float get_m_TimeDelta_4() const { return ___m_TimeDelta_4; } inline float* get_address_of_m_TimeDelta_4() { return &___m_TimeDelta_4; } inline void set_m_TimeDelta_4(float value) { ___m_TimeDelta_4 = value; } inline static int32_t get_offset_of_m_TapCount_5() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_TapCount_5)); } inline int32_t get_m_TapCount_5() const { return ___m_TapCount_5; } inline int32_t* get_address_of_m_TapCount_5() { return &___m_TapCount_5; } inline void set_m_TapCount_5(int32_t value) { ___m_TapCount_5 = value; } inline static int32_t get_offset_of_m_Phase_6() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_Phase_6)); } inline int32_t get_m_Phase_6() const { return ___m_Phase_6; } inline int32_t* get_address_of_m_Phase_6() { return &___m_Phase_6; } inline void set_m_Phase_6(int32_t value) { ___m_Phase_6 = value; } inline static int32_t get_offset_of_m_Type_7() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_Type_7)); } inline int32_t get_m_Type_7() const { return ___m_Type_7; } inline int32_t* get_address_of_m_Type_7() { return &___m_Type_7; } inline void set_m_Type_7(int32_t value) { ___m_Type_7 = value; } inline static int32_t get_offset_of_m_Pressure_8() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_Pressure_8)); } inline float get_m_Pressure_8() const { return ___m_Pressure_8; } inline float* get_address_of_m_Pressure_8() { return &___m_Pressure_8; } inline void set_m_Pressure_8(float value) { ___m_Pressure_8 = value; } inline static int32_t get_offset_of_m_maximumPossiblePressure_9() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_maximumPossiblePressure_9)); } inline float get_m_maximumPossiblePressure_9() const { return ___m_maximumPossiblePressure_9; } inline float* get_address_of_m_maximumPossiblePressure_9() { return &___m_maximumPossiblePressure_9; } inline void set_m_maximumPossiblePressure_9(float value) { ___m_maximumPossiblePressure_9 = value; } inline static int32_t get_offset_of_m_Radius_10() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_Radius_10)); } inline float get_m_Radius_10() const { return ___m_Radius_10; } inline float* get_address_of_m_Radius_10() { return &___m_Radius_10; } inline void set_m_Radius_10(float value) { ___m_Radius_10 = value; } inline static int32_t get_offset_of_m_RadiusVariance_11() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_RadiusVariance_11)); } inline float get_m_RadiusVariance_11() const { return ___m_RadiusVariance_11; } inline float* get_address_of_m_RadiusVariance_11() { return &___m_RadiusVariance_11; } inline void set_m_RadiusVariance_11(float value) { ___m_RadiusVariance_11 = value; } inline static int32_t get_offset_of_m_AltitudeAngle_12() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_AltitudeAngle_12)); } inline float get_m_AltitudeAngle_12() const { return ___m_AltitudeAngle_12; } inline float* get_address_of_m_AltitudeAngle_12() { return &___m_AltitudeAngle_12; } inline void set_m_AltitudeAngle_12(float value) { ___m_AltitudeAngle_12 = value; } inline static int32_t get_offset_of_m_AzimuthAngle_13() { return static_cast<int32_t>(offsetof(Touch_t806752C775BA713A91B6588A07CA98417CABC003, ___m_AzimuthAngle_13)); } inline float get_m_AzimuthAngle_13() const { return ___m_AzimuthAngle_13; } inline float* get_address_of_m_AzimuthAngle_13() { return &___m_AzimuthAngle_13; } inline void set_m_AzimuthAngle_13(float value) { ___m_AzimuthAngle_13 = value; } }; // UnityEngine.UI.CoroutineTween.ColorTween struct ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 { public: // UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenCallback UnityEngine.UI.CoroutineTween.ColorTween::m_Target ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * ___m_Target_0; // UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::m_StartColor Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_StartColor_1; // UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::m_TargetColor Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___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_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_Target_0)); } inline ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * get_m_Target_0() const { return ___m_Target_0; } inline ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 ** get_address_of_m_Target_0() { return &___m_Target_0; } inline void set_m_Target_0(ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * 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_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_StartColor_1)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_StartColor_1() const { return ___m_StartColor_1; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_StartColor_1() { return &___m_StartColor_1; } inline void set_m_StartColor_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___m_StartColor_1 = value; } inline static int32_t get_offset_of_m_TargetColor_2() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_TargetColor_2)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_TargetColor_2() const { return ___m_TargetColor_2; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_TargetColor_2() { return &___m_TargetColor_2; } inline void set_m_TargetColor_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___m_TargetColor_2 = value; } inline static int32_t get_offset_of_m_TweenMode_3() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___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_t4CBBF5875FA391053DB62E98D8D9603040413228, ___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_t4CBBF5875FA391053DB62E98D8D9603040413228, ___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_t4CBBF5875FA391053DB62E98D8D9603040413228_marshaled_pinvoke { ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * ___m_Target_0; Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_StartColor_1; Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___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_t4CBBF5875FA391053DB62E98D8D9603040413228_marshaled_com { ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * ___m_Target_0; Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_StartColor_1; Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_TargetColor_2; int32_t ___m_TweenMode_3; float ___m_Duration_4; int32_t ___m_IgnoreTimeScale_5; }; // UnityEngine.UI.Navigation struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 { public: // UnityEngine.UI.Navigation_Mode UnityEngine.UI.Navigation::m_Mode int32_t ___m_Mode_0; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4; public: inline static int32_t get_offset_of_m_Mode_0() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_Mode_0)); } inline int32_t get_m_Mode_0() const { return ___m_Mode_0; } inline int32_t* get_address_of_m_Mode_0() { return &___m_Mode_0; } inline void set_m_Mode_0(int32_t value) { ___m_Mode_0 = value; } inline static int32_t get_offset_of_m_SelectOnUp_1() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnUp_1)); } inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnUp_1() const { return ___m_SelectOnUp_1; } inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnUp_1() { return &___m_SelectOnUp_1; } inline void set_m_SelectOnUp_1(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value) { ___m_SelectOnUp_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnUp_1), (void*)value); } inline static int32_t get_offset_of_m_SelectOnDown_2() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnDown_2)); } inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnDown_2() const { return ___m_SelectOnDown_2; } inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnDown_2() { return &___m_SelectOnDown_2; } inline void set_m_SelectOnDown_2(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value) { ___m_SelectOnDown_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnDown_2), (void*)value); } inline static int32_t get_offset_of_m_SelectOnLeft_3() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnLeft_3)); } inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnLeft_3() const { return ___m_SelectOnLeft_3; } inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnLeft_3() { return &___m_SelectOnLeft_3; } inline void set_m_SelectOnLeft_3(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value) { ___m_SelectOnLeft_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnLeft_3), (void*)value); } inline static int32_t get_offset_of_m_SelectOnRight_4() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnRight_4)); } inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnRight_4() const { return ___m_SelectOnRight_4; } inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnRight_4() { return &___m_SelectOnRight_4; } inline void set_m_SelectOnRight_4(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value) { ___m_SelectOnRight_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnRight_4), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_pinvoke { int32_t ___m_Mode_0; Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1; Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2; Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3; Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4; }; // Native definition for COM marshalling of UnityEngine.UI.Navigation struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_com { int32_t ___m_Mode_0; Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1; Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2; Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3; Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4; }; // UnityEngine.Windows.Speech.PhraseRecognizedEventArgs struct PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD { public: // UnityEngine.Windows.Speech.ConfidenceLevel UnityEngine.Windows.Speech.PhraseRecognizedEventArgs::confidence int32_t ___confidence_0; // UnityEngine.Windows.Speech.SemanticMeaning[] UnityEngine.Windows.Speech.PhraseRecognizedEventArgs::semanticMeanings SemanticMeaningU5BU5D_t3FC0A968EA1C540EEA6B6F92368A430CA596D23D* ___semanticMeanings_1; // System.String UnityEngine.Windows.Speech.PhraseRecognizedEventArgs::text String_t* ___text_2; // System.DateTime UnityEngine.Windows.Speech.PhraseRecognizedEventArgs::phraseStartTime DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___phraseStartTime_3; // System.TimeSpan UnityEngine.Windows.Speech.PhraseRecognizedEventArgs::phraseDuration TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___phraseDuration_4; public: inline static int32_t get_offset_of_confidence_0() { return static_cast<int32_t>(offsetof(PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD, ___confidence_0)); } inline int32_t get_confidence_0() const { return ___confidence_0; } inline int32_t* get_address_of_confidence_0() { return &___confidence_0; } inline void set_confidence_0(int32_t value) { ___confidence_0 = value; } inline static int32_t get_offset_of_semanticMeanings_1() { return static_cast<int32_t>(offsetof(PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD, ___semanticMeanings_1)); } inline SemanticMeaningU5BU5D_t3FC0A968EA1C540EEA6B6F92368A430CA596D23D* get_semanticMeanings_1() const { return ___semanticMeanings_1; } inline SemanticMeaningU5BU5D_t3FC0A968EA1C540EEA6B6F92368A430CA596D23D** get_address_of_semanticMeanings_1() { return &___semanticMeanings_1; } inline void set_semanticMeanings_1(SemanticMeaningU5BU5D_t3FC0A968EA1C540EEA6B6F92368A430CA596D23D* value) { ___semanticMeanings_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___semanticMeanings_1), (void*)value); } inline static int32_t get_offset_of_text_2() { return static_cast<int32_t>(offsetof(PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD, ___text_2)); } inline String_t* get_text_2() const { return ___text_2; } inline String_t** get_address_of_text_2() { return &___text_2; } inline void set_text_2(String_t* value) { ___text_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___text_2), (void*)value); } inline static int32_t get_offset_of_phraseStartTime_3() { return static_cast<int32_t>(offsetof(PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD, ___phraseStartTime_3)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_phraseStartTime_3() const { return ___phraseStartTime_3; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_phraseStartTime_3() { return &___phraseStartTime_3; } inline void set_phraseStartTime_3(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___phraseStartTime_3 = value; } inline static int32_t get_offset_of_phraseDuration_4() { return static_cast<int32_t>(offsetof(PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD, ___phraseDuration_4)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_phraseDuration_4() const { return ___phraseDuration_4; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_phraseDuration_4() { return &___phraseDuration_4; } inline void set_phraseDuration_4(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___phraseDuration_4 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Windows.Speech.PhraseRecognizedEventArgs struct PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD_marshaled_pinvoke { int32_t ___confidence_0; SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_marshaled_pinvoke* ___semanticMeanings_1; char* ___text_2; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___phraseStartTime_3; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___phraseDuration_4; }; // Native definition for COM marshalling of UnityEngine.Windows.Speech.PhraseRecognizedEventArgs struct PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD_marshaled_com { int32_t ___confidence_0; SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_marshaled_com* ___semanticMeanings_1; Il2CppChar* ___text_2; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___phraseStartTime_3; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___phraseDuration_4; }; // UnityEngine.XR.InputFeatureUsage struct InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C { public: // System.String UnityEngine.XR.InputFeatureUsage::m_Name String_t* ___m_Name_0; // UnityEngine.XR.InputFeatureType UnityEngine.XR.InputFeatureUsage::m_InternalType uint32_t ___m_InternalType_1; public: inline static int32_t get_offset_of_m_Name_0() { return static_cast<int32_t>(offsetof(InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C, ___m_Name_0)); } inline String_t* get_m_Name_0() const { return ___m_Name_0; } inline String_t** get_address_of_m_Name_0() { return &___m_Name_0; } inline void set_m_Name_0(String_t* value) { ___m_Name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Name_0), (void*)value); } inline static int32_t get_offset_of_m_InternalType_1() { return static_cast<int32_t>(offsetof(InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C, ___m_InternalType_1)); } inline uint32_t get_m_InternalType_1() const { return ___m_InternalType_1; } inline uint32_t* get_address_of_m_InternalType_1() { return &___m_InternalType_1; } inline void set_m_InternalType_1(uint32_t value) { ___m_InternalType_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage struct InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshaled_pinvoke { char* ___m_Name_0; uint32_t ___m_InternalType_1; }; // Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage struct InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshaled_com { Il2CppChar* ___m_Name_0; uint32_t ___m_InternalType_1; }; // UnityEngine.XR.WSA.Input.InteractionSource struct InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 { public: // System.UInt32 UnityEngine.XR.WSA.Input.InteractionSource::m_Id uint32_t ___m_Id_0; // UnityEngine.XR.WSA.Input.InteractionSourceKind UnityEngine.XR.WSA.Input.InteractionSource::m_SourceKind int32_t ___m_SourceKind_1; // UnityEngine.XR.WSA.Input.InteractionSourceHandedness UnityEngine.XR.WSA.Input.InteractionSource::m_Handedness int32_t ___m_Handedness_2; // UnityEngine.XR.WSA.Input.InteractionSourceFlags UnityEngine.XR.WSA.Input.InteractionSource::m_Flags int32_t ___m_Flags_3; // System.UInt16 UnityEngine.XR.WSA.Input.InteractionSource::m_VendorId uint16_t ___m_VendorId_4; // System.UInt16 UnityEngine.XR.WSA.Input.InteractionSource::m_ProductId uint16_t ___m_ProductId_5; // System.UInt16 UnityEngine.XR.WSA.Input.InteractionSource::m_ProductVersion uint16_t ___m_ProductVersion_6; public: inline static int32_t get_offset_of_m_Id_0() { return static_cast<int32_t>(offsetof(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6, ___m_Id_0)); } inline uint32_t get_m_Id_0() const { return ___m_Id_0; } inline uint32_t* get_address_of_m_Id_0() { return &___m_Id_0; } inline void set_m_Id_0(uint32_t value) { ___m_Id_0 = value; } inline static int32_t get_offset_of_m_SourceKind_1() { return static_cast<int32_t>(offsetof(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6, ___m_SourceKind_1)); } inline int32_t get_m_SourceKind_1() const { return ___m_SourceKind_1; } inline int32_t* get_address_of_m_SourceKind_1() { return &___m_SourceKind_1; } inline void set_m_SourceKind_1(int32_t value) { ___m_SourceKind_1 = value; } inline static int32_t get_offset_of_m_Handedness_2() { return static_cast<int32_t>(offsetof(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6, ___m_Handedness_2)); } inline int32_t get_m_Handedness_2() const { return ___m_Handedness_2; } inline int32_t* get_address_of_m_Handedness_2() { return &___m_Handedness_2; } inline void set_m_Handedness_2(int32_t value) { ___m_Handedness_2 = value; } inline static int32_t get_offset_of_m_Flags_3() { return static_cast<int32_t>(offsetof(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6, ___m_Flags_3)); } inline int32_t get_m_Flags_3() const { return ___m_Flags_3; } inline int32_t* get_address_of_m_Flags_3() { return &___m_Flags_3; } inline void set_m_Flags_3(int32_t value) { ___m_Flags_3 = value; } inline static int32_t get_offset_of_m_VendorId_4() { return static_cast<int32_t>(offsetof(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6, ___m_VendorId_4)); } inline uint16_t get_m_VendorId_4() const { return ___m_VendorId_4; } inline uint16_t* get_address_of_m_VendorId_4() { return &___m_VendorId_4; } inline void set_m_VendorId_4(uint16_t value) { ___m_VendorId_4 = value; } inline static int32_t get_offset_of_m_ProductId_5() { return static_cast<int32_t>(offsetof(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6, ___m_ProductId_5)); } inline uint16_t get_m_ProductId_5() const { return ___m_ProductId_5; } inline uint16_t* get_address_of_m_ProductId_5() { return &___m_ProductId_5; } inline void set_m_ProductId_5(uint16_t value) { ___m_ProductId_5 = value; } inline static int32_t get_offset_of_m_ProductVersion_6() { return static_cast<int32_t>(offsetof(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6, ___m_ProductVersion_6)); } inline uint16_t get_m_ProductVersion_6() const { return ___m_ProductVersion_6; } inline uint16_t* get_address_of_m_ProductVersion_6() { return &___m_ProductVersion_6; } inline void set_m_ProductVersion_6(uint16_t value) { ___m_ProductVersion_6 = value; } }; // UnityEngine.XR.WSA.Input.InteractionSourcePose struct InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 { public: // UnityEngine.Quaternion UnityEngine.XR.WSA.Input.InteractionSourcePose::m_GripRotation Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___m_GripRotation_0; // UnityEngine.Quaternion UnityEngine.XR.WSA.Input.InteractionSourcePose::m_PointerRotation Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___m_PointerRotation_1; // UnityEngine.Vector3 UnityEngine.XR.WSA.Input.InteractionSourcePose::m_GripPosition Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_GripPosition_2; // UnityEngine.Vector3 UnityEngine.XR.WSA.Input.InteractionSourcePose::m_PointerPosition Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_PointerPosition_3; // UnityEngine.Vector3 UnityEngine.XR.WSA.Input.InteractionSourcePose::m_Velocity Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Velocity_4; // UnityEngine.Vector3 UnityEngine.XR.WSA.Input.InteractionSourcePose::m_AngularVelocity Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AngularVelocity_5; // UnityEngine.XR.WSA.Input.InteractionSourcePositionAccuracy UnityEngine.XR.WSA.Input.InteractionSourcePose::m_PositionAccuracy int32_t ___m_PositionAccuracy_6; // UnityEngine.XR.WSA.Input.InteractionSourcePoseFlags UnityEngine.XR.WSA.Input.InteractionSourcePose::m_Flags int32_t ___m_Flags_7; public: inline static int32_t get_offset_of_m_GripRotation_0() { return static_cast<int32_t>(offsetof(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73, ___m_GripRotation_0)); } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_m_GripRotation_0() const { return ___m_GripRotation_0; } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_m_GripRotation_0() { return &___m_GripRotation_0; } inline void set_m_GripRotation_0(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value) { ___m_GripRotation_0 = value; } inline static int32_t get_offset_of_m_PointerRotation_1() { return static_cast<int32_t>(offsetof(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73, ___m_PointerRotation_1)); } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_m_PointerRotation_1() const { return ___m_PointerRotation_1; } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_m_PointerRotation_1() { return &___m_PointerRotation_1; } inline void set_m_PointerRotation_1(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value) { ___m_PointerRotation_1 = value; } inline static int32_t get_offset_of_m_GripPosition_2() { return static_cast<int32_t>(offsetof(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73, ___m_GripPosition_2)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_GripPosition_2() const { return ___m_GripPosition_2; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_GripPosition_2() { return &___m_GripPosition_2; } inline void set_m_GripPosition_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_GripPosition_2 = value; } inline static int32_t get_offset_of_m_PointerPosition_3() { return static_cast<int32_t>(offsetof(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73, ___m_PointerPosition_3)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_PointerPosition_3() const { return ___m_PointerPosition_3; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_PointerPosition_3() { return &___m_PointerPosition_3; } inline void set_m_PointerPosition_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_PointerPosition_3 = value; } inline static int32_t get_offset_of_m_Velocity_4() { return static_cast<int32_t>(offsetof(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73, ___m_Velocity_4)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Velocity_4() const { return ___m_Velocity_4; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Velocity_4() { return &___m_Velocity_4; } inline void set_m_Velocity_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Velocity_4 = value; } inline static int32_t get_offset_of_m_AngularVelocity_5() { return static_cast<int32_t>(offsetof(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73, ___m_AngularVelocity_5)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AngularVelocity_5() const { return ___m_AngularVelocity_5; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AngularVelocity_5() { return &___m_AngularVelocity_5; } inline void set_m_AngularVelocity_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_AngularVelocity_5 = value; } inline static int32_t get_offset_of_m_PositionAccuracy_6() { return static_cast<int32_t>(offsetof(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73, ___m_PositionAccuracy_6)); } inline int32_t get_m_PositionAccuracy_6() const { return ___m_PositionAccuracy_6; } inline int32_t* get_address_of_m_PositionAccuracy_6() { return &___m_PositionAccuracy_6; } inline void set_m_PositionAccuracy_6(int32_t value) { ___m_PositionAccuracy_6 = value; } inline static int32_t get_offset_of_m_Flags_7() { return static_cast<int32_t>(offsetof(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73, ___m_Flags_7)); } inline int32_t get_m_Flags_7() const { return ___m_Flags_7; } inline int32_t* get_address_of_m_Flags_7() { return &___m_Flags_7; } inline void set_m_Flags_7(int32_t value) { ___m_Flags_7 = value; } }; // UnityEngine.XR.WSA.WebCam.PhotoCapture_PhotoCaptureResult struct PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC { public: // UnityEngine.XR.WSA.WebCam.PhotoCapture_CaptureResultType UnityEngine.XR.WSA.WebCam.PhotoCapture_PhotoCaptureResult::resultType int32_t ___resultType_0; // System.Int64 UnityEngine.XR.WSA.WebCam.PhotoCapture_PhotoCaptureResult::hResult int64_t ___hResult_1; public: inline static int32_t get_offset_of_resultType_0() { return static_cast<int32_t>(offsetof(PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC, ___resultType_0)); } inline int32_t get_resultType_0() const { return ___resultType_0; } inline int32_t* get_address_of_resultType_0() { return &___resultType_0; } inline void set_resultType_0(int32_t value) { ___resultType_0 = value; } inline static int32_t get_offset_of_hResult_1() { return static_cast<int32_t>(offsetof(PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC, ___hResult_1)); } inline int64_t get_hResult_1() const { return ___hResult_1; } inline int64_t* get_address_of_hResult_1() { return &___hResult_1; } inline void set_hResult_1(int64_t value) { ___hResult_1 = value; } }; // UnityEngine.XR.WSA.WebCam.VideoCapture_VideoCaptureResult struct VideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55 { public: // UnityEngine.XR.WSA.WebCam.VideoCapture_CaptureResultType UnityEngine.XR.WSA.WebCam.VideoCapture_VideoCaptureResult::resultType int32_t ___resultType_0; // System.Int64 UnityEngine.XR.WSA.WebCam.VideoCapture_VideoCaptureResult::hResult int64_t ___hResult_1; public: inline static int32_t get_offset_of_resultType_0() { return static_cast<int32_t>(offsetof(VideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55, ___resultType_0)); } inline int32_t get_resultType_0() const { return ___resultType_0; } inline int32_t* get_address_of_resultType_0() { return &___resultType_0; } inline void set_resultType_0(int32_t value) { ___resultType_0 = value; } inline static int32_t get_offset_of_hResult_1() { return static_cast<int32_t>(offsetof(VideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55, ___hResult_1)); } inline int64_t get_hResult_1() const { return ___hResult_1; } inline int64_t* get_address_of_hResult_1() { return &___hResult_1; } inline void set_hResult_1(int64_t value) { ___hResult_1 = value; } }; // UnityEngine.XR.XRNodeState struct XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A { public: // UnityEngine.XR.XRNode UnityEngine.XR.XRNodeState::m_Type int32_t ___m_Type_0; // UnityEngine.XR.AvailableTrackingData UnityEngine.XR.XRNodeState::m_AvailableFields int32_t ___m_AvailableFields_1; // UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Position Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Position_2; // UnityEngine.Quaternion UnityEngine.XR.XRNodeState::m_Rotation Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___m_Rotation_3; // UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Velocity Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Velocity_4; // UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_AngularVelocity Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AngularVelocity_5; // UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Acceleration Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Acceleration_6; // UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_AngularAcceleration Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AngularAcceleration_7; // System.Int32 UnityEngine.XR.XRNodeState::m_Tracked int32_t ___m_Tracked_8; // System.UInt64 UnityEngine.XR.XRNodeState::m_UniqueID uint64_t ___m_UniqueID_9; public: inline static int32_t get_offset_of_m_Type_0() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Type_0)); } inline int32_t get_m_Type_0() const { return ___m_Type_0; } inline int32_t* get_address_of_m_Type_0() { return &___m_Type_0; } inline void set_m_Type_0(int32_t value) { ___m_Type_0 = value; } inline static int32_t get_offset_of_m_AvailableFields_1() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_AvailableFields_1)); } inline int32_t get_m_AvailableFields_1() const { return ___m_AvailableFields_1; } inline int32_t* get_address_of_m_AvailableFields_1() { return &___m_AvailableFields_1; } inline void set_m_AvailableFields_1(int32_t value) { ___m_AvailableFields_1 = value; } inline static int32_t get_offset_of_m_Position_2() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Position_2)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Position_2() const { return ___m_Position_2; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Position_2() { return &___m_Position_2; } inline void set_m_Position_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Position_2 = value; } inline static int32_t get_offset_of_m_Rotation_3() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Rotation_3)); } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_m_Rotation_3() const { return ___m_Rotation_3; } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_m_Rotation_3() { return &___m_Rotation_3; } inline void set_m_Rotation_3(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value) { ___m_Rotation_3 = value; } inline static int32_t get_offset_of_m_Velocity_4() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Velocity_4)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Velocity_4() const { return ___m_Velocity_4; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Velocity_4() { return &___m_Velocity_4; } inline void set_m_Velocity_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Velocity_4 = value; } inline static int32_t get_offset_of_m_AngularVelocity_5() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_AngularVelocity_5)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AngularVelocity_5() const { return ___m_AngularVelocity_5; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AngularVelocity_5() { return &___m_AngularVelocity_5; } inline void set_m_AngularVelocity_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_AngularVelocity_5 = value; } inline static int32_t get_offset_of_m_Acceleration_6() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Acceleration_6)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Acceleration_6() const { return ___m_Acceleration_6; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Acceleration_6() { return &___m_Acceleration_6; } inline void set_m_Acceleration_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_Acceleration_6 = value; } inline static int32_t get_offset_of_m_AngularAcceleration_7() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_AngularAcceleration_7)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AngularAcceleration_7() const { return ___m_AngularAcceleration_7; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AngularAcceleration_7() { return &___m_AngularAcceleration_7; } inline void set_m_AngularAcceleration_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_AngularAcceleration_7 = value; } inline static int32_t get_offset_of_m_Tracked_8() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Tracked_8)); } inline int32_t get_m_Tracked_8() const { return ___m_Tracked_8; } inline int32_t* get_address_of_m_Tracked_8() { return &___m_Tracked_8; } inline void set_m_Tracked_8(int32_t value) { ___m_Tracked_8 = value; } inline static int32_t get_offset_of_m_UniqueID_9() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_UniqueID_9)); } inline uint64_t get_m_UniqueID_9() const { return ___m_UniqueID_9; } inline uint64_t* get_address_of_m_UniqueID_9() { return &___m_UniqueID_9; } inline void set_m_UniqueID_9(uint64_t value) { ___m_UniqueID_9 = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>> struct Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4, ___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_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4, ___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_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4, ___value_3)); } inline KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 get_value_3() const { return ___value_3; } inline KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___value_1), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int32Enum> struct Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8, ___dictionary_0)); } inline Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t15935BA59D5EDF22B5075E957C7C05DEE12E3B57 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8, ___current_3)); } inline KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>> struct Enumerator_t3A78959E94C978DB01DA9CB40B164F1F5D384598 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_tF6ACA785446F02853DE47796DE50BA62011B4BC3 * ___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 KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t3A78959E94C978DB01DA9CB40B164F1F5D384598, ___dictionary_0)); } inline Dictionary_2_tF6ACA785446F02853DE47796DE50BA62011B4BC3 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tF6ACA785446F02853DE47796DE50BA62011B4BC3 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tF6ACA785446F02853DE47796DE50BA62011B4BC3 * 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_t3A78959E94C978DB01DA9CB40B164F1F5D384598, ___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_t3A78959E94C978DB01DA9CB40B164F1F5D384598, ___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_t3A78959E94C978DB01DA9CB40B164F1F5D384598, ___currentValue_3)); } inline KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 get_currentValue_3() const { return ___currentValue_3; } inline KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___value_1), (void*)NULL); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>> struct KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25, ___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_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25, ___value_1)); } inline KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 get_value_1() const { return ___value_1; } inline KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___value_1), (void*)NULL); } }; // System.Nullable`1<UnityEngine.XR.WSA.Input.InteractionSource> struct Nullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE { public: // T System.Nullable`1::value InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___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_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE, ___value_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_value_0() const { return ___value_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_value_0() { return &___value_0; } inline void set_value_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE, ___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; } }; // Unity.Collections.NativeArray`1_Enumerator<System.Int32> struct Enumerator_t4302E76CC39AD357E3B45A5154FB9B8FD6A60B77 { public: // Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1_Enumerator::m_Array NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ___m_Array_0; // System.Int32 Unity.Collections.NativeArray`1_Enumerator::m_Index int32_t ___m_Index_1; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t4302E76CC39AD357E3B45A5154FB9B8FD6A60B77, ___m_Array_0)); } inline NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF get_m_Array_0() const { return ___m_Array_0; } inline NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF * get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF value) { ___m_Array_0 = value; } inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4302E76CC39AD357E3B45A5154FB9B8FD6A60B77, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } }; // Unity.Collections.NativeArray`1_Enumerator<UnityEngine.Plane> struct Enumerator_t2940B78ACDDF08E3D0DA814968616785F5F2A476 { public: // Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1_Enumerator::m_Array NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 ___m_Array_0; // System.Int32 Unity.Collections.NativeArray`1_Enumerator::m_Index int32_t ___m_Index_1; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t2940B78ACDDF08E3D0DA814968616785F5F2A476, ___m_Array_0)); } inline NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 get_m_Array_0() const { return ___m_Array_0; } inline NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 * get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 value) { ___m_Array_0 = value; } inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2940B78ACDDF08E3D0DA814968616785F5F2A476, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } }; // Unity.Collections.NativeArray`1_Enumerator<UnityEngine.Rendering.BatchVisibility> struct Enumerator_tBF1321662B82066F185005E1E61FA61D9631CDF4 { public: // Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1_Enumerator::m_Array NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 ___m_Array_0; // System.Int32 Unity.Collections.NativeArray`1_Enumerator::m_Index int32_t ___m_Index_1; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_tBF1321662B82066F185005E1E61FA61D9631CDF4, ___m_Array_0)); } inline NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 get_m_Array_0() const { return ___m_Array_0; } inline NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 * get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 value) { ___m_Array_0 = value; } inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_tBF1321662B82066F185005E1E61FA61D9631CDF4, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } }; // UnityEngine.Experimental.XR.PlaneAddedEventArgs struct PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002 { public: // UnityEngine.Experimental.XR.XRPlaneSubsystem UnityEngine.Experimental.XR.PlaneAddedEventArgs::<PlaneSubsystem>k__BackingField XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0; // UnityEngine.Experimental.XR.BoundedPlane UnityEngine.Experimental.XR.PlaneAddedEventArgs::<Plane>k__BackingField BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CPlaneSubsystemU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002, ___U3CPlaneSubsystemU3Ek__BackingField_0)); } inline XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * get_U3CPlaneSubsystemU3Ek__BackingField_0() const { return ___U3CPlaneSubsystemU3Ek__BackingField_0; } inline XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B ** get_address_of_U3CPlaneSubsystemU3Ek__BackingField_0() { return &___U3CPlaneSubsystemU3Ek__BackingField_0; } inline void set_U3CPlaneSubsystemU3Ek__BackingField_0(XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * value) { ___U3CPlaneSubsystemU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CPlaneSubsystemU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CPlaneU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002, ___U3CPlaneU3Ek__BackingField_1)); } inline BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 get_U3CPlaneU3Ek__BackingField_1() const { return ___U3CPlaneU3Ek__BackingField_1; } inline BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 * get_address_of_U3CPlaneU3Ek__BackingField_1() { return &___U3CPlaneU3Ek__BackingField_1; } inline void set_U3CPlaneU3Ek__BackingField_1(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 value) { ___U3CPlaneU3Ek__BackingField_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.PlaneAddedEventArgs struct PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002_marshaled_pinvoke { XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0; BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1; }; // Native definition for COM marshalling of UnityEngine.Experimental.XR.PlaneAddedEventArgs struct PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002_marshaled_com { XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0; BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1; }; // UnityEngine.Experimental.XR.PlaneRemovedEventArgs struct PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A { public: // UnityEngine.Experimental.XR.XRPlaneSubsystem UnityEngine.Experimental.XR.PlaneRemovedEventArgs::<PlaneSubsystem>k__BackingField XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0; // UnityEngine.Experimental.XR.BoundedPlane UnityEngine.Experimental.XR.PlaneRemovedEventArgs::<Plane>k__BackingField BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CPlaneSubsystemU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A, ___U3CPlaneSubsystemU3Ek__BackingField_0)); } inline XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * get_U3CPlaneSubsystemU3Ek__BackingField_0() const { return ___U3CPlaneSubsystemU3Ek__BackingField_0; } inline XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B ** get_address_of_U3CPlaneSubsystemU3Ek__BackingField_0() { return &___U3CPlaneSubsystemU3Ek__BackingField_0; } inline void set_U3CPlaneSubsystemU3Ek__BackingField_0(XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * value) { ___U3CPlaneSubsystemU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CPlaneSubsystemU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CPlaneU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A, ___U3CPlaneU3Ek__BackingField_1)); } inline BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 get_U3CPlaneU3Ek__BackingField_1() const { return ___U3CPlaneU3Ek__BackingField_1; } inline BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 * get_address_of_U3CPlaneU3Ek__BackingField_1() { return &___U3CPlaneU3Ek__BackingField_1; } inline void set_U3CPlaneU3Ek__BackingField_1(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 value) { ___U3CPlaneU3Ek__BackingField_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.PlaneRemovedEventArgs struct PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A_marshaled_pinvoke { XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0; BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1; }; // Native definition for COM marshalling of UnityEngine.Experimental.XR.PlaneRemovedEventArgs struct PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A_marshaled_com { XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0; BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1; }; // UnityEngine.Experimental.XR.PlaneUpdatedEventArgs struct PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133 { public: // UnityEngine.Experimental.XR.XRPlaneSubsystem UnityEngine.Experimental.XR.PlaneUpdatedEventArgs::<PlaneSubsystem>k__BackingField XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0; // UnityEngine.Experimental.XR.BoundedPlane UnityEngine.Experimental.XR.PlaneUpdatedEventArgs::<Plane>k__BackingField BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CPlaneSubsystemU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133, ___U3CPlaneSubsystemU3Ek__BackingField_0)); } inline XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * get_U3CPlaneSubsystemU3Ek__BackingField_0() const { return ___U3CPlaneSubsystemU3Ek__BackingField_0; } inline XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B ** get_address_of_U3CPlaneSubsystemU3Ek__BackingField_0() { return &___U3CPlaneSubsystemU3Ek__BackingField_0; } inline void set_U3CPlaneSubsystemU3Ek__BackingField_0(XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * value) { ___U3CPlaneSubsystemU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CPlaneSubsystemU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CPlaneU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133, ___U3CPlaneU3Ek__BackingField_1)); } inline BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 get_U3CPlaneU3Ek__BackingField_1() const { return ___U3CPlaneU3Ek__BackingField_1; } inline BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 * get_address_of_U3CPlaneU3Ek__BackingField_1() { return &___U3CPlaneU3Ek__BackingField_1; } inline void set_U3CPlaneU3Ek__BackingField_1(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 value) { ___U3CPlaneU3Ek__BackingField_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.PlaneUpdatedEventArgs struct PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133_marshaled_pinvoke { XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0; BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1; }; // Native definition for COM marshalling of UnityEngine.Experimental.XR.PlaneUpdatedEventArgs struct PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133_marshaled_com { XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0; BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1; }; // UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs struct ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA { public: // UnityEngine.Experimental.XR.ReferencePoint UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs::<ReferencePoint>k__BackingField ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E ___U3CReferencePointU3Ek__BackingField_0; // UnityEngine.Experimental.XR.TrackingState UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs::<PreviousTrackingState>k__BackingField int32_t ___U3CPreviousTrackingStateU3Ek__BackingField_1; // UnityEngine.Pose UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs::<PreviousPose>k__BackingField Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___U3CPreviousPoseU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CReferencePointU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA, ___U3CReferencePointU3Ek__BackingField_0)); } inline ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E get_U3CReferencePointU3Ek__BackingField_0() const { return ___U3CReferencePointU3Ek__BackingField_0; } inline ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E * get_address_of_U3CReferencePointU3Ek__BackingField_0() { return &___U3CReferencePointU3Ek__BackingField_0; } inline void set_U3CReferencePointU3Ek__BackingField_0(ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E value) { ___U3CReferencePointU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CPreviousTrackingStateU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA, ___U3CPreviousTrackingStateU3Ek__BackingField_1)); } inline int32_t get_U3CPreviousTrackingStateU3Ek__BackingField_1() const { return ___U3CPreviousTrackingStateU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CPreviousTrackingStateU3Ek__BackingField_1() { return &___U3CPreviousTrackingStateU3Ek__BackingField_1; } inline void set_U3CPreviousTrackingStateU3Ek__BackingField_1(int32_t value) { ___U3CPreviousTrackingStateU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CPreviousPoseU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA, ___U3CPreviousPoseU3Ek__BackingField_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_U3CPreviousPoseU3Ek__BackingField_2() const { return ___U3CPreviousPoseU3Ek__BackingField_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_U3CPreviousPoseU3Ek__BackingField_2() { return &___U3CPreviousPoseU3Ek__BackingField_2; } inline void set_U3CPreviousPoseU3Ek__BackingField_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___U3CPreviousPoseU3Ek__BackingField_2 = value; } }; // UnityEngine.Playables.FrameData struct FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E { public: // System.UInt64 UnityEngine.Playables.FrameData::m_FrameID uint64_t ___m_FrameID_0; // System.Double UnityEngine.Playables.FrameData::m_DeltaTime double ___m_DeltaTime_1; // System.Single UnityEngine.Playables.FrameData::m_Weight float ___m_Weight_2; // System.Single UnityEngine.Playables.FrameData::m_EffectiveWeight float ___m_EffectiveWeight_3; // System.Double UnityEngine.Playables.FrameData::m_EffectiveParentDelay double ___m_EffectiveParentDelay_4; // System.Single UnityEngine.Playables.FrameData::m_EffectiveParentSpeed float ___m_EffectiveParentSpeed_5; // System.Single UnityEngine.Playables.FrameData::m_EffectiveSpeed float ___m_EffectiveSpeed_6; // UnityEngine.Playables.FrameData_Flags UnityEngine.Playables.FrameData::m_Flags int32_t ___m_Flags_7; // UnityEngine.Playables.PlayableOutput UnityEngine.Playables.FrameData::m_Output PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 ___m_Output_8; public: inline static int32_t get_offset_of_m_FrameID_0() { return static_cast<int32_t>(offsetof(FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E, ___m_FrameID_0)); } inline uint64_t get_m_FrameID_0() const { return ___m_FrameID_0; } inline uint64_t* get_address_of_m_FrameID_0() { return &___m_FrameID_0; } inline void set_m_FrameID_0(uint64_t value) { ___m_FrameID_0 = value; } inline static int32_t get_offset_of_m_DeltaTime_1() { return static_cast<int32_t>(offsetof(FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E, ___m_DeltaTime_1)); } inline double get_m_DeltaTime_1() const { return ___m_DeltaTime_1; } inline double* get_address_of_m_DeltaTime_1() { return &___m_DeltaTime_1; } inline void set_m_DeltaTime_1(double value) { ___m_DeltaTime_1 = value; } inline static int32_t get_offset_of_m_Weight_2() { return static_cast<int32_t>(offsetof(FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E, ___m_Weight_2)); } inline float get_m_Weight_2() const { return ___m_Weight_2; } inline float* get_address_of_m_Weight_2() { return &___m_Weight_2; } inline void set_m_Weight_2(float value) { ___m_Weight_2 = value; } inline static int32_t get_offset_of_m_EffectiveWeight_3() { return static_cast<int32_t>(offsetof(FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E, ___m_EffectiveWeight_3)); } inline float get_m_EffectiveWeight_3() const { return ___m_EffectiveWeight_3; } inline float* get_address_of_m_EffectiveWeight_3() { return &___m_EffectiveWeight_3; } inline void set_m_EffectiveWeight_3(float value) { ___m_EffectiveWeight_3 = value; } inline static int32_t get_offset_of_m_EffectiveParentDelay_4() { return static_cast<int32_t>(offsetof(FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E, ___m_EffectiveParentDelay_4)); } inline double get_m_EffectiveParentDelay_4() const { return ___m_EffectiveParentDelay_4; } inline double* get_address_of_m_EffectiveParentDelay_4() { return &___m_EffectiveParentDelay_4; } inline void set_m_EffectiveParentDelay_4(double value) { ___m_EffectiveParentDelay_4 = value; } inline static int32_t get_offset_of_m_EffectiveParentSpeed_5() { return static_cast<int32_t>(offsetof(FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E, ___m_EffectiveParentSpeed_5)); } inline float get_m_EffectiveParentSpeed_5() const { return ___m_EffectiveParentSpeed_5; } inline float* get_address_of_m_EffectiveParentSpeed_5() { return &___m_EffectiveParentSpeed_5; } inline void set_m_EffectiveParentSpeed_5(float value) { ___m_EffectiveParentSpeed_5 = value; } inline static int32_t get_offset_of_m_EffectiveSpeed_6() { return static_cast<int32_t>(offsetof(FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E, ___m_EffectiveSpeed_6)); } inline float get_m_EffectiveSpeed_6() const { return ___m_EffectiveSpeed_6; } inline float* get_address_of_m_EffectiveSpeed_6() { return &___m_EffectiveSpeed_6; } inline void set_m_EffectiveSpeed_6(float value) { ___m_EffectiveSpeed_6 = value; } inline static int32_t get_offset_of_m_Flags_7() { return static_cast<int32_t>(offsetof(FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E, ___m_Flags_7)); } inline int32_t get_m_Flags_7() const { return ___m_Flags_7; } inline int32_t* get_address_of_m_Flags_7() { return &___m_Flags_7; } inline void set_m_Flags_7(int32_t value) { ___m_Flags_7 = value; } inline static int32_t get_offset_of_m_Output_8() { return static_cast<int32_t>(offsetof(FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E, ___m_Output_8)); } inline PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 get_m_Output_8() const { return ___m_Output_8; } inline PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 * get_address_of_m_Output_8() { return &___m_Output_8; } inline void set_m_Output_8(PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 value) { ___m_Output_8 = value; } }; // UnityEngine.PostProcessing.AntialiasingModel_Settings struct Settings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF { public: // UnityEngine.PostProcessing.AntialiasingModel_Method UnityEngine.PostProcessing.AntialiasingModel_Settings::method int32_t ___method_0; // UnityEngine.PostProcessing.AntialiasingModel_FxaaSettings UnityEngine.PostProcessing.AntialiasingModel_Settings::fxaaSettings FxaaSettings_t49E6F1CF29002CE1ED38E0C6241ACF3EAD5EE52E ___fxaaSettings_1; // UnityEngine.PostProcessing.AntialiasingModel_TaaSettings UnityEngine.PostProcessing.AntialiasingModel_Settings::taaSettings TaaSettings_tCFEF81D638B351BFF56346922415F70DE5BD1926 ___taaSettings_2; public: inline static int32_t get_offset_of_method_0() { return static_cast<int32_t>(offsetof(Settings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF, ___method_0)); } inline int32_t get_method_0() const { return ___method_0; } inline int32_t* get_address_of_method_0() { return &___method_0; } inline void set_method_0(int32_t value) { ___method_0 = value; } inline static int32_t get_offset_of_fxaaSettings_1() { return static_cast<int32_t>(offsetof(Settings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF, ___fxaaSettings_1)); } inline FxaaSettings_t49E6F1CF29002CE1ED38E0C6241ACF3EAD5EE52E get_fxaaSettings_1() const { return ___fxaaSettings_1; } inline FxaaSettings_t49E6F1CF29002CE1ED38E0C6241ACF3EAD5EE52E * get_address_of_fxaaSettings_1() { return &___fxaaSettings_1; } inline void set_fxaaSettings_1(FxaaSettings_t49E6F1CF29002CE1ED38E0C6241ACF3EAD5EE52E value) { ___fxaaSettings_1 = value; } inline static int32_t get_offset_of_taaSettings_2() { return static_cast<int32_t>(offsetof(Settings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF, ___taaSettings_2)); } inline TaaSettings_tCFEF81D638B351BFF56346922415F70DE5BD1926 get_taaSettings_2() const { return ___taaSettings_2; } inline TaaSettings_tCFEF81D638B351BFF56346922415F70DE5BD1926 * get_address_of_taaSettings_2() { return &___taaSettings_2; } inline void set_taaSettings_2(TaaSettings_tCFEF81D638B351BFF56346922415F70DE5BD1926 value) { ___taaSettings_2 = value; } }; // UnityEngine.PostProcessing.ColorGradingModel_Settings struct Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A { public: // UnityEngine.PostProcessing.ColorGradingModel_TonemappingSettings UnityEngine.PostProcessing.ColorGradingModel_Settings::tonemapping TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC ___tonemapping_0; // UnityEngine.PostProcessing.ColorGradingModel_BasicSettings UnityEngine.PostProcessing.ColorGradingModel_Settings::basic BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49 ___basic_1; // UnityEngine.PostProcessing.ColorGradingModel_ChannelMixerSettings UnityEngine.PostProcessing.ColorGradingModel_Settings::channelMixer ChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B ___channelMixer_2; // UnityEngine.PostProcessing.ColorGradingModel_ColorWheelsSettings UnityEngine.PostProcessing.ColorGradingModel_Settings::colorWheels ColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8 ___colorWheels_3; // UnityEngine.PostProcessing.ColorGradingModel_CurvesSettings UnityEngine.PostProcessing.ColorGradingModel_Settings::curves CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E ___curves_4; public: inline static int32_t get_offset_of_tonemapping_0() { return static_cast<int32_t>(offsetof(Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A, ___tonemapping_0)); } inline TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC get_tonemapping_0() const { return ___tonemapping_0; } inline TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC * get_address_of_tonemapping_0() { return &___tonemapping_0; } inline void set_tonemapping_0(TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC value) { ___tonemapping_0 = value; } inline static int32_t get_offset_of_basic_1() { return static_cast<int32_t>(offsetof(Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A, ___basic_1)); } inline BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49 get_basic_1() const { return ___basic_1; } inline BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49 * get_address_of_basic_1() { return &___basic_1; } inline void set_basic_1(BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49 value) { ___basic_1 = value; } inline static int32_t get_offset_of_channelMixer_2() { return static_cast<int32_t>(offsetof(Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A, ___channelMixer_2)); } inline ChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B get_channelMixer_2() const { return ___channelMixer_2; } inline ChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B * get_address_of_channelMixer_2() { return &___channelMixer_2; } inline void set_channelMixer_2(ChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B value) { ___channelMixer_2 = value; } inline static int32_t get_offset_of_colorWheels_3() { return static_cast<int32_t>(offsetof(Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A, ___colorWheels_3)); } inline ColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8 get_colorWheels_3() const { return ___colorWheels_3; } inline ColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8 * get_address_of_colorWheels_3() { return &___colorWheels_3; } inline void set_colorWheels_3(ColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8 value) { ___colorWheels_3 = value; } inline static int32_t get_offset_of_curves_4() { return static_cast<int32_t>(offsetof(Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A, ___curves_4)); } inline CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E get_curves_4() const { return ___curves_4; } inline CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E * get_address_of_curves_4() { return &___curves_4; } inline void set_curves_4(CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E value) { ___curves_4 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___curves_4))->___master_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___curves_4))->___red_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___curves_4))->___green_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___curves_4))->___blue_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___curves_4))->___hueVShue_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___curves_4))->___hueVSsat_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___curves_4))->___satVSsat_6), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___curves_4))->___lumVSsat_7), (void*)NULL); #endif } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.ColorGradingModel/Settings struct Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A_marshaled_pinvoke { TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC ___tonemapping_0; BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49 ___basic_1; ChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B ___channelMixer_2; ColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8 ___colorWheels_3; CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E_marshaled_pinvoke ___curves_4; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.ColorGradingModel/Settings struct Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A_marshaled_com { TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC ___tonemapping_0; BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49 ___basic_1; ChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B ___channelMixer_2; ColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8 ___colorWheels_3; CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E_marshaled_com ___curves_4; }; // UnityEngine.PostProcessing.ScreenSpaceReflectionModel_Settings struct Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4 { public: // UnityEngine.PostProcessing.ScreenSpaceReflectionModel_ReflectionSettings UnityEngine.PostProcessing.ScreenSpaceReflectionModel_Settings::reflection ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C ___reflection_0; // UnityEngine.PostProcessing.ScreenSpaceReflectionModel_IntensitySettings UnityEngine.PostProcessing.ScreenSpaceReflectionModel_Settings::intensity IntensitySettings_tBF0EB1716740BB43A3A2E99806F9BC18D65DB087 ___intensity_1; // UnityEngine.PostProcessing.ScreenSpaceReflectionModel_ScreenEdgeMask UnityEngine.PostProcessing.ScreenSpaceReflectionModel_Settings::screenEdgeMask ScreenEdgeMask_t94FB1CC384B7C414838A714400DF33EE0F26C468 ___screenEdgeMask_2; public: inline static int32_t get_offset_of_reflection_0() { return static_cast<int32_t>(offsetof(Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4, ___reflection_0)); } inline ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C get_reflection_0() const { return ___reflection_0; } inline ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C * get_address_of_reflection_0() { return &___reflection_0; } inline void set_reflection_0(ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C value) { ___reflection_0 = value; } inline static int32_t get_offset_of_intensity_1() { return static_cast<int32_t>(offsetof(Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4, ___intensity_1)); } inline IntensitySettings_tBF0EB1716740BB43A3A2E99806F9BC18D65DB087 get_intensity_1() const { return ___intensity_1; } inline IntensitySettings_tBF0EB1716740BB43A3A2E99806F9BC18D65DB087 * get_address_of_intensity_1() { return &___intensity_1; } inline void set_intensity_1(IntensitySettings_tBF0EB1716740BB43A3A2E99806F9BC18D65DB087 value) { ___intensity_1 = value; } inline static int32_t get_offset_of_screenEdgeMask_2() { return static_cast<int32_t>(offsetof(Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4, ___screenEdgeMask_2)); } inline ScreenEdgeMask_t94FB1CC384B7C414838A714400DF33EE0F26C468 get_screenEdgeMask_2() const { return ___screenEdgeMask_2; } inline ScreenEdgeMask_t94FB1CC384B7C414838A714400DF33EE0F26C468 * get_address_of_screenEdgeMask_2() { return &___screenEdgeMask_2; } inline void set_screenEdgeMask_2(ScreenEdgeMask_t94FB1CC384B7C414838A714400DF33EE0F26C468 value) { ___screenEdgeMask_2 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.PostProcessing.ScreenSpaceReflectionModel/Settings struct Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4_marshaled_pinvoke { ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C_marshaled_pinvoke ___reflection_0; IntensitySettings_tBF0EB1716740BB43A3A2E99806F9BC18D65DB087 ___intensity_1; ScreenEdgeMask_t94FB1CC384B7C414838A714400DF33EE0F26C468 ___screenEdgeMask_2; }; // Native definition for COM marshalling of UnityEngine.PostProcessing.ScreenSpaceReflectionModel/Settings struct Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4_marshaled_com { ReflectionSettings_t0E6A92FF17732807EDA06E014001FF6F5A65DC4C_marshaled_com ___reflection_0; IntensitySettings_tBF0EB1716740BB43A3A2E99806F9BC18D65DB087 ___intensity_1; ScreenEdgeMask_t94FB1CC384B7C414838A714400DF33EE0F26C468 ___screenEdgeMask_2; }; // UnityEngine.Rendering.BatchCullingContext struct BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F { public: // Unity.Collections.NativeArray`1<UnityEngine.Plane> UnityEngine.Rendering.BatchCullingContext::cullingPlanes NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 ___cullingPlanes_0; // Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility> UnityEngine.Rendering.BatchCullingContext::batchVisibility NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 ___batchVisibility_1; // Unity.Collections.NativeArray`1<System.Int32> UnityEngine.Rendering.BatchCullingContext::visibleIndices NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ___visibleIndices_2; // UnityEngine.Rendering.LODParameters UnityEngine.Rendering.BatchCullingContext::lodParameters LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960 ___lodParameters_3; public: inline static int32_t get_offset_of_cullingPlanes_0() { return static_cast<int32_t>(offsetof(BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F, ___cullingPlanes_0)); } inline NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 get_cullingPlanes_0() const { return ___cullingPlanes_0; } inline NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 * get_address_of_cullingPlanes_0() { return &___cullingPlanes_0; } inline void set_cullingPlanes_0(NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 value) { ___cullingPlanes_0 = value; } inline static int32_t get_offset_of_batchVisibility_1() { return static_cast<int32_t>(offsetof(BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F, ___batchVisibility_1)); } inline NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 get_batchVisibility_1() const { return ___batchVisibility_1; } inline NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 * get_address_of_batchVisibility_1() { return &___batchVisibility_1; } inline void set_batchVisibility_1(NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 value) { ___batchVisibility_1 = value; } inline static int32_t get_offset_of_visibleIndices_2() { return static_cast<int32_t>(offsetof(BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F, ___visibleIndices_2)); } inline NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF get_visibleIndices_2() const { return ___visibleIndices_2; } inline NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF * get_address_of_visibleIndices_2() { return &___visibleIndices_2; } inline void set_visibleIndices_2(NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF value) { ___visibleIndices_2 = value; } inline static int32_t get_offset_of_lodParameters_3() { return static_cast<int32_t>(offsetof(BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F, ___lodParameters_3)); } inline LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960 get_lodParameters_3() const { return ___lodParameters_3; } inline LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960 * get_address_of_lodParameters_3() { return &___lodParameters_3; } inline void set_lodParameters_3(LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960 value) { ___lodParameters_3 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Rendering.BatchCullingContext struct BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F_marshaled_pinvoke { NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 ___cullingPlanes_0; NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 ___batchVisibility_1; NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ___visibleIndices_2; LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960 ___lodParameters_3; }; // Native definition for COM marshalling of UnityEngine.Rendering.BatchCullingContext struct BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F_marshaled_com { NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 ___cullingPlanes_0; NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 ___batchVisibility_1; NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ___visibleIndices_2; LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960 ___lodParameters_3; }; // UnityEngine.XR.WSA.Input.HoldCanceledEventArgs struct HoldCanceledEventArgs_t1149229A845756F9A586E3DD91C3EFEEA1029244 { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.HoldCanceledEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.HoldCanceledEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.HoldCanceledEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(HoldCanceledEventArgs_t1149229A845756F9A586E3DD91C3EFEEA1029244, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(HoldCanceledEventArgs_t1149229A845756F9A586E3DD91C3EFEEA1029244, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(HoldCanceledEventArgs_t1149229A845756F9A586E3DD91C3EFEEA1029244, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } }; // UnityEngine.XR.WSA.Input.HoldCompletedEventArgs struct HoldCompletedEventArgs_t13AD11A9EDEE4F627639E98E09910A72E82242B3 { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.HoldCompletedEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.HoldCompletedEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.HoldCompletedEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(HoldCompletedEventArgs_t13AD11A9EDEE4F627639E98E09910A72E82242B3, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(HoldCompletedEventArgs_t13AD11A9EDEE4F627639E98E09910A72E82242B3, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(HoldCompletedEventArgs_t13AD11A9EDEE4F627639E98E09910A72E82242B3, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } }; // UnityEngine.XR.WSA.Input.HoldStartedEventArgs struct HoldStartedEventArgs_tF309FAD5ADD192662D046995D7A71B5F92CFA874 { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.HoldStartedEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.HoldStartedEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.HoldStartedEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(HoldStartedEventArgs_tF309FAD5ADD192662D046995D7A71B5F92CFA874, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(HoldStartedEventArgs_tF309FAD5ADD192662D046995D7A71B5F92CFA874, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(HoldStartedEventArgs_tF309FAD5ADD192662D046995D7A71B5F92CFA874, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } }; // UnityEngine.XR.WSA.Input.InteractionSourceProperties struct InteractionSourceProperties_t4F09AE5472B080CF0CA6D8DB68B8D48E90FA455A { public: // System.Double UnityEngine.XR.WSA.Input.InteractionSourceProperties::m_SourceLossRisk double ___m_SourceLossRisk_0; // UnityEngine.Vector3 UnityEngine.XR.WSA.Input.InteractionSourceProperties::m_SourceLossMitigationDirection Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_SourceLossMitigationDirection_1; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.InteractionSourceProperties::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_2; public: inline static int32_t get_offset_of_m_SourceLossRisk_0() { return static_cast<int32_t>(offsetof(InteractionSourceProperties_t4F09AE5472B080CF0CA6D8DB68B8D48E90FA455A, ___m_SourceLossRisk_0)); } inline double get_m_SourceLossRisk_0() const { return ___m_SourceLossRisk_0; } inline double* get_address_of_m_SourceLossRisk_0() { return &___m_SourceLossRisk_0; } inline void set_m_SourceLossRisk_0(double value) { ___m_SourceLossRisk_0 = value; } inline static int32_t get_offset_of_m_SourceLossMitigationDirection_1() { return static_cast<int32_t>(offsetof(InteractionSourceProperties_t4F09AE5472B080CF0CA6D8DB68B8D48E90FA455A, ___m_SourceLossMitigationDirection_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_SourceLossMitigationDirection_1() const { return ___m_SourceLossMitigationDirection_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_SourceLossMitigationDirection_1() { return &___m_SourceLossMitigationDirection_1; } inline void set_m_SourceLossMitigationDirection_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_SourceLossMitigationDirection_1 = value; } inline static int32_t get_offset_of_m_SourcePose_2() { return static_cast<int32_t>(offsetof(InteractionSourceProperties_t4F09AE5472B080CF0CA6D8DB68B8D48E90FA455A, ___m_SourcePose_2)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_2() const { return ___m_SourcePose_2; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_2() { return &___m_SourcePose_2; } inline void set_m_SourcePose_2(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_2 = value; } }; // UnityEngine.XR.WSA.Input.ManipulationCanceledEventArgs struct ManipulationCanceledEventArgs_t6CD33D88A2B9B5FF30BAE21E2FE253EF9FA98417 { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.ManipulationCanceledEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.ManipulationCanceledEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.ManipulationCanceledEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(ManipulationCanceledEventArgs_t6CD33D88A2B9B5FF30BAE21E2FE253EF9FA98417, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(ManipulationCanceledEventArgs_t6CD33D88A2B9B5FF30BAE21E2FE253EF9FA98417, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(ManipulationCanceledEventArgs_t6CD33D88A2B9B5FF30BAE21E2FE253EF9FA98417, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } }; // UnityEngine.XR.WSA.Input.ManipulationCompletedEventArgs struct ManipulationCompletedEventArgs_t68FA66838267BEDC02E178D76EFC5E03D1958BA0 { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.ManipulationCompletedEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.ManipulationCompletedEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.ManipulationCompletedEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; // UnityEngine.Vector3 UnityEngine.XR.WSA.Input.ManipulationCompletedEventArgs::m_CumulativeDelta Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_CumulativeDelta_3; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(ManipulationCompletedEventArgs_t68FA66838267BEDC02E178D76EFC5E03D1958BA0, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(ManipulationCompletedEventArgs_t68FA66838267BEDC02E178D76EFC5E03D1958BA0, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(ManipulationCompletedEventArgs_t68FA66838267BEDC02E178D76EFC5E03D1958BA0, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } inline static int32_t get_offset_of_m_CumulativeDelta_3() { return static_cast<int32_t>(offsetof(ManipulationCompletedEventArgs_t68FA66838267BEDC02E178D76EFC5E03D1958BA0, ___m_CumulativeDelta_3)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_CumulativeDelta_3() const { return ___m_CumulativeDelta_3; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_CumulativeDelta_3() { return &___m_CumulativeDelta_3; } inline void set_m_CumulativeDelta_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_CumulativeDelta_3 = value; } }; // UnityEngine.XR.WSA.Input.ManipulationStartedEventArgs struct ManipulationStartedEventArgs_t15AFA1D2E17F9D5E2DFA7B7384FA5A79481AEAB2 { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.ManipulationStartedEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.ManipulationStartedEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.ManipulationStartedEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(ManipulationStartedEventArgs_t15AFA1D2E17F9D5E2DFA7B7384FA5A79481AEAB2, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(ManipulationStartedEventArgs_t15AFA1D2E17F9D5E2DFA7B7384FA5A79481AEAB2, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(ManipulationStartedEventArgs_t15AFA1D2E17F9D5E2DFA7B7384FA5A79481AEAB2, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } }; // UnityEngine.XR.WSA.Input.ManipulationUpdatedEventArgs struct ManipulationUpdatedEventArgs_t6B06C74A87C5FC65D6B45AAE8DC1BB59C147089E { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.ManipulationUpdatedEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.ManipulationUpdatedEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.ManipulationUpdatedEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; // UnityEngine.Vector3 UnityEngine.XR.WSA.Input.ManipulationUpdatedEventArgs::m_CumulativeDelta Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_CumulativeDelta_3; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(ManipulationUpdatedEventArgs_t6B06C74A87C5FC65D6B45AAE8DC1BB59C147089E, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(ManipulationUpdatedEventArgs_t6B06C74A87C5FC65D6B45AAE8DC1BB59C147089E, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(ManipulationUpdatedEventArgs_t6B06C74A87C5FC65D6B45AAE8DC1BB59C147089E, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } inline static int32_t get_offset_of_m_CumulativeDelta_3() { return static_cast<int32_t>(offsetof(ManipulationUpdatedEventArgs_t6B06C74A87C5FC65D6B45AAE8DC1BB59C147089E, ___m_CumulativeDelta_3)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_CumulativeDelta_3() const { return ___m_CumulativeDelta_3; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_CumulativeDelta_3() { return &___m_CumulativeDelta_3; } inline void set_m_CumulativeDelta_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_CumulativeDelta_3 = value; } }; // UnityEngine.XR.WSA.Input.NavigationCanceledEventArgs struct NavigationCanceledEventArgs_tC2B533AD31373B31AF9FDC354D3A07C749FC9760 { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.NavigationCanceledEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.NavigationCanceledEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.NavigationCanceledEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(NavigationCanceledEventArgs_tC2B533AD31373B31AF9FDC354D3A07C749FC9760, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(NavigationCanceledEventArgs_tC2B533AD31373B31AF9FDC354D3A07C749FC9760, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(NavigationCanceledEventArgs_tC2B533AD31373B31AF9FDC354D3A07C749FC9760, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } }; // UnityEngine.XR.WSA.Input.NavigationCompletedEventArgs struct NavigationCompletedEventArgs_tA0A6DD23233401CBAE4848F6B6D0BA03DE647E39 { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.NavigationCompletedEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.NavigationCompletedEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.NavigationCompletedEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; // UnityEngine.Vector3 UnityEngine.XR.WSA.Input.NavigationCompletedEventArgs::m_NormalizedOffset Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_NormalizedOffset_3; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(NavigationCompletedEventArgs_tA0A6DD23233401CBAE4848F6B6D0BA03DE647E39, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(NavigationCompletedEventArgs_tA0A6DD23233401CBAE4848F6B6D0BA03DE647E39, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(NavigationCompletedEventArgs_tA0A6DD23233401CBAE4848F6B6D0BA03DE647E39, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } inline static int32_t get_offset_of_m_NormalizedOffset_3() { return static_cast<int32_t>(offsetof(NavigationCompletedEventArgs_tA0A6DD23233401CBAE4848F6B6D0BA03DE647E39, ___m_NormalizedOffset_3)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_NormalizedOffset_3() const { return ___m_NormalizedOffset_3; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_NormalizedOffset_3() { return &___m_NormalizedOffset_3; } inline void set_m_NormalizedOffset_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_NormalizedOffset_3 = value; } }; // UnityEngine.XR.WSA.Input.NavigationStartedEventArgs struct NavigationStartedEventArgs_t834E02E24343414BB48A9099C7CF0C331C859339 { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.NavigationStartedEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.NavigationStartedEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.NavigationStartedEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(NavigationStartedEventArgs_t834E02E24343414BB48A9099C7CF0C331C859339, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(NavigationStartedEventArgs_t834E02E24343414BB48A9099C7CF0C331C859339, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(NavigationStartedEventArgs_t834E02E24343414BB48A9099C7CF0C331C859339, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } }; // UnityEngine.XR.WSA.Input.NavigationUpdatedEventArgs struct NavigationUpdatedEventArgs_tC41595BC70171E7D2E16538C62923395B285F3BA { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.NavigationUpdatedEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.NavigationUpdatedEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.NavigationUpdatedEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; // UnityEngine.Vector3 UnityEngine.XR.WSA.Input.NavigationUpdatedEventArgs::m_NormalizedOffset Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_NormalizedOffset_3; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(NavigationUpdatedEventArgs_tC41595BC70171E7D2E16538C62923395B285F3BA, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(NavigationUpdatedEventArgs_tC41595BC70171E7D2E16538C62923395B285F3BA, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(NavigationUpdatedEventArgs_tC41595BC70171E7D2E16538C62923395B285F3BA, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } inline static int32_t get_offset_of_m_NormalizedOffset_3() { return static_cast<int32_t>(offsetof(NavigationUpdatedEventArgs_tC41595BC70171E7D2E16538C62923395B285F3BA, ___m_NormalizedOffset_3)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_NormalizedOffset_3() const { return ___m_NormalizedOffset_3; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_NormalizedOffset_3() { return &___m_NormalizedOffset_3; } inline void set_m_NormalizedOffset_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___m_NormalizedOffset_3 = value; } }; // UnityEngine.XR.WSA.Input.RecognitionEndedEventArgs struct RecognitionEndedEventArgs_t41420CD5725610A560C4316BD5DBE7F96504B8BB { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.RecognitionEndedEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.RecognitionEndedEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.RecognitionEndedEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(RecognitionEndedEventArgs_t41420CD5725610A560C4316BD5DBE7F96504B8BB, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(RecognitionEndedEventArgs_t41420CD5725610A560C4316BD5DBE7F96504B8BB, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(RecognitionEndedEventArgs_t41420CD5725610A560C4316BD5DBE7F96504B8BB, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } }; // UnityEngine.XR.WSA.Input.RecognitionStartedEventArgs struct RecognitionStartedEventArgs_t10FC01D91F3A18B7B03065C6C857473DCFD17E65 { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.RecognitionStartedEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.RecognitionStartedEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.RecognitionStartedEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(RecognitionStartedEventArgs_t10FC01D91F3A18B7B03065C6C857473DCFD17E65, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(RecognitionStartedEventArgs_t10FC01D91F3A18B7B03065C6C857473DCFD17E65, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(RecognitionStartedEventArgs_t10FC01D91F3A18B7B03065C6C857473DCFD17E65, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } }; // UnityEngine.XR.WSA.Input.TappedEventArgs struct TappedEventArgs_t1E2125DB3E5E3F28EF3018C15F6A7786EDE8E9D6 { public: // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.TappedEventArgs::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_0; // UnityEngine.XR.WSA.Input.InteractionSourcePose UnityEngine.XR.WSA.Input.TappedEventArgs::m_SourcePose InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 ___m_SourcePose_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.TappedEventArgs::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; // System.Int32 UnityEngine.XR.WSA.Input.TappedEventArgs::m_TapCount int32_t ___m_TapCount_3; public: inline static int32_t get_offset_of_m_Source_0() { return static_cast<int32_t>(offsetof(TappedEventArgs_t1E2125DB3E5E3F28EF3018C15F6A7786EDE8E9D6, ___m_Source_0)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_0() const { return ___m_Source_0; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_0() { return &___m_Source_0; } inline void set_m_Source_0(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_0 = value; } inline static int32_t get_offset_of_m_SourcePose_1() { return static_cast<int32_t>(offsetof(TappedEventArgs_t1E2125DB3E5E3F28EF3018C15F6A7786EDE8E9D6, ___m_SourcePose_1)); } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 get_m_SourcePose_1() const { return ___m_SourcePose_1; } inline InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 * get_address_of_m_SourcePose_1() { return &___m_SourcePose_1; } inline void set_m_SourcePose_1(InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 value) { ___m_SourcePose_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(TappedEventArgs_t1E2125DB3E5E3F28EF3018C15F6A7786EDE8E9D6, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } inline static int32_t get_offset_of_m_TapCount_3() { return static_cast<int32_t>(offsetof(TappedEventArgs_t1E2125DB3E5E3F28EF3018C15F6A7786EDE8E9D6, ___m_TapCount_3)); } inline int32_t get_m_TapCount_3() const { return ___m_TapCount_3; } inline int32_t* get_address_of_m_TapCount_3() { return &___m_TapCount_3; } inline void set_m_TapCount_3(int32_t value) { ___m_TapCount_3 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>> struct Enumerator_t9EF96D5164C5B8570733F9256F4879399EBCD07A { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_tF6ACA785446F02853DE47796DE50BA62011B4BC3 * ___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_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 ___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_t9EF96D5164C5B8570733F9256F4879399EBCD07A, ___dictionary_0)); } inline Dictionary_2_tF6ACA785446F02853DE47796DE50BA62011B4BC3 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tF6ACA785446F02853DE47796DE50BA62011B4BC3 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tF6ACA785446F02853DE47796DE50BA62011B4BC3 * 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_t9EF96D5164C5B8570733F9256F4879399EBCD07A, ___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_t9EF96D5164C5B8570733F9256F4879399EBCD07A, ___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_t9EF96D5164C5B8570733F9256F4879399EBCD07A, ___current_3)); } inline KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t9EF96D5164C5B8570733F9256F4879399EBCD07A, ___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; } }; // UnityEngine.XR.WSA.Input.InteractionSourceState struct InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 { public: // UnityEngine.XR.WSA.Input.InteractionSourceProperties UnityEngine.XR.WSA.Input.InteractionSourceState::m_Properties InteractionSourceProperties_t4F09AE5472B080CF0CA6D8DB68B8D48E90FA455A ___m_Properties_0; // UnityEngine.XR.WSA.Input.InteractionSource UnityEngine.XR.WSA.Input.InteractionSourceState::m_Source InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ___m_Source_1; // UnityEngine.Pose UnityEngine.XR.WSA.Input.InteractionSourceState::m_HeadPose Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_HeadPose_2; // UnityEngine.Vector2 UnityEngine.XR.WSA.Input.InteractionSourceState::m_ThumbstickPosition Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_ThumbstickPosition_3; // UnityEngine.Vector2 UnityEngine.XR.WSA.Input.InteractionSourceState::m_TouchpadPosition Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_TouchpadPosition_4; // System.Single UnityEngine.XR.WSA.Input.InteractionSourceState::m_SelectPressedAmount float ___m_SelectPressedAmount_5; // UnityEngine.XR.WSA.Input.InteractionSourceStateFlags UnityEngine.XR.WSA.Input.InteractionSourceState::m_Flags int32_t ___m_Flags_6; public: inline static int32_t get_offset_of_m_Properties_0() { return static_cast<int32_t>(offsetof(InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250, ___m_Properties_0)); } inline InteractionSourceProperties_t4F09AE5472B080CF0CA6D8DB68B8D48E90FA455A get_m_Properties_0() const { return ___m_Properties_0; } inline InteractionSourceProperties_t4F09AE5472B080CF0CA6D8DB68B8D48E90FA455A * get_address_of_m_Properties_0() { return &___m_Properties_0; } inline void set_m_Properties_0(InteractionSourceProperties_t4F09AE5472B080CF0CA6D8DB68B8D48E90FA455A value) { ___m_Properties_0 = value; } inline static int32_t get_offset_of_m_Source_1() { return static_cast<int32_t>(offsetof(InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250, ___m_Source_1)); } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 get_m_Source_1() const { return ___m_Source_1; } inline InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 * get_address_of_m_Source_1() { return &___m_Source_1; } inline void set_m_Source_1(InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 value) { ___m_Source_1 = value; } inline static int32_t get_offset_of_m_HeadPose_2() { return static_cast<int32_t>(offsetof(InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250, ___m_HeadPose_2)); } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_HeadPose_2() const { return ___m_HeadPose_2; } inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_HeadPose_2() { return &___m_HeadPose_2; } inline void set_m_HeadPose_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value) { ___m_HeadPose_2 = value; } inline static int32_t get_offset_of_m_ThumbstickPosition_3() { return static_cast<int32_t>(offsetof(InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250, ___m_ThumbstickPosition_3)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_ThumbstickPosition_3() const { return ___m_ThumbstickPosition_3; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_ThumbstickPosition_3() { return &___m_ThumbstickPosition_3; } inline void set_m_ThumbstickPosition_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_ThumbstickPosition_3 = value; } inline static int32_t get_offset_of_m_TouchpadPosition_4() { return static_cast<int32_t>(offsetof(InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250, ___m_TouchpadPosition_4)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_TouchpadPosition_4() const { return ___m_TouchpadPosition_4; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_TouchpadPosition_4() { return &___m_TouchpadPosition_4; } inline void set_m_TouchpadPosition_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_TouchpadPosition_4 = value; } inline static int32_t get_offset_of_m_SelectPressedAmount_5() { return static_cast<int32_t>(offsetof(InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250, ___m_SelectPressedAmount_5)); } inline float get_m_SelectPressedAmount_5() const { return ___m_SelectPressedAmount_5; } inline float* get_address_of_m_SelectPressedAmount_5() { return &___m_SelectPressedAmount_5; } inline void set_m_SelectPressedAmount_5(float value) { ___m_SelectPressedAmount_5 = value; } inline static int32_t get_offset_of_m_Flags_6() { return static_cast<int32_t>(offsetof(InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250, ___m_Flags_6)); } inline int32_t get_m_Flags_6() const { return ___m_Flags_6; } inline int32_t* get_address_of_m_Flags_6() { return &___m_Flags_6; } inline void set_m_Flags_6(int32_t value) { ___m_Flags_6 = value; } }; // UnityEngine.XR.WSA.Input.InteractionSourceDetectedEventArgs struct InteractionSourceDetectedEventArgs_tC1F077616F3D6B484D0B12321013A21E072B9755 { public: // UnityEngine.XR.WSA.Input.InteractionSourceState UnityEngine.XR.WSA.Input.InteractionSourceDetectedEventArgs::<state>k__BackingField InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 ___U3CstateU3Ek__BackingField_0; public: inline static int32_t get_offset_of_U3CstateU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(InteractionSourceDetectedEventArgs_tC1F077616F3D6B484D0B12321013A21E072B9755, ___U3CstateU3Ek__BackingField_0)); } inline InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 get_U3CstateU3Ek__BackingField_0() const { return ___U3CstateU3Ek__BackingField_0; } inline InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 * get_address_of_U3CstateU3Ek__BackingField_0() { return &___U3CstateU3Ek__BackingField_0; } inline void set_U3CstateU3Ek__BackingField_0(InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 value) { ___U3CstateU3Ek__BackingField_0 = value; } }; // UnityEngine.XR.WSA.Input.InteractionSourceLostEventArgs struct InteractionSourceLostEventArgs_t1922B08265BAB2D8980B734D0A89C8705CCC40AC { public: // UnityEngine.XR.WSA.Input.InteractionSourceState UnityEngine.XR.WSA.Input.InteractionSourceLostEventArgs::<state>k__BackingField InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 ___U3CstateU3Ek__BackingField_0; public: inline static int32_t get_offset_of_U3CstateU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(InteractionSourceLostEventArgs_t1922B08265BAB2D8980B734D0A89C8705CCC40AC, ___U3CstateU3Ek__BackingField_0)); } inline InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 get_U3CstateU3Ek__BackingField_0() const { return ___U3CstateU3Ek__BackingField_0; } inline InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 * get_address_of_U3CstateU3Ek__BackingField_0() { return &___U3CstateU3Ek__BackingField_0; } inline void set_U3CstateU3Ek__BackingField_0(InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 value) { ___U3CstateU3Ek__BackingField_0 = value; } }; // UnityEngine.XR.WSA.Input.InteractionSourcePressedEventArgs struct InteractionSourcePressedEventArgs_tA2188AAAB8CB2AA059C55E45F2FD09ED3725EA5B { public: // UnityEngine.XR.WSA.Input.InteractionSourceState UnityEngine.XR.WSA.Input.InteractionSourcePressedEventArgs::<state>k__BackingField InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 ___U3CstateU3Ek__BackingField_0; // UnityEngine.XR.WSA.Input.InteractionSourcePressType UnityEngine.XR.WSA.Input.InteractionSourcePressedEventArgs::<pressType>k__BackingField int32_t ___U3CpressTypeU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CstateU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(InteractionSourcePressedEventArgs_tA2188AAAB8CB2AA059C55E45F2FD09ED3725EA5B, ___U3CstateU3Ek__BackingField_0)); } inline InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 get_U3CstateU3Ek__BackingField_0() const { return ___U3CstateU3Ek__BackingField_0; } inline InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 * get_address_of_U3CstateU3Ek__BackingField_0() { return &___U3CstateU3Ek__BackingField_0; } inline void set_U3CstateU3Ek__BackingField_0(InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 value) { ___U3CstateU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CpressTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(InteractionSourcePressedEventArgs_tA2188AAAB8CB2AA059C55E45F2FD09ED3725EA5B, ___U3CpressTypeU3Ek__BackingField_1)); } inline int32_t get_U3CpressTypeU3Ek__BackingField_1() const { return ___U3CpressTypeU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CpressTypeU3Ek__BackingField_1() { return &___U3CpressTypeU3Ek__BackingField_1; } inline void set_U3CpressTypeU3Ek__BackingField_1(int32_t value) { ___U3CpressTypeU3Ek__BackingField_1 = value; } }; // UnityEngine.XR.WSA.Input.InteractionSourceReleasedEventArgs struct InteractionSourceReleasedEventArgs_tD5E7A07FF6CC463893178DC4F3FD3543F20FB943 { public: // UnityEngine.XR.WSA.Input.InteractionSourceState UnityEngine.XR.WSA.Input.InteractionSourceReleasedEventArgs::<state>k__BackingField InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 ___U3CstateU3Ek__BackingField_0; // UnityEngine.XR.WSA.Input.InteractionSourcePressType UnityEngine.XR.WSA.Input.InteractionSourceReleasedEventArgs::<pressType>k__BackingField int32_t ___U3CpressTypeU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CstateU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(InteractionSourceReleasedEventArgs_tD5E7A07FF6CC463893178DC4F3FD3543F20FB943, ___U3CstateU3Ek__BackingField_0)); } inline InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 get_U3CstateU3Ek__BackingField_0() const { return ___U3CstateU3Ek__BackingField_0; } inline InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 * get_address_of_U3CstateU3Ek__BackingField_0() { return &___U3CstateU3Ek__BackingField_0; } inline void set_U3CstateU3Ek__BackingField_0(InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 value) { ___U3CstateU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CpressTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(InteractionSourceReleasedEventArgs_tD5E7A07FF6CC463893178DC4F3FD3543F20FB943, ___U3CpressTypeU3Ek__BackingField_1)); } inline int32_t get_U3CpressTypeU3Ek__BackingField_1() const { return ___U3CpressTypeU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CpressTypeU3Ek__BackingField_1() { return &___U3CpressTypeU3Ek__BackingField_1; } inline void set_U3CpressTypeU3Ek__BackingField_1(int32_t value) { ___U3CpressTypeU3Ek__BackingField_1 = value; } }; // UnityEngine.XR.WSA.Input.InteractionSourceUpdatedEventArgs struct InteractionSourceUpdatedEventArgs_t8386FB5578FE7C069A136CC36C9B6A56FF99CBC5 { public: // UnityEngine.XR.WSA.Input.InteractionSourceState UnityEngine.XR.WSA.Input.InteractionSourceUpdatedEventArgs::<state>k__BackingField InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 ___U3CstateU3Ek__BackingField_0; public: inline static int32_t get_offset_of_U3CstateU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(InteractionSourceUpdatedEventArgs_t8386FB5578FE7C069A136CC36C9B6A56FF99CBC5, ___U3CstateU3Ek__BackingField_0)); } inline InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 get_U3CstateU3Ek__BackingField_0() const { return ___U3CstateU3Ek__BackingField_0; } inline InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 * get_address_of_U3CstateU3Ek__BackingField_0() { return &___U3CstateU3Ek__BackingField_0; } inline void set_U3CstateU3Ek__BackingField_0(InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 value) { ___U3CstateU3Ek__BackingField_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int8_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return ret; } void* RuntimeInvoker_TrueIntPtr_t_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(const RuntimeMethod* method); ((Func)methodPointer)(methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, intptr_t p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((intptr_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, const RuntimeMethod* method); ((Func)methodPointer)(obj, methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int8_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int8_t p3, int8_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(RuntimeObject * p1, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int64_t p2, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int64_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int8_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int8_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(intptr_t p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(intptr_t p1, RuntimeObject * p2, intptr_t p3, int32_t p4, void* p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), (RuntimeObject *)args[1], *((intptr_t*)args[2]), *((int32_t*)args[3]), (void*)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(intptr_t p1, int32_t p2, void* p3, void* p4, RuntimeObject * p5, RuntimeObject * p6, RuntimeObject * p7, RuntimeObject * p8, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), *((int32_t*)args[1]), (void*)args[2], (void*)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], (RuntimeObject *)args[7], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(intptr_t p1, RuntimeObject * p2, intptr_t p3, void* p4, intptr_t p5, void* p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), (RuntimeObject *)args[1], *((intptr_t*)args[2]), (void*)args[3], *((intptr_t*)args[4]), (void*)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(intptr_t p1, RuntimeObject * p2, intptr_t p3, void* p4, RuntimeObject * p5, void* p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), (RuntimeObject *)args[1], *((intptr_t*)args[2]), (void*)args[3], (RuntimeObject *)args[4], (void*)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(intptr_t p1, RuntimeObject * p2, intptr_t p3, void* p4, void* p5, void* p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), (RuntimeObject *)args[1], *((intptr_t*)args[2]), (void*)args[3], (void*)args[4], (void*)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_RuntimeObject_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(intptr_t p1, RuntimeObject * p2, RuntimeObject * p3, intptr_t p4, void* p5, RuntimeObject * p6, RuntimeObject * p7, void* p8, RuntimeObject * p9, RuntimeObject * p10, RuntimeObject * p11, RuntimeObject * p12, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((intptr_t*)args[3]), (void*)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], (void*)args[7], (RuntimeObject *)args[8], (RuntimeObject *)args[9], (RuntimeObject *)args[10], (RuntimeObject *)args[11], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, void* p4, int32_t p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), (void*)args[3], *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int32_t p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, intptr_t p1, int8_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((intptr_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, intptr_t p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((intptr_t*)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int8_t p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void* (*Func)(void* obj, const RuntimeMethod* method); void* ret = ((Func)methodPointer)(obj, methodMetadata); return ret; } void* RuntimeInvoker_FalseIntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(void* p1, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)((void*)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D (*Func)(void* obj, const RuntimeMethod* method); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 (*Func)(void* obj, const RuntimeMethod* method); RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueIntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(void* obj, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueIntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(intptr_t p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((intptr_t*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseSafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F (*Func)(RuntimeObject * p1, const RuntimeMethod* method); SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(intptr_t p1, void* p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, int8_t p2, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], *((int8_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseIntPtr_t_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(RuntimeObject * p1, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(intptr_t p1, const RuntimeMethod* method); ((Func)methodPointer)(*((intptr_t*)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int16_t p1, int8_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int16_t p1, int8_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int8_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, void* p3, void* p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], (void*)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, void* p2, void* p3, void* p4, void* p5, void* p6, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], (void*)args[2], (void*)args[3], (void*)args[4], (void*)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int32_t p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int32_t p1, int8_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int16_t p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, int32_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, void* p2, void* p3, void* p4, void* p5, void* p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], (void*)args[2], (void*)args[3], (void*)args[4], (void*)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, int32_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int32_t p1, int32_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int32_t p1, int32_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, RuntimeObject * p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, int32_t p5, int32_t p6, int32_t p7, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, int32_t p5, int32_t p6, void* p7, void* p8, int8_t p9, int8_t p10, void* p11, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int32_t*)args[4]), *((int32_t*)args[5]), (void*)args[6], (void*)args[7], *((int8_t*)args[8]), *((int8_t*)args[9]), (void*)args[10], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int8_t p1, int8_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, int8_t p5, void* p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), *((int8_t*)args[4]), (void*)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, void* p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), (void*)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int16_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int16_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, void* p4, int16_t p5, int32_t p6, int8_t p7, void* p8, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], *((int16_t*)args[4]), *((int32_t*)args[5]), *((int8_t*)args[6]), (void*)args[7], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, void* p5, void* p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), (void*)args[4], (void*)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, void* p5, int32_t p6, int8_t p7, void* p8, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), (void*)args[4], *((int32_t*)args[5]), *((int8_t*)args[6]), (void*)args[7], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, void* p2, int32_t p3, int32_t p4, void* p5, int8_t p6, void* p7, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), (void*)args[4], *((int8_t*)args[5]), (void*)args[6], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, void* p2, int32_t p3, int32_t p4, void* p5, int8_t p6, int32_t p7, void* p8, void* p9, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), (void*)args[4], *((int8_t*)args[5]), *((int32_t*)args[6]), (void*)args[7], (void*)args[8], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, void* p2, int32_t p3, int32_t p4, void* p5, int32_t p6, int8_t p7, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (void*)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), (void*)args[4], *((int32_t*)args[5]), *((int8_t*)args[6]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, void* p2, int32_t p3, int32_t p4, int32_t p5, void* p6, int8_t p7, void* p8, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), (void*)args[5], *((int8_t*)args[6]), (void*)args[7], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, void* p2, int32_t p3, int32_t p4, int32_t p5, void* p6, int8_t p7, int32_t p8, void* p9, void* p10, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), (void*)args[5], *((int8_t*)args[6]), *((int32_t*)args[7]), (void*)args[8], (void*)args[9], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, void* p2, void* p3, void* p4, void* p5, void* p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (void*)args[1], (void*)args[2], (void*)args[3], (void*)args[4], (void*)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, RuntimeObject * p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int8_t p2, int8_t p3, int8_t p4, int8_t p5, int8_t p6, int8_t p7, int8_t p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), *((int8_t*)args[6]), *((int8_t*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int8_t p2, int8_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, void* p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), (void*)args[1], (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int8_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(float p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((float*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(double p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((double*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); double ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int8_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int16_t p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int16_t p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int16_t*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(RuntimeObject * p1, void* p2, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int8_t p2, int8_t p3, int8_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int8_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int32_t p1, int32_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, int64_t p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int64_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int64_t p2, RuntimeObject * p3, int64_t p4, int64_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int64_t*)args[1]), (RuntimeObject *)args[2], *((int64_t*)args[3]), *((int64_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int64_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int64_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(void* obj, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int64_t p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int64_t*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int64_t p1, int64_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int64_t*)args[0]), *((int64_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int64_t p1, int64_t p2, int64_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int64_t*)args[0]), *((int64_t*)args[1]), *((int64_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int64_t p2, int64_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int64_t*)args[1]), *((int64_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int64_t p2, int64_t p3, int64_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int64_t*)args[1]), *((int64_t*)args[2]), *((int64_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, int32_t p4, int32_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, int32_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int32_t p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int64_t p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int64_t*)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int64_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int64_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int64_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int64_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, intptr_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((intptr_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, int8_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(int32_t p1, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(double p1, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(*((double*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(int64_t p1, const RuntimeMethod* method); double ret = ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int8_t p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int8_t p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, void* p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); float ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); double ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, int8_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], *((int8_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, int64_t p2, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], *((int64_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, void* p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (void*)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, int32_t p2, RuntimeObject * p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, void* p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (void*)args[1], *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int16_t p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int16_t p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(RuntimeObject * p1, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(int16_t p1, RuntimeObject * p2, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(int16_t p1, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int16_t p1, int16_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), *((int16_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int16_t p1, int16_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), *((int16_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(void* obj, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int16_t p1, int32_t p2, int8_t p3, int8_t p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int32_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int64_t p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(float p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((float*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(double p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((double*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(int8_t p1, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(*((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(int64_t p1, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(float p1, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(*((float*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(double p1, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(*((double*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p1, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(*((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int8_t p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int64_t p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(float p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((float*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(double p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((double*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(int8_t p1, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(*((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(int16_t p1, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(int32_t p1, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(int64_t p1, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(float p1, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(*((float*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p1, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(*((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(int8_t p1, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(int16_t p1, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((int16_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(int32_t p1, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(int64_t p1, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(double p1, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((double*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p1, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); double ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(int8_t p1, const RuntimeMethod* method); double ret = ((Func)methodPointer)(*((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(int16_t p1, const RuntimeMethod* method); double ret = ((Func)methodPointer)(*((int16_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(int32_t p1, const RuntimeMethod* method); double ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(float p1, const RuntimeMethod* method); double ret = ((Func)methodPointer)(*((float*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p1, const RuntimeMethod* method); double ret = ((Func)methodPointer)(*((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*Func)(RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*Func)(int8_t p1, const RuntimeMethod* method); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ret = ((Func)methodPointer)(*((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*Func)(int16_t p1, const RuntimeMethod* method); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ret = ((Func)methodPointer)(*((int16_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*Func)(int32_t p1, const RuntimeMethod* method); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*Func)(int64_t p1, const RuntimeMethod* method); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ret = ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*Func)(float p1, const RuntimeMethod* method); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ret = ((Func)methodPointer)(*((float*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*Func)(double p1, const RuntimeMethod* method); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ret = ((Func)methodPointer)(*((double*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int16_t p1, RuntimeObject * p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int16_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, RuntimeObject * p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, void* p2, int32_t p3, int32_t p4, int8_t p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int32_t p1, int8_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, int32_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, int32_t p2, void* p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), (void*)args[2], *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int64_t p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int64_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int64_t p1, int32_t p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int64_t*)args[0]), *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(void* obj, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p1, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(obj, *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(void* obj, double p1, int32_t p2, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(obj, *((double*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(void* obj, double p1, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(obj, *((double*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(void* obj, int64_t p1, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(obj, *((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(int64_t p1, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, int32_t p2, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(void* obj, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(void* obj, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(void* obj, int8_t p1, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p2, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p2, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, void* p8, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), (void*)args[7], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, float p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((float*)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, double p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((double*)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int8_t p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, void* p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*Func)(RuntimeObject * p1, const RuntimeMethod* method); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*Func)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p1, int32_t p2, const RuntimeMethod* method); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ret = ((Func)methodPointer)(*((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p1, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[0]), *((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, RuntimeObject * p2, void* p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, void* p7, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], (void*)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], (void*)args[6], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, RuntimeObject * p7, RuntimeObject * p8, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], (RuntimeObject *)args[7], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, double p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((double*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, double p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((double*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(RuntimeObject * p1, const RuntimeMethod* method); double ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); double ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, void* p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int64_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int64_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, int8_t p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int16_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int16_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int8_t p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int8_t p1, int8_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int64_t p1, const RuntimeMethod* method); ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int16_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int16_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, int32_t p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int16_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int16_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, RuntimeObject * p2, RuntimeObject * p3, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p2, RuntimeObject * p3, int32_t p4, int8_t p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int8_t*)args[4]), (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, void* p2, void* p3, void* p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], (void*)args[2], (void*)args[3], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p2, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, void* p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int32_t p1, void* p2, void* p3, void* p4, void* p5, void* p6, int32_t p7, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), (void*)args[1], (void*)args[2], (void*)args[3], (void*)args[4], (void*)args[5], *((int32_t*)args[6]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int32_t p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, void* p2, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (void*)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, void* p2, void* p3, RuntimeObject * p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, void* p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, void* p2, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int32_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, void* p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int32_t p1, void* p2, void* p3, void* p4, RuntimeObject * p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), (void*)args[1], (void*)args[2], (void*)args[3], (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int32_t p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int8_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, void* p2, int32_t p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], *((int32_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int32_t p2, int32_t p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(void* p1, void* p2, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, void* p2, int32_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, void* p1, int32_t p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, void* p1, int32_t p2, void* p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), (void*)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, void* p1, void* p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, void* p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, void* p2, void* p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, int8_t p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D (*Func)(void* obj, const RuntimeMethod* method); DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseGuid_t_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Guid_t (*Func)(RuntimeObject * p1, const RuntimeMethod* method); Guid_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, void* p4, void* p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], (void*)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, void* p2, int32_t p3, int32_t p4, void* p5, void* p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), (void*)args[4], (void*)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, void* p2, int32_t p3, void* p4, void* p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], *((int32_t*)args[2]), (void*)args[3], (void*)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Guid_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Guid_t p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Guid_t *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Guid_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Guid_t p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Guid_t *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Guid_t_Guid_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Guid_t p1, Guid_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Guid_t *)args[0]), *((Guid_t *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, int32_t p2, int32_t p3, int32_t p4, int8_t p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseGuid_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Guid_t (*Func)(const RuntimeMethod* method); Guid_t ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int64_t p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int64_t p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(double p1, const RuntimeMethod* method); double ret = ((Func)methodPointer)(*((double*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(double p1, double p2, const RuntimeMethod* method); double ret = ((Func)methodPointer)(*((double*)args[0]), *((double*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(double p1, int32_t p2, int32_t p3, const RuntimeMethod* method); double ret = ((Func)methodPointer)(*((double*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(double p1, int32_t p2, const RuntimeMethod* method); double ret = ((Func)methodPointer)(*((double*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(void* p1, const RuntimeMethod* method); double ret = ((Func)methodPointer)((void*)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(float p1, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((float*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(float p1, float p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((float*)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(double p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((double*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int64_t p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int64_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(float p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((float*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseVoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void* (*Func)(void* p1, RuntimeObject * p2, const RuntimeMethod* method); void* ret = ((Func)methodPointer)((void*)args[0], (RuntimeObject *)args[1], methodMetadata); return ret; } void* RuntimeInvoker_FalseVoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void* (*Func)(void* p1, void* p2, const RuntimeMethod* method); void* ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], methodMetadata); return ret; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int32_t p2, void* p3, RuntimeObject * p4, RuntimeObject * p5, int8_t p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), (void*)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], *((int8_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); float ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, void* p3, RuntimeObject * p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (void*)args[2], (RuntimeObject *)args[3], *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, void* p3, RuntimeObject * p4, int8_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (void*)args[2], (RuntimeObject *)args[3], *((int8_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, void* p3, RuntimeObject * p4, RuntimeObject * p5, int8_t p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (void*)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], *((int8_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueCancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (*Func)(void* obj, const RuntimeMethod* method); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(void* obj, const RuntimeMethod* method); double ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, void* p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, void* p2, int8_t p3, void* p4, void* p5, void* p6, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), (void*)args[1], *((int8_t*)args[2]), (void*)args[3], (void*)args[4], (void*)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, void* p2, void* p3, void* p4, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), (void*)args[1], (void*)args[2], (void*)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, int8_t p3, int8_t p4, int8_t p5, RuntimeObject * p6, int8_t p7, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), (RuntimeObject *)args[5], *((int8_t*)args[6]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, int8_t p4, RuntimeObject * p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int8_t*)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, RuntimeObject * p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueListBuilder_1_t5D6EE6CE7ECAEF873A9512FDCDB1650477082C62_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ListBuilder_1_t5D6EE6CE7ECAEF873A9512FDCDB1650477082C62 (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, int8_t p5, const RuntimeMethod* method); ListBuilder_1_t5D6EE6CE7ECAEF873A9512FDCDB1650477082C62 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int8_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueListBuilder_1_tC910DF600888C2B5164672D53A552842C6B0A31B_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ListBuilder_1_tC910DF600888C2B5164672D53A552842C6B0A31B (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, int8_t p5, const RuntimeMethod* method); ListBuilder_1_tC910DF600888C2B5164672D53A552842C6B0A31B ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int8_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueListBuilder_1_t306530737CDAC7F801197CE81CE3E931E32B5B74_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ListBuilder_1_t306530737CDAC7F801197CE81CE3E931E32B5B74 (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, int8_t p4, const RuntimeMethod* method); ListBuilder_1_t306530737CDAC7F801197CE81CE3E931E32B5B74 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int8_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueListBuilder_1_t7C73F3941A5FC9B73A3978FF42B31F47032EB5CC_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ListBuilder_1_t7C73F3941A5FC9B73A3978FF42B31F47032EB5CC (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int8_t p3, const RuntimeMethod* method); ListBuilder_1_t7C73F3941A5FC9B73A3978FF42B31F47032EB5CC ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueListBuilder_1_t9F805B8E5D22215EA08ED24F79F2783EB52A7B72_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ListBuilder_1_t9F805B8E5D22215EA08ED24F79F2783EB52A7B72 (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int8_t p3, const RuntimeMethod* method); ListBuilder_1_t9F805B8E5D22215EA08ED24F79F2783EB52A7B72 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueListBuilder_1_tD5DE73E8827791DC2F4C293F9A405D8CC32E13FB_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ListBuilder_1_tD5DE73E8827791DC2F4C293F9A405D8CC32E13FB (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int8_t p3, const RuntimeMethod* method); ListBuilder_1_tD5DE73E8827791DC2F4C293F9A405D8CC32E13FB ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, int32_t p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, RuntimeObject * p2, int32_t p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, RuntimeObject * p7, RuntimeObject * p8, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], (RuntimeObject *)args[7], methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, int8_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, void* p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (void*)args[5], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int8_t p1, int8_t p2, int8_t p3, void* p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), *((int8_t*)args[2]), (void*)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, void* p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], methodMetadata); return ret; } void* RuntimeInvoker_TrueIntPtr_t_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(void* obj, intptr_t p1, int32_t p2, int8_t p3, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)(obj, *((intptr_t*)args[0]), *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int8_t p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, RuntimeObject * p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return ret; } void* RuntimeInvoker_TrueIntPtr_t_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(void* obj, intptr_t p1, int32_t p2, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)(obj, *((intptr_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, float p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((float*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, float p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((float*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, void* p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, int32_t p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, int32_t p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, void* p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (void*)args[0], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, void* p1, int32_t p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int16_t p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, int8_t p3, RuntimeObject * p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, int32_t p4, int32_t p5, RuntimeObject * p6, int32_t p7, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), (RuntimeObject *)args[5], *((int32_t*)args[6]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, int32_t p4, int32_t p5, int32_t p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int16_t p1, int32_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, int16_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int16_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int16_t p1, int16_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int16_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 *)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, int32_t p5, int32_t p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int16_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, int32_t p4, int32_t p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, int16_t p2, int8_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int16_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, int32_t p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int16_t p1, int32_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, void* p1, int32_t p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(void* obj, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p1, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(obj, *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(double p1, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(*((double*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(double p1, int32_t p2, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(*((double*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(int64_t p1, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p2, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(*((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[0]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[0]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, void* p2, void* p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), (void*)args[1], (void*)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int32_t p1, void* p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, void* p2, void* p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int16_t p1, void* p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), (void*)args[1], (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p2, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[1]), *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[2]), *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F p1, void* p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)args[0]), (void*)args[1], *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, int64_t p2, void* p3, int32_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((int64_t*)args[1]), (void*)args[2], *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(void* obj, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(obj, *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, RuntimeObject * p2, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, void* p2, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, int8_t p7, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], *((int8_t*)args[6]), methodMetadata); return ret; } void* RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(void* obj, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(obj, *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(void* obj, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, void* p2, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(obj, *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, RuntimeObject * p2, void* p3, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), (RuntimeObject *)args[1], (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p2, int32_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, int8_t p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], *((int8_t*)args[6]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, void* p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), (void*)args[1], (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 p1, int32_t p2, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(*((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, int32_t p2, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(void* obj, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, int32_t p2, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(obj, *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, RuntimeObject * p2, void* p3, void* p4, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), (RuntimeObject *)args[1], (void*)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 (*Func)(void* obj, const RuntimeMethod* method); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p3, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 p4, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[1]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[2]), *((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)args[3]), *((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)args[4]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p3, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 p4, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 p5, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[1]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[2]), *((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)args[3]), *((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)args[4]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[5]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p3, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 p4, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 p5, const RuntimeMethod* method); ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[1]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[2]), *((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)args[3]), *((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 p1, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)args[0]), *((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseTransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, int32_t p2, int32_t p3, const RuntimeMethod* method); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseTransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseTransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int8_t p6, const RuntimeMethod* method); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ret = ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int8_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int8_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int8_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D (*Func)(RuntimeObject * p1, const RuntimeMethod* method); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, void* p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int8_t p2, int8_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int8_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseTypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8 (*Func)(RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8 ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8 p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(*((TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8 *)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, void* p3, void* p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], (void*)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, int32_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, void* p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, void* p4, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, int32_t p2, int32_t p3, int16_t p4, int32_t p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int16_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int8_t p4, int8_t p5, void* p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int8_t*)args[3]), *((int8_t*)args[4]), (void*)args[5], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(intptr_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((intptr_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 (*Func)(const RuntimeMethod* method); ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 (*Func)(int8_t p1, const RuntimeMethod* method); ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ret = ((Func)methodPointer)(*((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(intptr_t p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, void* p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int8_t p4, int8_t p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int8_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int32_t p4, int8_t p5, int8_t p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 (*Func)(void* obj, int8_t p1, const RuntimeMethod* method); ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(intptr_t p1, intptr_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), *((intptr_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseIntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(int32_t p1, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseIntPtr_t_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(int64_t p1, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void* (*Func)(intptr_t p1, const RuntimeMethod* method); void* ret = ((Func)methodPointer)(*((intptr_t*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, void* p2, void* p3, void* p4, void* p5, void* p6, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], (void*)args[3], (void*)args[4], (void*)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, double p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((double*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int16_t p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int16_t*)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int64_t p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int64_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, float p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((float*)args[1]), (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, double p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((double*)args[1]), (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[1]), (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, double p1, RuntimeObject * p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((double*)args[0]), (RuntimeObject *)args[1], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, float p1, RuntimeObject * p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((float*)args[0]), (RuntimeObject *)args[1], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int8_t p2, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int8_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, void* p2, int8_t p3, void* p4, void* p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], *((int8_t*)args[2]), (void*)args[3], (void*)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, int8_t p5, RuntimeObject * p6, RuntimeObject * p7, RuntimeObject * p8, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int8_t*)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], (RuntimeObject *)args[7], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, int32_t p5, RuntimeObject * p6, void* p7, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((int32_t*)args[4]), (RuntimeObject *)args[5], (void*)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, void* p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int8_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 (*Func)(void* obj, int32_t p1, int8_t p2, const RuntimeMethod* method); ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 (*Func)(void* obj, void* p1, const RuntimeMethod* method); ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ret = ((Func)methodPointer)(obj, (void*)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, void* p2, RuntimeObject * p3, RuntimeObject * p4, void* p5, void* p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (void*)args[4], (void*)args[5], methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_IntPtr_t_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, intptr_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], *((intptr_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_IntPtr_t_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, intptr_t p2, RuntimeObject * p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], *((intptr_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int16_t p1, void* p2, void* p3, void* p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int16_t*)args[0]), (void*)args[1], (void*)args[2], (void*)args[3], methodMetadata); return ret; } void* RuntimeInvoker_FalseFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 (*Func)(int32_t p1, const RuntimeMethod* method); FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 (*Func)(void* obj, const RuntimeMethod* method); FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, void* p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, void* p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int32_t p1, void* p2, void* p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), (void*)args[1], (void*)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int8_t p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int8_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int8_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, void* p2, int8_t p3, int8_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, void* p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(intptr_t p1, void* p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(intptr_t p1, void* p2, int32_t p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), (void*)args[1], *((int32_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, void* p1, int32_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, int32_t p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, void* p1, int32_t p2, void* p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), (void*)args[2], *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, void* p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, void* p1, int32_t p2, void* p3, int32_t p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), (void*)args[2], *((int32_t*)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, int8_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, void* p1, int32_t p2, int8_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, int32_t p5, int8_t p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int32_t*)args[4]), *((int8_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, void* p1, int32_t p2, void* p3, int32_t p4, int8_t p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), (void*)args[2], *((int32_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, void* p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, int32_t p5, int32_t p6, int8_t p7, void* p8, void* p9, void* p10, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int32_t*)args[4]), *((int32_t*)args[5]), *((int8_t*)args[6]), (void*)args[7], (void*)args[8], (void*)args[9], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, int32_t p2, void* p3, int32_t p4, int8_t p5, void* p6, void* p7, void* p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), (void*)args[2], *((int32_t*)args[3]), *((int8_t*)args[4]), (void*)args[5], (void*)args[6], (void*)args[7], methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int16_t p1, int32_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int16_t p1, int16_t p2, int32_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int16_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(void* obj, int16_t p1, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int16_t p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int16_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int16_t p2, int16_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int16_t*)args[1]), *((int16_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, void* p2, RuntimeObject * p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], (RuntimeObject *)args[2], *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int16_t p1, void* p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, void* p3, int32_t p4, void* p5, int32_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], *((int32_t*)args[3]), (void*)args[4], *((int32_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int8_t p1, int32_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int8_t p1, int8_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int8_t p1, int8_t p2, int32_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int16_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int16_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int16_t p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 *)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, void* p1, int32_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, void* p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (void*)args[1], *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, int32_t p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, void* p2, void* p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], (void*)args[2], *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, void* p3, void* p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), (void*)args[2], (void*)args[3], *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, void* p3, void* p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), (void*)args[2], (void*)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int8_t p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int16_t p1, int16_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int16_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, void* p1, int32_t p2, RuntimeObject * p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, void* p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, void* p2, RuntimeObject * p3, int32_t p4, int32_t p5, void* p6, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (void*)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), (void*)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int16_t p1, int32_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int32_t p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int32_t p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, void* p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, void* p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (void*)args[1], methodMetadata); return ret; } void* RuntimeInvoker_TrueDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*Func)(void* obj, const RuntimeMethod* method); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int8_t p2, int8_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C p1, RuntimeObject * p2, RuntimeObject * p3, int8_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int8_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, int32_t p6, RuntimeObject * p7, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], *((int32_t*)args[5]), (RuntimeObject *)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F (*Func)(void* obj, const RuntimeMethod* method); RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, int8_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F_RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F p1, RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F *)args[0]), *((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D *)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_IntPtr_t_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(intptr_t p1, intptr_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((intptr_t*)args[0]), *((intptr_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_IntPtr_t_IntPtr_t_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(intptr_t p1, intptr_t p2, int8_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((intptr_t*)args[0]), *((intptr_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, RuntimeObject * p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], (RuntimeObject *)args[1], methodMetadata); return ret; } void* RuntimeInvoker_TrueIntPtr_t_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(void* obj, RuntimeObject * p1, void* p2, void* p3, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, int64_t p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((int64_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(intptr_t p1, void* p2, void* p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), (void*)args[1], (void*)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, RuntimeObject * p2, int8_t p3, int8_t p4, int8_t p5, int8_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, intptr_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((intptr_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, intptr_t p3, int32_t p4, void* p5, void* p6, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((intptr_t*)args[2]), *((int32_t*)args[3]), (void*)args[4], (void*)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeEventHandle_tE5D1932AECB9CB753494050E033F25584E3693A9_RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeEventHandle_tE5D1932AECB9CB753494050E033F25584E3693A9 p1, RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((RuntimeEventHandle_tE5D1932AECB9CB753494050E033F25584E3693A9 *)args[0]), *((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D *)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF (*Func)(void* obj, const RuntimeMethod* method); RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF_RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF p1, RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF *)args[0]), *((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D *)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8 p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8 *)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueGuid_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Guid_t (*Func)(void* obj, const RuntimeMethod* method); Guid_t ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, void* p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseMonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef MonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB (*Func)(RuntimeObject * p1, const RuntimeMethod* method); MonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(intptr_t p1, void* p2, const RuntimeMethod* method); ((Func)methodPointer)(*((intptr_t*)args[0]), (void*)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_FalseMonoMethodInfo_t846D423B6DB28262B9AC22C1D07EC38D23DF7D5D_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef MonoMethodInfo_t846D423B6DB28262B9AC22C1D07EC38D23DF7D5D (*Func)(intptr_t p1, const RuntimeMethod* method); MonoMethodInfo_t846D423B6DB28262B9AC22C1D07EC38D23DF7D5D ret = ((Func)methodPointer)(*((intptr_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_IntPtr_t_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(intptr_t p1, RuntimeObject * p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((intptr_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, void* p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, void* p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimePropertyHandle_tFFD677B19D1E7D3E4B66A0C086E051AC52C34DCB_RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimePropertyHandle_tFFD677B19D1E7D3E4B66A0C086E051AC52C34DCB p1, RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((RuntimePropertyHandle_tFFD677B19D1E7D3E4B66A0C086E051AC52C34DCB *)args[0]), *((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D *)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(void* obj, const RuntimeMethod* method); float ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*Func)(void* obj, const RuntimeMethod* method); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int8_t p4, int8_t p5, int32_t p6, int8_t p7, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int8_t*)args[3]), *((int8_t*)args[4]), *((int32_t*)args[5]), *((int8_t*)args[6]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(void* obj, int64_t p1, int32_t p2, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(obj, *((int64_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, RuntimeObject * p5, int8_t p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], *((int8_t*)args[5]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, int32_t p6, int32_t p7, RuntimeObject * p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], *((int32_t*)args[5]), *((int32_t*)args[6]), (RuntimeObject *)args[7], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int8_t p3, int32_t p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), *((int32_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int8_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int8_t p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int8_t p2, RuntimeObject * p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int8_t p2, RuntimeObject * p3, int32_t p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, int64_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((int64_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, int64_t p2, int64_t p3, int32_t p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((int64_t*)args[1]), *((int64_t*)args[2]), *((int32_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, void* p2, int8_t p3, int8_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, intptr_t p1, int32_t p2, int8_t p3, int32_t p4, int8_t p5, int8_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((intptr_t*)args[0]), *((int32_t*)args[1]), *((int8_t*)args[2]), *((int32_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, RuntimeObject * p7, int8_t p8, int8_t p9, int8_t p10, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), (RuntimeObject *)args[6], *((int8_t*)args[7]), *((int8_t*)args[8]), *((int8_t*)args[9]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int8_t p6, int8_t p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int8_t*)args[5]), *((int8_t*)args[6]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int8_t p6, int32_t p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int8_t*)args[5]), *((int32_t*)args[6]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int8_t p3, int32_t p4, int8_t p5, int8_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), *((int32_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseIntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(void* p1, void* p2, void* p3, void* p4, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseIntPtr_t_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(RuntimeObject * p1, void* p2, void* p3, void* p4, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], (void*)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseIntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(void* p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, void* p6, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), (void*)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseIntPtr_t_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, void* p6, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), (void*)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(intptr_t p1, RuntimeObject * p2, int32_t p3, int32_t p4, void* p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), (void*)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, void* p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), (void*)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_IntPtr_t_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(intptr_t p1, int64_t p2, int32_t p3, void* p4, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), *((int64_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(RuntimeObject * p1, int64_t p2, int32_t p3, void* p4, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int64_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(intptr_t p1, void* p2, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(RuntimeObject * p1, void* p2, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseIntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, void* p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int8_t p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(*((int8_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int32_t p8, const RuntimeMethod* method); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int32_t p8, void* p9, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), (void*)args[8], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int8_t p3, int64_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), *((int64_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueNullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB (*Func)(void* obj, const RuntimeMethod* method); Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, int32_t p2, int8_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, void* p1, void* p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, void* p2, void* p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (void*)args[1], (void*)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int16_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int32_t p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int16_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int16_t p2, int32_t p3, void* p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int16_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int64_t p1, int32_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int64_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, RuntimeObject * p8, RuntimeObject * p9, RuntimeObject * p10, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), (RuntimeObject *)args[7], (RuntimeObject *)args[8], (RuntimeObject *)args[9], methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(int32_t p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int16_t p1, void* p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int8_t p2, int64_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int8_t*)args[1]), *((int64_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int8_t p2, int64_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), *((int64_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p1, int8_t p2, RuntimeObject * p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[0]), *((int8_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseFormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef FormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223 (*Func)(int8_t p1, const RuntimeMethod* method); FormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223 ret = ((Func)methodPointer)(*((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RuntimeObject * p2, RuntimeObject * p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int32_t p8, int32_t p9, int32_t p10, int32_t p11, int32_t p12, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), *((int32_t*)args[8]), *((int32_t*)args[9]), *((int32_t*)args[10]), *((int32_t*)args[11]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int8_t p2, int32_t p3, int32_t p4, int32_t p5, RuntimeObject * p6, int32_t p7, int32_t p8, int32_t p9, int32_t p10, int8_t p11, RuntimeObject * p12, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int8_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), (RuntimeObject *)args[5], *((int32_t*)args[6]), *((int32_t*)args[7]), *((int32_t*)args[8]), *((int32_t*)args[9]), *((int8_t*)args[10]), (RuntimeObject *)args[11], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, int8_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 (*Func)(RuntimeObject * p1, int16_t p2, const RuntimeMethod* method); InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int16_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 (*Func)(int16_t p1, int16_t p2, RuntimeObject * p3, int32_t p4, const RuntimeMethod* method); InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 ret = ((Func)methodPointer)(*((int16_t*)args[0]), *((int16_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueData_t25CAFAACB31D34B4A9385638281C56D4D250BA2F (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Data_t25CAFAACB31D34B4A9385638281C56D4D250BA2F (*Func)(void* obj, const RuntimeMethod* method); Data_t25CAFAACB31D34B4A9385638281C56D4D250BA2F ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int8_t p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int8_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int8_t p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, int8_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int16_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int32_t p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int32_t p1, int32_t p2, int8_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int32_t p1, int8_t p2, void* p3, void* p4, void* p5, void* p6, void* p7, void* p8, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int8_t*)args[1]), (void*)args[2], (void*)args[3], (void*)args[4], (void*)args[5], (void*)args[6], (void*)args[7], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, int64_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int64_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseCancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (*Func)(const RuntimeMethod* method); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int8_t p3, int8_t p4, const RuntimeMethod* method); CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[0]), *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int8_t p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int8_t*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_TrueCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CancellationCallbackCoreWorkArguments_t6290788CA17D8028FC4BC98AE2EDD437396675DB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, CancellationCallbackCoreWorkArguments_t6290788CA17D8028FC4BC98AE2EDD437396675DB p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((CancellationCallbackCoreWorkArguments_t6290788CA17D8028FC4BC98AE2EDD437396675DB *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[0]), *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, int32_t p2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, void* p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (void*)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int8_t p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int8_t*)args[1]), (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseExecutionContextSwitcher_t739C861A327D724A4E59DE865463B32097395159_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ExecutionContextSwitcher_t739C861A327D724A4E59DE865463B32097395159 (*Func)(RuntimeObject * p1, int8_t p2, const RuntimeMethod* method); ExecutionContextSwitcher_t739C861A327D724A4E59DE865463B32097395159 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueReader_t8A0F3818A710941785287CE8D7184C05480C2EA6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 (*Func)(void* obj, const RuntimeMethod* method); Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int8_t p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int8_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueReader_t5766DE258B6B590281150D8DB517B651F9F4F33B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B (*Func)(void* obj, const RuntimeMethod* method); Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B p1, int8_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B *)args[0]), *((int8_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int8_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, void* p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, void* p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (void*)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, void* p1, void* p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, void* p1, void* p2, int32_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, void* p1, int32_t p2, void* p3, int32_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), (void*)args[2], *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int8_t p3, void* p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), (void*)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int32_t p4, int8_t p5, void* p6, int8_t p7, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int8_t*)args[4]), (void*)args[5], *((int8_t*)args[6]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p4, int8_t p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[3]), *((int8_t*)args[4]), methodMetadata); return ret; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, void* p3, int8_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], *((int8_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int8_t p1, const RuntimeMethod* method); ((Func)methodPointer)(*((int8_t*)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, int8_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int64_t p1, int8_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int64_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int64_t p2, int8_t p3, int8_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int64_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int8_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p2, int8_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int8_t p3, int8_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, int32_t p2, int8_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, int32_t p2, int32_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, int32_t p2, int32_t p3, void* p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(void* p1, float p2, float p3, const RuntimeMethod* method); float ret = ((Func)methodPointer)((void*)args[0], *((float*)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(void* p1, float p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)((void*)args[0], *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(void* p1, int64_t p2, int64_t p3, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)((void*)args[0], *((int64_t*)args[1]), *((int64_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseIntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_IntPtr_t_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(void* p1, intptr_t p2, intptr_t p3, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)((void*)args[0], *((intptr_t*)args[1]), *((intptr_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(void* p1, double p2, double p3, const RuntimeMethod* method); double ret = ((Func)methodPointer)((void*)args[0], *((double*)args[1]), *((double*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(void* p1, int64_t p2, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)((void*)args[0], *((int64_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseIntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(void* p1, intptr_t p2, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)((void*)args[0], *((intptr_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(void* p1, double p2, const RuntimeMethod* method); double ret = ((Func)methodPointer)((void*)args[0], *((double*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(void* p1, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)((void*)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseIntPtr_t_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(int8_t p1, int8_t p2, RuntimeObject * p3, void* p4, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)(*((int8_t*)args[0]), *((int8_t*)args[1]), (RuntimeObject *)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p3, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[2]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int64_t p3, int64_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int64_t*)args[2]), *((int64_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[0]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int64_t p1, int64_t p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int64_t*)args[0]), *((int64_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, int32_t p2, RuntimeObject * p3, int64_t p4, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int64_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int32_t p2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int32_t*)args[1]), *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p4, int32_t p5, int32_t p6, RuntimeObject * p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), (RuntimeObject *)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p3, int32_t p4, int32_t p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, int32_t p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, int32_t p5, int32_t p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int8_t p2, int8_t p3, void* p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), *((int8_t*)args[2]), (void*)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p3, int32_t p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[2]), *((int32_t*)args[3]), (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p4, int32_t p5, void* p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[3]), *((int32_t*)args[4]), (void*)args[5], methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, void* p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), (void*)args[1], (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int32_t p4, int32_t p5, void* p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), (void*)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int8_t p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int8_t p1, RuntimeObject * p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p1, int32_t p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int64_t p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseIntPtr_t_IntPtr_t_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(intptr_t p1, RuntimeObject * p2, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int64_t p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int64_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[2]), (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p2, void* p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[1]), (void*)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(void* obj, RuntimeObject * p1, void* p2, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p2, int8_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, void* p2, void* p3, int8_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], (void*)args[2], *((int8_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int64_t p2, RuntimeObject * p3, int64_t p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int64_t*)args[1]), (RuntimeObject *)args[2], *((int64_t*)args[3]), (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int64_t p2, RuntimeObject * p3, int64_t p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int64_t*)args[1]), (RuntimeObject *)args[2], *((int64_t*)args[3]), (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int64_t p1, RuntimeObject * p2, int64_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int64_t*)args[0]), (RuntimeObject *)args[1], *((int64_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int64_t p2, RuntimeObject * p3, RuntimeObject * p4, int64_t p5, RuntimeObject * p6, RuntimeObject * p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int64_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((int64_t*)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int64_t p4, RuntimeObject * p5, RuntimeObject * p6, RuntimeObject * p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int64_t*)args[3]), (RuntimeObject *)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int16_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int16_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, float p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((float*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA (*Func)(void* obj, const RuntimeMethod* method); SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int64_t p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int64_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, void* p5, void* p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (void*)args[4], (void*)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, RuntimeObject * p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, RuntimeObject * p2, void* p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), (RuntimeObject *)args[1], (void*)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, void* p5, void* p6, void* p7, void* p8, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (void*)args[4], (void*)args[5], (void*)args[6], (void*)args[7], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RuntimeObject * p2, int32_t p3, RuntimeObject * p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RuntimeObject * p2, int32_t p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, RuntimeObject * p7, int32_t p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], *((int32_t*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, int32_t p5, RuntimeObject * p6, int32_t p7, int32_t p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((int32_t*)args[4]), (RuntimeObject *)args[5], *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, int32_t p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((int32_t*)args[4]), (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, int32_t p7, RuntimeObject * p8, RuntimeObject * p9, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], *((int32_t*)args[6]), (RuntimeObject *)args[7], (RuntimeObject *)args[8], methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, void* p1, void* p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, int32_t p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((int32_t*)args[4]), (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, int32_t p7, RuntimeObject * p8, RuntimeObject * p9, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], *((int32_t*)args[6]), (RuntimeObject *)args[7], (RuntimeObject *)args[8], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, int32_t p5, int32_t p6, RuntimeObject * p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((int32_t*)args[4]), *((int32_t*)args[5]), (RuntimeObject *)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, int32_t p5, int32_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, int32_t p5, RuntimeObject * p6, RuntimeObject * p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((int32_t*)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, RuntimeObject * p7, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, RuntimeObject * p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, int8_t p7, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], *((int8_t*)args[6]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, int8_t p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], *((int8_t*)args[6]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p5, RuntimeObject * p6, RuntimeObject * p7, RuntimeObject * p8, int8_t p9, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], (RuntimeObject *)args[7], *((int8_t*)args[8]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p5, RuntimeObject * p6, RuntimeObject * p7, RuntimeObject * p8, int8_t p9, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], (RuntimeObject *)args[7], *((int8_t*)args[8]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(void* obj, int64_t p1, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(obj, *((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, RuntimeObject * p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(void* obj, RuntimeObject * p1, int8_t p2, RuntimeObject * p3, void* p4, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), (RuntimeObject *)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(void* obj, RuntimeObject * p1, int8_t p2, RuntimeObject * p3, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(void* obj, RuntimeObject * p1, int8_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int64_t p1, int64_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int64_t*)args[0]), *((int64_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, RuntimeObject * p2, int8_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), (RuntimeObject *)args[1], *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, void* p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (void*)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_IntPtr_t_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, intptr_t p1, intptr_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((intptr_t*)args[0]), *((intptr_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_IntPtr_t_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, intptr_t p1, intptr_t p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((intptr_t*)args[0]), *((intptr_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_IntPtr_t_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, intptr_t p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((intptr_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, void* p3, void* p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], (void*)args[3], methodMetadata); return ret; } void* RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p1, const RuntimeMethod* method); ((Func)methodPointer)(*((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int8_t p1, RuntimeObject * p2, int8_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(*((int8_t*)args[0]), (RuntimeObject *)args[1], *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseProcessMessageRes_t17F028A89C1685A6BE96D7B59DD490E4CB859957_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ProcessMessageRes_t17F028A89C1685A6BE96D7B59DD490E4CB859957 (*Func)(RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); ProcessMessageRes_t17F028A89C1685A6BE96D7B59DD490E4CB859957 ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, int8_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int8_t p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, intptr_t p2, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((intptr_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF p2, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int8_t p4, int8_t p5, int8_t p6, int32_t p7, int8_t p8, int8_t p9, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), *((int32_t*)args[6]), *((int8_t*)args[7]), *((int8_t*)args[8]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, intptr_t p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((intptr_t*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 p1, GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)args[0]), *((GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseIntPtr_t_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(intptr_t p1, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)(*((intptr_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(intptr_t p1, int32_t p2, RuntimeObject * p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(*((intptr_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(intptr_t p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(*((intptr_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_IntPtr_t_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, intptr_t p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((intptr_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, float p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((float*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, float p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((float*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, float p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((float*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, void* p3, void* p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (void*)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int8_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int16_t p1, int8_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int16_t p1, int16_t p2, void* p3, int8_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), *((int16_t*)args[1]), (void*)args[2], *((int8_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int16_t p1, int32_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, int64_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int64_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int64_t p1, int64_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int64_t*)args[0]), *((int64_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, int8_t p3, void* p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, void* p2, void* p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int16_t p2, int16_t p3, void* p4, void* p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int16_t*)args[1]), *((int16_t*)args[2]), (void*)args[3], (void*)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, int16_t p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int16_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(void* p1, int16_t p2, void* p3, void* p4, void* p5, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)((void*)args[0], *((int16_t*)args[1]), (void*)args[2], (void*)args[3], (void*)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int16_t p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int16_t*)args[1]), (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, int16_t p2, void* p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], *((int16_t*)args[1]), (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(void* obj, void* p1, int16_t p2, int16_t p3, void* p4, void* p5, RuntimeObject * p6, void* p7, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(obj, (void*)args[0], *((int16_t*)args[1]), *((int16_t*)args[2]), (void*)args[3], (void*)args[4], (RuntimeObject *)args[5], (void*)args[6], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, int16_t p2, int32_t p3, int32_t p4, int8_t p5, int8_t p6, RuntimeObject * p7, RuntimeObject * p8, void* p9, void* p10, void* p11, void* p12, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((int16_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), (RuntimeObject *)args[6], (RuntimeObject *)args[7], (void*)args[8], (void*)args[9], (void*)args[10], (void*)args[11], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, int32_t p2, int32_t p3, int8_t p4, int8_t p5, RuntimeObject * p6, void* p7, void* p8, void* p9, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), (RuntimeObject *)args[5], (void*)args[6], (void*)args[7], (void*)args[8], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, void* p2, int16_t p3, int16_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], *((int16_t*)args[2]), *((int16_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, void* p2, int16_t p3, int16_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], *((int16_t*)args[2]), *((int16_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, void* p1, void* p2, int16_t p3, int16_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], *((int16_t*)args[2]), *((int16_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, void* p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, int32_t p2, void* p3, int16_t p4, int16_t p5, int16_t p6, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), (void*)args[2], *((int16_t*)args[3]), *((int16_t*)args[4]), *((int16_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int16_t p2, void* p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int16_t*)args[1]), (void*)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, int32_t p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int8_t p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int8_t p2, int32_t p3, void* p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int8_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, RuntimeObject * p2, void* p3, void* p4, void* p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], (void*)args[3], (void*)args[4], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, void* p5, int8_t p6, int16_t p7, int16_t p8, int16_t p9, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], (void*)args[4], *((int8_t*)args[5]), *((int16_t*)args[6]), *((int16_t*)args[7]), *((int16_t*)args[8]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, RuntimeObject * p2, int32_t p3, int16_t p4, int16_t p5, void* p6, int32_t p7, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int16_t*)args[3]), *((int16_t*)args[4]), (void*)args[5], *((int32_t*)args[6]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, void* p5, int16_t p6, int16_t p7, int16_t p8, int32_t p9, RuntimeObject * p10, int8_t p11, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], (void*)args[4], *((int16_t*)args[5]), *((int16_t*)args[6]), *((int16_t*)args[7]), *((int32_t*)args[8]), (RuntimeObject *)args[9], *((int8_t*)args[10]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, int32_t p2, int32_t p3, RuntimeObject * p4, void* p5, int16_t p6, int16_t p7, int16_t p8, int32_t p9, RuntimeObject * p10, int8_t p11, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], (void*)args[4], *((int16_t*)args[5]), *((int16_t*)args[6]), *((int16_t*)args[7]), *((int32_t*)args[8]), (RuntimeObject *)args[9], *((int8_t*)args[10]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, RuntimeObject * p2, void* p3, RuntimeObject * p4, int32_t p5, RuntimeObject * p6, int32_t p7, int8_t p8, int8_t p9, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (RuntimeObject *)args[1], (void*)args[2], (RuntimeObject *)args[3], *((int32_t*)args[4]), (RuntimeObject *)args[5], *((int32_t*)args[6]), *((int8_t*)args[7]), *((int8_t*)args[8]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int16_t p1, RuntimeObject * p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)(*((int16_t*)args[0]), (RuntimeObject *)args[1], (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(int16_t p1, int16_t p2, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), *((int16_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, void* p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], methodMetadata); return ret; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int16_t p2, void* p3, void* p4, int8_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int16_t*)args[1]), (void*)args[2], (void*)args[3], *((int8_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, int32_t p2, int32_t p3, void* p4, void* p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], (void*)args[4], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, void* p2, int32_t p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int16_t p1, void* p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int32_t p2, void* p3, int8_t p4, int8_t p5, int8_t p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), (void*)args[2], *((int8_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int32_t p2, void* p3, int8_t p4, int8_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), (void*)args[2], *((int8_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(void* p1, int32_t p2, void* p3, int8_t p4, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), (void*)args[2], *((int8_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, void* p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, void* p3, void* p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (void*)args[2], (void*)args[3], methodMetadata); return ret; } void* RuntimeInvoker_FalseKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 (*Func)(void* p1, const RuntimeMethod* method); KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 ret = ((Func)methodPointer)((void*)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int32_t p2, void* p3, int8_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), (void*)args[2], *((int8_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, void* p2, int32_t p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], *((int32_t*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int16_t p2, void* p3, int8_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int16_t*)args[1]), (void*)args[2], *((int8_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, int32_t p6, RuntimeObject * p7, RuntimeObject * p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], *((int32_t*)args[5]), (RuntimeObject *)args[6], (RuntimeObject *)args[7], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int8_t p2, int8_t p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), *((int8_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int16_t p1, int16_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int16_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int16_t p1, int16_t p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int16_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int8_t p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int16_t p1, RuntimeObject * p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int16_t p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int16_t p1, RuntimeObject * p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int16_t p1, int32_t p2, RuntimeObject * p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int16_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int8_t p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int8_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int16_t p1, int16_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int16_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, RuntimeObject * p4, int32_t p5, RuntimeObject * p6, RuntimeObject * p7, int32_t p8, int8_t p9, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int32_t*)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], *((int32_t*)args[7]), *((int8_t*)args[8]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int16_t p1, int8_t p2, int8_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int8_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int16_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int16_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int8_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int32_t p4, RuntimeObject * p5, RuntimeObject * p6, int32_t p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), (RuntimeObject *)args[4], (RuntimeObject *)args[5], *((int32_t*)args[6]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int8_t p2, int32_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), *((int32_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, void* p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, void* p2, void* p3, void* p4, void* p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], (void*)args[2], (void*)args[3], (void*)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, float p1, float p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, float p1, float p2, float p3, float p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, intptr_t p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((intptr_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(void* obj, float p1, const RuntimeMethod* method); float ret = ((Func)methodPointer)(obj, *((float*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, void* p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (void*)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueRect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*Func)(void* obj, const RuntimeMethod* method); Rect_t35B976DE901B5423C11705E156938EA27AB402CE ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (*Func)(void* obj, const RuntimeMethod* method); Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, int32_t p2, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, int32_t p2, const RuntimeMethod* method); Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, int32_t p2, const RuntimeMethod* method); Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, const RuntimeMethod* method); Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, float p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), *((float*)args[1]), *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, int32_t p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, void* p1, float p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (void*)args[0], *((float*)args[1]), *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, intptr_t p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((intptr_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CullingGroupEvent_tC36FFE61D0A4E7B31F575A1FCAEE05AC41FACA85 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, CullingGroupEvent_tC36FFE61D0A4E7B31F575A1FCAEE05AC41FACA85 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((CullingGroupEvent_tC36FFE61D0A4E7B31F575A1FCAEE05AC41FACA85 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_CullingGroupEvent_tC36FFE61D0A4E7B31F575A1FCAEE05AC41FACA85_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, CullingGroupEvent_tC36FFE61D0A4E7B31F575A1FCAEE05AC41FACA85 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((CullingGroupEvent_tC36FFE61D0A4E7B31F575A1FCAEE05AC41FACA85 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p3, float p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[2]), *((float*)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p3, float p4, const RuntimeMethod* method); ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[2]), *((float*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, void* p2, void* p3, float p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], *((float*)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TruePlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 (*Func)(void* obj, const RuntimeMethod* method); PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CameraPlayable_t3EEDF247328760DA29DC7E39B712076ED0FD9937 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, CameraPlayable_t3EEDF247328760DA29DC7E39B712076ED0FD9937 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((CameraPlayable_t3EEDF247328760DA29DC7E39B712076ED0FD9937 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0_FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 p1, FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 *)args[0]), *((FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0_FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 p1, FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 *)args[0]), *((FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E *)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_MaterialEffectPlayable_t40911576524A28294D958991232297B1728713FC (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, MaterialEffectPlayable_t40911576524A28294D958991232297B1728713FC p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((MaterialEffectPlayable_t40911576524A28294D958991232297B1728713FC *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalsePlayable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 (*Func)(const RuntimeMethod* method); Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TruePlayable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0_PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 (*Func)(void* obj, PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA p1, RuntimeObject * p2, const RuntimeMethod* method); Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 ret = ((Func)methodPointer)(obj, *((PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA *)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA_RuntimeObject_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA p2, RuntimeObject * p3, intptr_t p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA *)args[1]), (RuntimeObject *)args[2], *((intptr_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TruePlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345_PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 (*Func)(void* obj, PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA p1, RuntimeObject * p2, const RuntimeMethod* method); PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 ret = ((Func)methodPointer)(obj, *((PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA *)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TruePlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalsePlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 (*Func)(const RuntimeMethod* method); PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182_PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 p1, PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 *)args[0]), *((PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TruePlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 (*Func)(void* obj, const RuntimeMethod* method); PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalsePlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 (*Func)(const RuntimeMethod* method); PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922_PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 p1, PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 *)args[0]), *((PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TextureMixerPlayable_tC536766EC72A3E271307F13E649F22BA411B9326 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, TextureMixerPlayable_tC536766EC72A3E271307F13E649F22BA411B9326 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((TextureMixerPlayable_tC536766EC72A3E271307F13E649F22BA411B9326 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(void* obj, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 p1, Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 *)args[0]), *((Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, float p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((float*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TruePlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED (*Func)(void* obj, const RuntimeMethod* method); Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, void* p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(void* obj, float p1, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(obj, *((float*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*Func)(const RuntimeMethod* method); Rect_t35B976DE901B5423C11705E156938EA27AB402CE ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*Func)(float p1, float p2, float p3, float p4, const RuntimeMethod* method); Rect_t35B976DE901B5423C11705E156938EA27AB402CE ret = ((Func)methodPointer)(*((float*)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(void* obj, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_Rect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, const RuntimeMethod* method); Rect_t35B976DE901B5423C11705E156938EA27AB402CE ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, int8_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Rect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRect_t35B976DE901B5423C11705E156938EA27AB402CE_Rect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, const RuntimeMethod* method); Rect_t35B976DE901B5423C11705E156938EA27AB402CE ret = ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, float p2, const RuntimeMethod* method); ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((float*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, const RuntimeMethod* method); ((Func)methodPointer)(*((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, float p2, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], *((float*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(intptr_t p1, void* p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)(*((intptr_t*)args[0]), (void*)args[1], (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int32_t p1, int32_t p2, void* p3, void* p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), (void*)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(const RuntimeMethod* method); float ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 p1, RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(*((RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 *)args[0]), *((RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, RuntimeObject * p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), (RuntimeObject *)args[1], *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int32_t p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 p2, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p2, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, void* p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (void*)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, void* p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(float p1, float p2, float p3, const RuntimeMethod* method); ((Func)methodPointer)(*((float*)args[0]), *((float*)args[1]), *((float*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(float p1, float p2, const RuntimeMethod* method); ((Func)methodPointer)(*((float*)args[0]), *((float*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, float p2, float p3, float p4, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, float p2, float p3, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((float*)args[1]), *((float*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p1, const RuntimeMethod* method); ((Func)methodPointer)(*((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (*Func)(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p1, int8_t p2, const RuntimeMethod* method); Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ret = ((Func)methodPointer)(*((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[0]), *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int8_t p1, int8_t p2, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p3, float p4, const RuntimeMethod* method); ((Func)methodPointer)(*((int8_t*)args[0]), *((int8_t*)args[1]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[2]), *((float*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int8_t p1, int8_t p2, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p3, const RuntimeMethod* method); ((Func)methodPointer)(*((int8_t*)args[0]), *((int8_t*)args[1]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, int8_t p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], *((int8_t*)args[1]), (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int8_t p1, int8_t p2, void* p3, float p4, const RuntimeMethod* method); ((Func)methodPointer)(*((int8_t*)args[0]), *((int8_t*)args[1]), (void*)args[2], *((float*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*Func)(const RuntimeMethod* method); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, float p2, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((float*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, float p2, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((float*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(RuntimeObject * p1, const RuntimeMethod* method); float ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueColor_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*Func)(void* obj, const RuntimeMethod* method); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B (*Func)(int32_t p1, const RuntimeMethod* method); RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B (*Func)(RuntimeObject * p1, const RuntimeMethod* method); RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, int8_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, RuntimeObject * p3, int32_t p4, int8_t p5, int32_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int8_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, RuntimeObject * p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RuntimeObject * p2, int32_t p3, int8_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int8_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int8_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, int8_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int8_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p2, RuntimeObject * p3, int32_t p4, int32_t p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, void* p2, RuntimeObject * p3, int32_t p4, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p5, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p6, int32_t p7, int32_t p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[4]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, void* p2, RuntimeObject * p3, int32_t p4, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p5, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p6, int32_t p7, int32_t p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[4]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int8_t p8, int32_t p9, int8_t p10, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), *((int8_t*)args[7]), *((int32_t*)args[8]), *((int8_t*)args[9]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int8_t p8, int32_t p9, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), *((int8_t*)args[7]), *((int32_t*)args[8]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int32_t p8, int8_t p9, int32_t p10, int8_t p11, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), *((int8_t*)args[8]), *((int32_t*)args[9]), *((int8_t*)args[10]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int32_t p8, int8_t p9, int32_t p10, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), *((int8_t*)args[8]), *((int32_t*)args[9]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int32_t p8, int8_t p9, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), *((int8_t*)args[8]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int32_t p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p2, RuntimeObject * p3, RuntimeObject * p4, int32_t p5, int32_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p2, RuntimeObject * p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p2, RuntimeObject * p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p1, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[0]), *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p1, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p2, RuntimeObject * p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[0]), *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, void* p2, RuntimeObject * p3, int32_t p4, int32_t p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, void* p2, RuntimeObject * p3, int32_t p4, void* p5, void* p6, int32_t p7, int32_t p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), (void*)args[4], (void*)args[5], *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, void* p2, RuntimeObject * p3, int32_t p4, void* p5, void* p6, int32_t p7, int32_t p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), (void*)args[4], (void*)args[5], *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, void* p2, RuntimeObject * p3, RuntimeObject * p4, int32_t p5, int32_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int8_t p4, int8_t p5, intptr_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), *((intptr_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, intptr_t p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((intptr_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, intptr_t p6, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((intptr_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*Func)(void* obj, int32_t p1, float p2, float p3, const RuntimeMethod* method); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((float*)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, RuntimeObject * p5, int32_t p6, int32_t p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), (RuntimeObject *)args[4], *((int32_t*)args[5]), *((int32_t*)args[6]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, RuntimeObject * p5, int32_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), (RuntimeObject *)args[4], *((int32_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*Func)(void* obj, float p1, float p2, const RuntimeMethod* method); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ret = ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, void* p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), (void*)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, float p2, float p3, void* p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((float*)args[1]), *((float*)args[2]), (void*)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int8_t p3, intptr_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int8_t*)args[2]), *((intptr_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, intptr_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((intptr_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, intptr_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((intptr_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int8_t p5, int8_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 (*Func)(void* obj, const RuntimeMethod* method); RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E (*Func)(void* obj, const RuntimeMethod* method); RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E p1, const RuntimeMethod* method); ((Func)methodPointer)(*((RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int8_t p8, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), *((int8_t*)args[7]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseTouch_t806752C775BA713A91B6588A07CA98417CABC003_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Touch_t806752C775BA713A91B6588A07CA98417CABC003 (*Func)(int32_t p1, const RuntimeMethod* method); Touch_t806752C775BA713A91B6588A07CA98417CABC003 ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, const RuntimeMethod* method); ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, void* p2, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), (void*)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 p2, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 p1, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)args[0]), *((HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, float p1, float p2, float p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), *((float*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*Func)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, float p2, const RuntimeMethod* method); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ret = ((Func)methodPointer)(*((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*Func)(float p1, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p2, const RuntimeMethod* method); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ret = ((Func)methodPointer)(*((float*)args[0]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*Func)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p2, float p3, const RuntimeMethod* method); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ret = ((Func)methodPointer)(*((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*Func)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, const RuntimeMethod* method); Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ret = ((Func)methodPointer)(*((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*Func)(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p1, const RuntimeMethod* method); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ret = ((Func)methodPointer)(*((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (*Func)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, const RuntimeMethod* method); Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ret = ((Func)methodPointer)(*((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*Func)(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p1, const RuntimeMethod* method); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ret = ((Func)methodPointer)(*((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p1, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p2, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p3, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[0]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[1]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[2]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p2, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p3, const RuntimeMethod* method); Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[1]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p2, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[1]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (*Func)(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p1, const RuntimeMethod* method); Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ret = ((Func)methodPointer)(*((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (*Func)(float p1, float p2, float p3, float p4, float p5, float p6, const RuntimeMethod* method); Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ret = ((Func)methodPointer)(*((float*)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), *((float*)args[4]), *((float*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, float p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((float*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); float ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (*Func)(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p1, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA p2, const RuntimeMethod* method); Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ret = ((Func)methodPointer)(*((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[0]), *((Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (*Func)(const RuntimeMethod* method); Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, void* p2, void* p3, void* p4, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], (void*)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(float p1, float p2, float p3, float p4, float p5, float p6, void* p7, const RuntimeMethod* method); ((Func)methodPointer)(*((float*)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), *((float*)args[4]), *((float*)args[5]), (void*)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, float p2, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(float p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(*((float*)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, void* p2, float p3, void* p4, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (void*)args[1], *((float*)args[2]), (void*)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, const RuntimeMethod* method); Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (*Func)(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p1, const RuntimeMethod* method); Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ret = ((Func)methodPointer)(*((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (*Func)(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p1, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p2, float p3, const RuntimeMethod* method); Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ret = ((Func)methodPointer)(*((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[0]), *((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, const RuntimeMethod* method); Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p1, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(*((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (*Func)(float p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, const RuntimeMethod* method); Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ret = ((Func)methodPointer)(*((float*)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (*Func)(const RuntimeMethod* method); Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (*Func)(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p1, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p2, const RuntimeMethod* method); Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ret = ((Func)methodPointer)(*((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[0]), *((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(*((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p1, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[0]), *((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p1, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[0]), *((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (*Func)(float p1, float p2, float p3, const RuntimeMethod* method); Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ret = ((Func)methodPointer)(*((float*)args[0]), *((float*)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, void* p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(float p1, void* p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)(*((float*)args[0]), (void*)args[1], (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(float p1, float p2, float p3, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((float*)args[0]), *((float*)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(float p1, float p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((float*)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(float p1, float p2, void* p3, float p4, float p5, float p6, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((float*)args[0]), *((float*)args[1]), (void*)args[2], *((float*)args[3]), *((float*)args[4]), *((float*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, float p3, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, float p2, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 p1, Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 *)args[0]), *((Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p1, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[0]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*Func)(const RuntimeMethod* method); Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*Func)(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p1, float p2, const RuntimeMethod* method); Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ret = ((Func)methodPointer)(*((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*Func)(float p1, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p2, const RuntimeMethod* method); Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ret = ((Func)methodPointer)(*((float*)args[0]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p1, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[0]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, const RuntimeMethod* method); Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, const RuntimeMethod* method); Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Guid_t_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Guid_t p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Guid_t *)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Guid_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Guid_t p1, int32_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Guid_t *)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(intptr_t p1, int64_t p2, int64_t p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(*((intptr_t*)args[0]), *((int64_t*)args[1]), *((int64_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Guid_t_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Guid_t p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Guid_t *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_Guid_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Guid_t p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Guid_t *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Guid_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Guid_t p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Guid_t *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52_NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520_NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF_LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 p1, NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 p2, NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF p3, LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960 p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 *)args[0]), *((NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 *)args[1]), *((NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF *)args[2]), *((LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960 *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueJobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1_RuntimeObject_BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 (*Func)(void* obj, RuntimeObject * p1, BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F p2, const RuntimeMethod* method); JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueJobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); JobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B *)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, intptr_t p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((intptr_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, intptr_t p2, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((intptr_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 (*Func)(const RuntimeMethod* method); Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 (*Func)(int32_t p1, const RuntimeMethod* method); Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_LoadSceneParameters_tCB2FF5227064DFE794C8EAB65AEAD61838A5760A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, LoadSceneParameters_tCB2FF5227064DFE794C8EAB65AEAD61838A5760A p3, int8_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((LoadSceneParameters_tCB2FF5227064DFE794C8EAB65AEAD61838A5760A *)args[2]), *((int8_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_LoadSceneParameters_tCB2FF5227064DFE794C8EAB65AEAD61838A5760A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 (*Func)(int32_t p1, LoadSceneParameters_tCB2FF5227064DFE794C8EAB65AEAD61838A5760A p2, const RuntimeMethod* method); Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((LoadSceneParameters_tCB2FF5227064DFE794C8EAB65AEAD61838A5760A *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(*((Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)args[0]), *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 p1, const RuntimeMethod* method); ((Func)methodPointer)(*((Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 p1, Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 p2, const RuntimeMethod* method); ((Func)methodPointer)(*((Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)args[0]), *((Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, void* p3, int8_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (void*)args[2], *((int8_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int8_t p2, int8_t p3, int8_t p4, int8_t p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 (*Func)(int32_t p1, const RuntimeMethod* method); LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, intptr_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((intptr_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int64_t p1, int32_t p2, RuntimeObject * p3, intptr_t p4, const RuntimeMethod* method); ((Func)methodPointer)(*((int64_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], *((intptr_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, float p2, float p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((float*)args[1]), *((float*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, float p3, float p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((float*)args[2]), *((float*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseIntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(int32_t p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int8_t p3, int8_t p4, int8_t p5, int8_t p6, RuntimeObject * p7, int32_t p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), (RuntimeObject *)args[6], *((int32_t*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseIntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef intptr_t (*Func)(void* p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); intptr_t ret = ((Func)methodPointer)((void*)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, int8_t p3, int8_t p4, int8_t p5, int8_t p6, RuntimeObject * p7, int32_t p8, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), (RuntimeObject *)args[6], *((int32_t*)args[7]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, int8_t p3, int8_t p4, int8_t p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRangeInt_t4480955B65C346F1B3A7A8AB74693AAB84D2988D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RangeInt_t4480955B65C346F1B3A7A8AB74693AAB84D2988D (*Func)(void* obj, const RuntimeMethod* method); RangeInt_t4480955B65C346F1B3A7A8AB74693AAB84D2988D ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RangeInt_t4480955B65C346F1B3A7A8AB74693AAB84D2988D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RangeInt_t4480955B65C346F1B3A7A8AB74693AAB84D2988D p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((RangeInt_t4480955B65C346F1B3A7A8AB74693AAB84D2988D *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, int64_t p4, int64_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int64_t*)args[3]), *((int64_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseRuntimeObject_IntPtr_t_IntPtr_t_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(intptr_t p1, intptr_t p2, intptr_t p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((intptr_t*)args[0]), *((intptr_t*)args[1]), *((intptr_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p4, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[3]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (*Func)(void* obj, const RuntimeMethod* method); Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, float p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((float*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, float p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((float*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*Func)(RuntimeObject * p1, const RuntimeMethod* method); Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(RuntimeObject * p1, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*Func)(void* obj, const RuntimeMethod* method); Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 (*Func)(void* obj, const RuntimeMethod* method); Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, void* p2, void* p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], (void*)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, int32_t p4, int32_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 p1, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p2, float p3, int32_t p4, int32_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 *)args[0]), *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[1]), *((float*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, void* p3, float p4, int32_t p5, int32_t p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), (void*)args[2], *((float*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 p1, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p2, float p3, void* p4, int32_t p5, int32_t p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 *)args[0]), *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[1]), *((float*)args[2]), (void*)args[3], *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, RuntimeObject * p3, float p4, int32_t p5, int32_t p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), (RuntimeObject *)args[2], *((float*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 p1, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p2, RuntimeObject * p3, float p4, int32_t p5, int32_t p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 *)args[0]), *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[1]), (RuntimeObject *)args[2], *((float*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p4, float p5, void* p6, int32_t p7, int32_t p8, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[3]), *((float*)args[4]), (void*)args[5], *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p4, void* p5, float p6, int32_t p7, int32_t p8, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[3]), (void*)args[4], *((float*)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, float p2, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p3, void* p4, float p5, int32_t p6, int32_t p7, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((float*)args[1]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[2]), (void*)args[3], *((float*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, void* p2, float p3, int32_t p4, int32_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], *((float*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, void* p2, float p3, void* p4, int32_t p5, int32_t p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], *((float*)args[2]), (void*)args[3], *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, void* p2, RuntimeObject * p3, float p4, int32_t p5, int32_t p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], (RuntimeObject *)args[2], *((float*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, void* p2, float p3, void* p4, float p5, void* p6, int32_t p7, int32_t p8, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], *((float*)args[2]), (void*)args[3], *((float*)args[4]), (void*)args[5], *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalsePhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 (*Func)(const RuntimeMethod* method); PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, int32_t p4, int32_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, int32_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, void* p3, float p4, int32_t p5, int32_t p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), (void*)args[2], *((float*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, void* p3, float p4, int32_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), (void*)args[2], *((float*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, void* p3, float p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), (void*)args[2], *((float*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, float p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), *((float*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, float p2, int32_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), *((float*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, float p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, void* p2, float p3, int32_t p4, int32_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), (void*)args[1], *((float*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, void* p2, float p3, int32_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), (void*)args[1], *((float*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, void* p2, float p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), (void*)args[1], *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, void* p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, float p2, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p3, void* p4, float p5, int32_t p6, int32_t p7, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((float*)args[1]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[2]), (void*)args[3], *((float*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, float p2, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p3, void* p4, float p5, int32_t p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((float*)args[1]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[2]), (void*)args[3], *((float*)args[4]), *((int32_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, float p2, float p3, int32_t p4, int32_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), *((float*)args[1]), *((float*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, float p2, void* p3, float p4, int32_t p5, int32_t p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), *((float*)args[1]), (void*)args[2], *((float*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, float p2, void* p3, float p4, int32_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), *((float*)args[1]), (void*)args[2], *((float*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 p1, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p2, float p3, int32_t p4, int32_t p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 *)args[0]), *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[1]), *((float*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, int32_t p4, int32_t p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, float p2, int32_t p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), *((float*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, float p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), *((float*)args[1]), *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, float p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), *((float*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, RuntimeObject * p2, float p3, int32_t p4, int32_t p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), (RuntimeObject *)args[1], *((float*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, RuntimeObject * p2, float p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), (RuntimeObject *)args[1], *((float*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, RuntimeObject * p2, float p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), (RuntimeObject *)args[1], *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, RuntimeObject * p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, RuntimeObject * p3, float p4, int32_t p5, int32_t p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), (RuntimeObject *)args[2], *((float*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, RuntimeObject * p3, float p4, int32_t p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), (RuntimeObject *)args[2], *((float*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, RuntimeObject * p3, float p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), (RuntimeObject *)args[2], *((float*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, RuntimeObject * p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p3, float p4, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p5, float p6, int32_t p7, int32_t p8, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[2]), *((float*)args[3]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[4]), *((float*)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p4, float p5, int32_t p6, int32_t p7, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[3]), *((float*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p4, float p5, int32_t p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[3]), *((float*)args[4]), *((int32_t*)args[5]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, void* p2, float p3, int32_t p4, int32_t p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], *((float*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, void* p2, void* p3, float p4, void* p5, float p6, int32_t p7, int32_t p8, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], *((float*)args[3]), (void*)args[4], *((float*)args[5]), *((int32_t*)args[6]), *((int32_t*)args[7]), methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68_TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 (*Func)(void* obj, TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 p1, const RuntimeMethod* method); TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 ret = ((Func)methodPointer)(obj, *((TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(void* obj, RuntimeObject * p1, TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 *)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p3, int32_t p4, float p5, float p6, int32_t p7, int8_t p8, int8_t p9, int32_t p10, int32_t p11, int32_t p12, int32_t p13, int8_t p14, int32_t p15, float p16, float p17, float p18, float p19, int8_t p20, int8_t p21, void* p22, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[2]), *((int32_t*)args[3]), *((float*)args[4]), *((float*)args[5]), *((int32_t*)args[6]), *((int8_t*)args[7]), *((int8_t*)args[8]), *((int32_t*)args[9]), *((int32_t*)args[10]), *((int32_t*)args[11]), *((int32_t*)args[12]), *((int8_t*)args[13]), *((int32_t*)args[14]), *((float*)args[15]), *((float*)args[16]), *((float*)args[17]), *((float*)args[18]), *((int8_t*)args[19]), *((int8_t*)args[20]), (void*)args[21], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p3, int32_t p4, float p5, float p6, int32_t p7, int8_t p8, int8_t p9, int32_t p10, int32_t p11, int32_t p12, int32_t p13, int8_t p14, int32_t p15, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p16, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p17, int8_t p18, int8_t p19, void* p20, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[2]), *((int32_t*)args[3]), *((float*)args[4]), *((float*)args[5]), *((int32_t*)args[6]), *((int8_t*)args[7]), *((int8_t*)args[8]), *((int32_t*)args[9]), *((int32_t*)args[10]), *((int32_t*)args[11]), *((int32_t*)args[12]), *((int8_t*)args[13]), *((int32_t*)args[14]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[15]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[16]), *((int8_t*)args[17]), *((int8_t*)args[18]), (void*)args[19], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, void* p3, int32_t p4, float p5, float p6, int32_t p7, int8_t p8, int8_t p9, int32_t p10, int32_t p11, int32_t p12, int32_t p13, int8_t p14, int32_t p15, float p16, float p17, float p18, float p19, int8_t p20, int8_t p21, void* p22, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], *((int32_t*)args[3]), *((float*)args[4]), *((float*)args[5]), *((int32_t*)args[6]), *((int8_t*)args[7]), *((int8_t*)args[8]), *((int32_t*)args[9]), *((int32_t*)args[10]), *((int32_t*)args[11]), *((int32_t*)args[12]), *((int8_t*)args[13]), *((int32_t*)args[14]), *((float*)args[15]), *((float*)args[16]), *((float*)args[17]), *((float*)args[18]), *((int8_t*)args[19]), *((int8_t*)args[20]), (void*)args[21], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int8_t p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, float p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((float*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AudioClipPlayable_t6094311F945E65BC29F85B23A81E8426D596553C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, AudioClipPlayable_t6094311F945E65BC29F85B23A81E8426D596553C p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((AudioClipPlayable_t6094311F945E65BC29F85B23A81E8426D596553C *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AudioMixerPlayable_t2C445EB39F9111CCFF7E2E1F813B22007862FA9F (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, AudioMixerPlayable_t2C445EB39F9111CCFF7E2E1F813B22007862FA9F p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((AudioMixerPlayable_t2C445EB39F9111CCFF7E2E1F813B22007862FA9F *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int32_t p1, intptr_t p2, int32_t p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((intptr_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, intptr_t p2, int32_t p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((intptr_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*Func)(int32_t p1, int32_t p2, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, RuntimeObject * p7, int8_t p8, const RuntimeMethod* method); Rect_t35B976DE901B5423C11705E156938EA27AB402CE ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], *((int8_t*)args[7]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, const RuntimeMethod* method); ((Func)methodPointer)(*((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, int8_t p4, float p5, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int8_t*)args[3]), *((float*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, int8_t p4, float p5, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p6, float p7, float p8, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int8_t*)args[3]), *((float*)args[4]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[5]), *((float*)args[6]), *((float*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, int8_t p4, float p5, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p6, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p7, float p8, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int8_t*)args[3]), *((float*)args[4]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[5]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[6]), *((float*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, int8_t p4, float p5, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p6, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p7, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p8, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int8_t*)args[3]), *((float*)args[4]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[5]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[6]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, int32_t p2, float p3, void* p4, void* p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((int32_t*)args[1]), *((float*)args[2]), (void*)args[3], (void*)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, RuntimeObject * p3, int32_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, int32_t p2, RuntimeObject * p3, int8_t p4, int32_t p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int8_t*)args[3]), *((int32_t*)args[4]), (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, int32_t p2, RuntimeObject * p3, int8_t p4, int32_t p5, RuntimeObject * p6, RuntimeObject * p7, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int8_t*)args[3]), *((int32_t*)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, int32_t p2, RuntimeObject * p3, int8_t p4, int32_t p5, RuntimeObject * p6, RuntimeObject * p7, int16_t p8, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int8_t*)args[3]), *((int32_t*)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], *((int16_t*)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, int32_t p2, RuntimeObject * p3, int8_t p4, int32_t p5, RuntimeObject * p6, RuntimeObject * p7, int16_t p8, RuntimeObject * p9, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int8_t*)args[3]), *((int32_t*)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], *((int16_t*)args[7]), (RuntimeObject *)args[8], methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, int8_t p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((int8_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, int8_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((int8_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, int32_t p2, int8_t p3, int8_t p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((int32_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, int32_t p2, int8_t p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((int32_t*)args[1]), *((int8_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, float p2, float p3, float p4, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, float p2, float p3, float p4, float p5, RuntimeObject * p6, RuntimeObject * p7, int8_t p8, int32_t p9, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), *((float*)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], *((int8_t*)args[7]), *((int32_t*)args[8]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, float p2, float p3, float p4, float p5, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), *((float*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, float p2, float p3, float p4, float p5, RuntimeObject * p6, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), *((float*)args[4]), (RuntimeObject *)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int32_t p1, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, float p2, float p3, float p4, float p5, RuntimeObject * p6, RuntimeObject * p7, RuntimeObject * p8, RuntimeObject * p9, int8_t p10, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), *((float*)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], (RuntimeObject *)args[7], (RuntimeObject *)args[8], *((int8_t*)args[9]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, RuntimeObject * p3, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p4, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Rect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p3, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p3, int8_t p4, int8_t p5, RuntimeObject * p6, RuntimeObject * p7, RuntimeObject * p8, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], (RuntimeObject *)args[7], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*Func)(int32_t p1, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); Rect_t35B976DE901B5423C11705E156938EA27AB402CE ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*Func)(int32_t p1, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, int8_t p7, const RuntimeMethod* method); Rect_t35B976DE901B5423C11705E156938EA27AB402CE ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], *((int8_t*)args[6]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, int32_t p5, float p6, float p7, RuntimeObject * p8, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int32_t*)args[4]), *((float*)args[5]), *((float*)args[6]), (RuntimeObject *)args[7], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, int32_t p2, void* p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, RuntimeObject * p7, int8_t p8, void* p9, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), (void*)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], *((int8_t*)args[7]), (void*)args[8], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(*((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, void* p2, void* p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int8_t p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int8_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int8_t p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int8_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*Func)(int32_t p1, const RuntimeMethod* method); Rect_t35B976DE901B5423C11705E156938EA27AB402CE ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p2, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); Rect_t35B976DE901B5423C11705E156938EA27AB402CE ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, intptr_t p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((intptr_t*)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(intptr_t p1, const RuntimeMethod* method); float ret = ((Func)methodPointer)(*((intptr_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int8_t p3, int8_t p4, int8_t p5, int8_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int8_t p3, int8_t p4, int8_t p5, int8_t p6, int8_t p7, int32_t p8, int32_t p9, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p10, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p11, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), *((int8_t*)args[6]), *((int32_t*)args[7]), *((int32_t*)args[8]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[9]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[10]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(void* obj, RuntimeObject * p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(void* obj, RuntimeObject * p1, float p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Rect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p2, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, int8_t p2, int8_t p3, int8_t p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((int8_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, int8_t p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, int8_t p4, int8_t p5, int8_t p6, int8_t p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), *((int8_t*)args[6]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int8_t p3, int8_t p4, int32_t p5, int32_t p6, int8_t p7, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int8_t*)args[2]), *((int8_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int8_t*)args[6]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, int32_t p4, int32_t p5, int8_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int8_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, RuntimeObject * p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, RuntimeObject * p2, int32_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, RuntimeObject * p2, int32_t p3, void* p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), (void*)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, RuntimeObject * p2, int8_t p3, int8_t p4, int8_t p5, int8_t p6, int8_t p7, int32_t p8, int32_t p9, void* p10, void* p11, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), *((int8_t*)args[6]), *((int32_t*)args[7]), *((int32_t*)args[8]), (void*)args[9], (void*)args[10], methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, void* p1, RuntimeObject * p2, void* p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (void*)args[0], (RuntimeObject *)args[1], (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, void* p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (void*)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int32_t p1, int32_t p2, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int32_t p1, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(int32_t p1, intptr_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((intptr_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int32_t p1, int32_t p2, void* p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, float p1, float p2, float p3, float p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, float p1, float p2, float p3, float p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, float p2, float p3, float p4, float p5, RuntimeObject * p6, RuntimeObject * p7, int8_t p8, int32_t p9, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), *((float*)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], *((int8_t*)args[7]), *((int32_t*)args[8]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, int8_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((int8_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, float p3, int32_t p4, const RuntimeMethod* method); RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((float*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, float p3, ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 p4, const RuntimeMethod* method); RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((float*)args[2]), *((ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 *)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*Func)(PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p3, float p4, ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 p5, const RuntimeMethod* method); RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ret = ((Func)methodPointer)(*((PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[2]), *((float*)args[3]), *((ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 *)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, float p3, ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((float*)args[2]), *((ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p3, float p4, ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 p5, RuntimeObject * p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[2]), *((float*)args[3]), *((ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 *)args[4]), (RuntimeObject *)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, float p2, RuntimeObject * p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), *((float*)args[1]), (RuntimeObject *)args[2], *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p3, float p4, int32_t p5, RuntimeObject * p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[2]), *((float*)args[3]), *((int32_t*)args[4]), (RuntimeObject *)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, void* p2, void* p3, float p4, void* p5, void* p6, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], *((float*)args[3]), (void*)args[4], (void*)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, void* p2, void* p3, float p4, void* p5, RuntimeObject * p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], *((float*)args[3]), (void*)args[4], (RuntimeObject *)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* p1, void* p2, void* p3, float p4, int32_t p5, RuntimeObject * p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], *((float*)args[3]), *((int32_t*)args[4]), (RuntimeObject *)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalsePhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 (*Func)(const RuntimeMethod* method); PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, float p3, const RuntimeMethod* method); RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, float p3, int32_t p4, const RuntimeMethod* method); RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((float*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, float p3, int32_t p4, float p5, const RuntimeMethod* method); RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((float*)args[2]), *((int32_t*)args[3]), *((float*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, float p3, int32_t p4, float p5, float p6, const RuntimeMethod* method); RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((float*)args[2]), *((int32_t*)args[3]), *((float*)args[4]), *((float*)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 p3, RuntimeObject * p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 *)args[2]), (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 p3, RuntimeObject * p4, float p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 *)args[2]), (RuntimeObject *)args[3], *((float*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p3, float p4, int32_t p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[2]), *((float*)args[3]), *((int32_t*)args[4]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* p1, void* p2, void* p3, float p4, int32_t p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], (void*)args[2], *((float*)args[3]), *((int32_t*)args[4]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 (*Func)(int32_t p1, float p2, float p3, const RuntimeMethod* method); ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4 ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((float*)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A *)args[1]), *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A *)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A *)args[1]), *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A p2, int8_t p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A *)args[1]), *((int8_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A *)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A p3, int8_t p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A *)args[2]), *((int8_t*)args[3]), (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, RuntimeObject * p3, int8_t p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), (RuntimeObject *)args[2], *((int8_t*)args[3]), methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(intptr_t p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(*((intptr_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, int32_t p2, int64_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), *((int64_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B (*Func)(void* obj, const RuntimeMethod* method); TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056 p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056 *)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E p1, int32_t p2, Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E *)args[0]), *((int32_t*)args[1]), *((Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 *)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 *)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 p2, int32_t p3, AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 *)args[1]), *((int32_t*)args[2]), *((AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B *)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationClipPlayable_t6EF38F9EED94096D4793638AFC8D11D285B43183 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, AnimationClipPlayable_t6EF38F9EED94096D4793638AFC8D11D285B43183 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((AnimationClipPlayable_t6EF38F9EED94096D4793638AFC8D11D285B43183 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, float p2, float p3, float p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueAnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, float p2, int32_t p3, float p4, float p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((float*)args[1]), *((int32_t*)args[2]), *((float*)args[3]), *((float*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, float p2, int32_t p3, float p4, float p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((float*)args[1]), *((int32_t*)args[2]), *((float*)args[3]), *((float*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, void* p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (void*)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, float p4, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), *((float*)args[3]), *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_EmitParams_t03557E552852EC6B71876CD05C4098733702A219_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, EmitParams_t03557E552852EC6B71876CD05C4098733702A219 p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((EmitParams_t03557E552852EC6B71876CD05C4098733702A219 *)args[0]), *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 p1, RuntimeObject * p2, void* p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 *)args[0]), (RuntimeObject *)args[1], (void*)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 *)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueTileData_t8A50A35CAFD87C12E27D7E596D968C9114A4CBB5_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TileData_t8A50A35CAFD87C12E27D7E596D968C9114A4CBB5 (*Func)(void* obj, Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 p1, RuntimeObject * p2, const RuntimeMethod* method); TileData_t8A50A35CAFD87C12E27D7E596D968C9114A4CBB5 ret = ((Func)methodPointer)(obj, *((Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 *)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 p1, RuntimeObject * p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 *)args[0]), (RuntimeObject *)args[1], (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTileAnimationData_t2A9C81AD1F3E916C2DE292A6F3953FC8C38EFDA8_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TileAnimationData_t2A9C81AD1F3E916C2DE292A6F3953FC8C38EFDA8 (*Func)(void* obj, Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 p1, RuntimeObject * p2, const RuntimeMethod* method); TileAnimationData_t2A9C81AD1F3E916C2DE292A6F3953FC8C38EFDA8 ret = ((Func)methodPointer)(obj, *((Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 *)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(void* obj, RuntimeObject * p1, float p2, float p3, const RuntimeMethod* method); float ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((float*)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, float p2, float p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((float*)args[1]), *((float*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueYogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef YogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23 (*Func)(void* obj, RuntimeObject * p1, float p2, int32_t p3, float p4, int32_t p5, const RuntimeMethod* method); YogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((float*)args[1]), *((int32_t*)args[2]), *((float*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, float p2, int32_t p3, float p4, int32_t p5, RuntimeObject * p6, RuntimeObject * p7, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((float*)args[1]), *((int32_t*)args[2]), *((float*)args[3]), *((int32_t*)args[4]), (RuntimeObject *)args[5], (RuntimeObject *)args[6], methodMetadata); return ret; } void* RuntimeInvoker_TrueYogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef YogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); YogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, float p2, int32_t p3, float p4, int32_t p5, intptr_t p6, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((float*)args[1]), *((int32_t*)args[2]), *((float*)args[3]), *((int32_t*)args[4]), *((intptr_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, float p2, float p3, intptr_t p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((float*)args[1]), *((float*)args[2]), *((intptr_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseYogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef YogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23 (*Func)(RuntimeObject * p1, float p2, int32_t p3, float p4, int32_t p5, const RuntimeMethod* method); YogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((float*)args[1]), *((int32_t*)args[2]), *((float*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(RuntimeObject * p1, float p2, float p3, const RuntimeMethod* method); float ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((float*)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, RuntimeObject * p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, RuntimeObject * p7, RuntimeObject * p8, RuntimeObject * p9, RuntimeObject * p10, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], (RuntimeObject *)args[7], (RuntimeObject *)args[8], (RuntimeObject *)args[9], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, RuntimeObject * p7, RuntimeObject * p8, RuntimeObject * p9, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], (RuntimeObject *)args[7], (RuntimeObject *)args[8], methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, RuntimeObject * p3, void* p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), (RuntimeObject *)args[2], (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 (*Func)(RuntimeObject * p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int8_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int8_t p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int8_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*Func)(RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); Rect_t35B976DE901B5423C11705E156938EA27AB402CE ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, RuntimeObject * p2, RuntimeObject * p3, void* p4, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (void*)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, int64_t p2, int64_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((int64_t*)args[1]), *((int64_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int64_t p2, int64_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int64_t*)args[1]), *((int64_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, int64_t p2, int64_t p3, int8_t p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int64_t*)args[1]), *((int64_t*)args[2]), *((int8_t*)args[3]), (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int8_t p1, int8_t p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(*((int8_t*)args[0]), *((int8_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6_InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73_Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 p1, InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 p2, Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 *)args[0]), *((InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 *)args[1]), *((Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 *)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6_InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73_Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 p1, InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 p2, Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 *)args[0]), *((InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 *)args[1]), *((Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 *)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6_InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73_Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 p1, InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 p2, Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 p3, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 *)args[0]), *((InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73 *)args[1]), *((Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 *)args[2]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, int32_t p2, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 *)args[0]), *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, intptr_t p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((intptr_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalsePhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC (*Func)(int64_t p1, const RuntimeMethod* method); PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC ret = ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int64_t p2, intptr_t p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int64_t*)args[1]), *((intptr_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC *)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 p4, int64_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 *)args[3]), *((int64_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, float p6, int8_t p7, int8_t p8, float p9, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], *((float*)args[5]), *((int8_t*)args[6]), *((int8_t*)args[7]), *((float*)args[8]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF p1, int32_t p2, Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 p3, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF *)args[0]), *((int32_t*)args[1]), *((Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 *)args[2]), *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF p1, int32_t p2, Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 p3, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF *)args[0]), *((int32_t*)args[1]), *((Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 *)args[2]), *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[3]), (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66 p1, int8_t p2, float p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66 *)args[0]), *((int8_t*)args[1]), *((float*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66 p1, int8_t p2, float p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66 *)args[0]), *((int8_t*)args[1]), *((float*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_FalseVideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef VideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55 (*Func)(int64_t p1, const RuntimeMethod* method); VideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55 ret = ((Func)methodPointer)(*((int64_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, VideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((VideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_VideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, VideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((VideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, intptr_t p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((intptr_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VideoClipPlayable_t4B7997FDB02C74F9E88F37574F0F4F9DE08CCC12 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, VideoClipPlayable_t4B7997FDB02C74F9E88F37574F0F4F9DE08CCC12 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((VideoClipPlayable_t4B7997FDB02C74F9E88F37574F0F4F9DE08CCC12 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, double p2, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((double*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int64_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int64_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, double p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((double*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, double p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((double*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, int8_t p7, int8_t p8, int8_t p9, int8_t p10, int32_t p11, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], *((int8_t*)args[6]), *((int8_t*)args[7]), *((int8_t*)args[8]), *((int8_t*)args[9]), *((int32_t*)args[10]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, int32_t p2, void* p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), (void*)args[2], *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, void* p1, int32_t p2, void* p3, int32_t p4, int8_t p5, RuntimeObject * p6, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (void*)args[0], *((int32_t*)args[1]), (void*)args[2], *((int32_t*)args[3]), *((int8_t*)args[4]), (RuntimeObject *)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, void* p2, void* p3, void* p4, void* p5, void* p6, void* p7, RuntimeObject * p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], (void*)args[2], (void*)args[3], (void*)args[4], (void*)args[5], (void*)args[6], (RuntimeObject *)args[7], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, void* p2, void* p3, void* p4, void* p5, void* p6, void* p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], (void*)args[2], (void*)args[3], (void*)args[4], (void*)args[5], (void*)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, void* p2, void* p3, void* p4, void* p5, void* p6, RuntimeObject * p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (void*)args[1], (void*)args[2], (void*)args[3], (void*)args[4], (void*)args[5], (RuntimeObject *)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int32_t p3, RuntimeObject * p4, int32_t p5, int8_t p6, RuntimeObject * p7, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], *((int32_t*)args[4]), *((int8_t*)args[5]), (RuntimeObject *)args[6], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, RuntimeObject * p2, void* p3, void* p4, RuntimeObject * p5, void* p6, void* p7, RuntimeObject * p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], (RuntimeObject *)args[1], (void*)args[2], (void*)args[3], (RuntimeObject *)args[4], (void*)args[5], (void*)args[6], (RuntimeObject *)args[7], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, void* p2, void* p3, RuntimeObject * p4, void* p5, void* p6, RuntimeObject * p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], (void*)args[2], (RuntimeObject *)args[3], (void*)args[4], (void*)args[5], (RuntimeObject *)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p1, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[0]), *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (*Func)(void* obj, const RuntimeMethod* method); RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueTouch_t806752C775BA713A91B6588A07CA98417CABC003_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Touch_t806752C775BA713A91B6588A07CA98417CABC003 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Touch_t806752C775BA713A91B6588A07CA98417CABC003 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (*Func)(RuntimeObject * p1, const RuntimeMethod* method); RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(float p1, float p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((float*)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(float p1, float p2, float p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((float*)args[0]), *((float*)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, float p1, float p2, float p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), *((float*)args[2]), methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, void* p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (void*)args[1], *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Touch_t806752C775BA713A91B6588A07CA98417CABC003_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Touch_t806752C775BA713A91B6588A07CA98417CABC003 p1, void* p2, void* p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Touch_t806752C775BA713A91B6588A07CA98417CABC003 *)args[0]), (void*)args[1], (void*)args[2], methodMetadata); return ret; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, float p3, int8_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((float*)args[2]), *((int8_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 (*Func)(void* obj, const RuntimeMethod* method); LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 p1, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)args[0]), *((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (*Func)(const RuntimeMethod* method); ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA p1, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(*((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)args[0]), *((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, float p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((float*)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, float p2, int8_t p3, int8_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), *((float*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, float p2, int8_t p3, int8_t p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), *((float*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*Func)(float p1, const RuntimeMethod* method); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ret = ((Func)methodPointer)(*((float*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, float p1, float p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*Func)(void* obj, int8_t p1, const RuntimeMethod* method); Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[2]), (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p3, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p4, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p5, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p6, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[2]), *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[3]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[4]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Rect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*Func)(void* obj, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p1, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p2, const RuntimeMethod* method); Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ret = ((Func)methodPointer)(obj, *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[0]), *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, float p3, int8_t p4, int32_t p5, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((float*)args[2]), *((int8_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, float p2, float p3, int8_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((float*)args[1]), *((float*)args[2]), *((int8_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Rect_t35B976DE901B5423C11705E156938EA27AB402CE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p2, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, RuntimeObject * p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int32_t p1, RuntimeObject * p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int32_t p1, int8_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int8_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int16_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int16_t p3, const RuntimeMethod* method); int16_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int16_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int16_t p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int16_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Rect_t35B976DE901B5423C11705E156938EA27AB402CE p1, int8_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)args[0]), *((int8_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 (*Func)(const RuntimeMethod* method); Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, float p1, int8_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((float*)args[0]), *((int8_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, float p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((float*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, float p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((float*)args[0]), *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int8_t p1, int8_t p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(*((int8_t*)args[0]), *((int8_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_FalseBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 (*Func)(RuntimeObject * p1, void* p2, const RuntimeMethod* method); Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(void* p1, void* p2, int8_t p3, int8_t p4, int32_t p5, void* p6, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)((void*)args[0], (void*)args[1], *((int8_t*)args[2]), *((int8_t*)args[3]), *((int32_t*)args[4]), (void*)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 (*Func)(void* obj, const RuntimeMethod* method); Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (*Func)(void* obj, const RuntimeMethod* method); ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A (*Func)(void* obj, const RuntimeMethod* method); SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(RuntimeObject * p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, int8_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), *((int8_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), methodMetadata); return ret; } void* RuntimeInvoker_TrueTextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, const RuntimeMethod* method); TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68 ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(int32_t p1, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(*((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*Func)(RuntimeObject * p1, void* p2, const RuntimeMethod* method); Rect_t35B976DE901B5423C11705E156938EA27AB402CE ret = ((Func)methodPointer)((RuntimeObject *)args[0], (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Rect_t35B976DE901B5423C11705E156938EA27AB402CE (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); Rect_t35B976DE901B5423C11705E156938EA27AB402CE ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(void* obj, float p1, int32_t p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)(obj, *((float*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int8_t p3, int8_t p4, void* p5, void* p6, void* p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), (void*)args[4], (void*)args[5], (void*)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(void* obj, int32_t p1, float p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, float p1, float p2, float p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), *((float*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, float p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((float*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, float p3, float p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((float*)args[2]), *((float*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, int32_t p2, float p3, float p4, float p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((float*)args[2]), *((float*)args[3]), *((float*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(RuntimeObject * p1, RuntimeObject * p2, float p3, const RuntimeMethod* method); float ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(RuntimeObject * p1, RuntimeObject * p2, float p3, void* p4, const RuntimeMethod* method); float ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((float*)args[2]), (void*)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, void* p2, float p3, int32_t p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), (void*)args[1], *((float*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, void* p2, float p3, int32_t p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), (void*)args[1], *((float*)args[2]), *((int32_t*)args[3]), (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, void* p1, RuntimeObject * p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (void*)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, float p3, int32_t p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((float*)args[2]), *((int32_t*)args[3]), (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_TrueRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, float p2, int32_t p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), *((float*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, RuntimeObject * p2, float p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), (RuntimeObject *)args[1], *((float*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 p1, RuntimeObject * p2, float p3, int32_t p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)args[0]), (RuntimeObject *)args[1], *((float*)args[2]), *((int32_t*)args[3]), (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[0]), *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p2, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p3, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p4, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p5, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p6, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p7, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p8, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[1]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[2]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[3]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[4]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[5]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[6]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[7]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p2, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p3, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p4, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p5, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[1]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[2]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[3]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[4]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p2, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[1]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p2, int32_t p3, int32_t p4, float p5, float p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((float*)args[4]), *((float*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int64_t p3, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int64_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int64_t (*Func)(int8_t p1, int8_t p2, int8_t p3, int8_t p4, int8_t p5, const RuntimeMethod* method); int64_t ret = ((Func)methodPointer)(*((int8_t*)args[0]), *((int8_t*)args[1]), *((int8_t*)args[2]), *((int8_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int64_t p3, int64_t p4, int8_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int64_t*)args[2]), *((int64_t*)args[3]), *((int8_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, void* p2, void* p3, void* p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], (void*)args[2], (void*)args[3], *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_ClipPlanePoints_t20AE479CE67DB28A40559835C3B4E444F20CD717_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, ClipPlanePoints_t20AE479CE67DB28A40559835C3B4E444F20CD717 p2, void* p3, float p4, LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 p5, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((ClipPlanePoints_t20AE479CE67DB28A40559835C3B4E444F20CD717 *)args[1]), (void*)args[2], *((float*)args[3]), *((LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 *)args[4]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[5]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(int32_t p1, float p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(*((int32_t*)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, float p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((float*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(void* obj, float p1, float p2, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*Func)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, const RuntimeMethod* method); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ret = ((Func)methodPointer)(*((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, float p2, float p3, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(*((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((float*)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(*((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p2, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p3, void* p4, void* p5, void* p6, const RuntimeMethod* method); ((Func)methodPointer)(*((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[1]), *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[2]), (void*)args[3], (void*)args[4], (void*)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int8_t p3, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p4, float p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[3]), *((float*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, void* p3, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p4, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (void*)args[2], *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[3]), *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[4]), (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p2, int32_t p3, int32_t p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, float p2, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p3, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((float*)args[1]), *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[2]), *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[3]), (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_TrueFrame_t6E5425A32B627B657C530E84626768BC9F53006E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Frame_t6E5425A32B627B657C530E84626768BC9F53006E (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Frame_t6E5425A32B627B657C530E84626768BC9F53006E ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(void* obj, float p1, float p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef float (*Func)(void* obj, int32_t p1, int32_t p2, const RuntimeMethod* method); float ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, const RuntimeMethod* method); Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57 (*Func)(void* obj, const RuntimeMethod* method); Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSettings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57 (*Func)(const RuntimeMethod* method); Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF (*Func)(void* obj, const RuntimeMethod* method); Settings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseFxaaSettings_t49E6F1CF29002CE1ED38E0C6241ACF3EAD5EE52E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef FxaaSettings_t49E6F1CF29002CE1ED38E0C6241ACF3EAD5EE52E (*Func)(const RuntimeMethod* method); FxaaSettings_t49E6F1CF29002CE1ED38E0C6241ACF3EAD5EE52E ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseTaaSettings_tCFEF81D638B351BFF56346922415F70DE5BD1926 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TaaSettings_tCFEF81D638B351BFF56346922415F70DE5BD1926 (*Func)(const RuntimeMethod* method); TaaSettings_tCFEF81D638B351BFF56346922415F70DE5BD1926 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSettings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF (*Func)(const RuntimeMethod* method); Settings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A (*Func)(void* obj, const RuntimeMethod* method); Settings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseBloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0 (*Func)(const RuntimeMethod* method); BloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseLensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef LensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A (*Func)(const RuntimeMethod* method); LensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSettings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A (*Func)(const RuntimeMethod* method); Settings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_t897B8FE3086F458E5E210D35F39B494A88494591 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t897B8FE3086F458E5E210D35F39B494A88494591 (*Func)(void* obj, const RuntimeMethod* method); Settings_t897B8FE3086F458E5E210D35F39B494A88494591 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t897B8FE3086F458E5E210D35F39B494A88494591 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_t897B8FE3086F458E5E210D35F39B494A88494591 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_t897B8FE3086F458E5E210D35F39B494A88494591 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseDepthSettings_tC484EB6F5B3327CF16840634323AF5CFFEE126EC (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DepthSettings_tC484EB6F5B3327CF16840634323AF5CFFEE126EC (*Func)(const RuntimeMethod* method); DepthSettings_tC484EB6F5B3327CF16840634323AF5CFFEE126EC ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseMotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef MotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256 (*Func)(const RuntimeMethod* method); MotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSettings_t897B8FE3086F458E5E210D35F39B494A88494591 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t897B8FE3086F458E5E210D35F39B494A88494591 (*Func)(const RuntimeMethod* method); Settings_t897B8FE3086F458E5E210D35F39B494A88494591 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_t3B36530BC44129694D3A136E05855736FAB00743 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t3B36530BC44129694D3A136E05855736FAB00743 (*Func)(void* obj, const RuntimeMethod* method); Settings_t3B36530BC44129694D3A136E05855736FAB00743 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t3B36530BC44129694D3A136E05855736FAB00743 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_t3B36530BC44129694D3A136E05855736FAB00743 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_t3B36530BC44129694D3A136E05855736FAB00743 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSettings_t3B36530BC44129694D3A136E05855736FAB00743 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t3B36530BC44129694D3A136E05855736FAB00743 (*Func)(const RuntimeMethod* method); Settings_t3B36530BC44129694D3A136E05855736FAB00743 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A (*Func)(void* obj, const RuntimeMethod* method); Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseTonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC (*Func)(const RuntimeMethod* method); TonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseBasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49 (*Func)(const RuntimeMethod* method); BasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B (*Func)(const RuntimeMethod* method); ChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseLogWheelsSettings_t6946B0985F2ECDA5D31B31D9DC70072ED0819EF5 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef LogWheelsSettings_t6946B0985F2ECDA5D31B31D9DC70072ED0819EF5 (*Func)(const RuntimeMethod* method); LogWheelsSettings_t6946B0985F2ECDA5D31B31D9DC70072ED0819EF5 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseLinearWheelsSettings_tA2E68F6BF46B81203AF36DCB129409CAB51EC704 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef LinearWheelsSettings_tA2E68F6BF46B81203AF36DCB129409CAB51EC704 (*Func)(const RuntimeMethod* method); LinearWheelsSettings_tA2E68F6BF46B81203AF36DCB129409CAB51EC704 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8 (*Func)(const RuntimeMethod* method); ColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseCurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E (*Func)(const RuntimeMethod* method); CurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSettings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A (*Func)(const RuntimeMethod* method); Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_t5F3D078AA124139ACFD469537C724B81EECAE64E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E (*Func)(void* obj, const RuntimeMethod* method); Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSettings_t5F3D078AA124139ACFD469537C724B81EECAE64E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E (*Func)(const RuntimeMethod* method); Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724 (*Func)(void* obj, const RuntimeMethod* method); Settings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSettings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724 (*Func)(const RuntimeMethod* method); Settings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_t8A8457FAF6223DD887350322DC6D951891572426 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t8A8457FAF6223DD887350322DC6D951891572426 (*Func)(void* obj, const RuntimeMethod* method); Settings_t8A8457FAF6223DD887350322DC6D951891572426 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t8A8457FAF6223DD887350322DC6D951891572426 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_t8A8457FAF6223DD887350322DC6D951891572426 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_t8A8457FAF6223DD887350322DC6D951891572426 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSettings_t8A8457FAF6223DD887350322DC6D951891572426 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t8A8457FAF6223DD887350322DC6D951891572426 (*Func)(const RuntimeMethod* method); Settings_t8A8457FAF6223DD887350322DC6D951891572426 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_tA824AD6B5D555CEB742A622222775333124B2107 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_tA824AD6B5D555CEB742A622222775333124B2107 (*Func)(void* obj, const RuntimeMethod* method); Settings_tA824AD6B5D555CEB742A622222775333124B2107 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_tA824AD6B5D555CEB742A622222775333124B2107 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_tA824AD6B5D555CEB742A622222775333124B2107 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_tA824AD6B5D555CEB742A622222775333124B2107 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSettings_tA824AD6B5D555CEB742A622222775333124B2107 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_tA824AD6B5D555CEB742A622222775333124B2107 (*Func)(const RuntimeMethod* method); Settings_tA824AD6B5D555CEB742A622222775333124B2107 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F (*Func)(void* obj, const RuntimeMethod* method); Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSettings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F (*Func)(const RuntimeMethod* method); Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_t6272550371AE697276AC2B9E97B10C20531B4A02 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t6272550371AE697276AC2B9E97B10C20531B4A02 (*Func)(void* obj, const RuntimeMethod* method); Settings_t6272550371AE697276AC2B9E97B10C20531B4A02 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t6272550371AE697276AC2B9E97B10C20531B4A02 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_t6272550371AE697276AC2B9E97B10C20531B4A02 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_t6272550371AE697276AC2B9E97B10C20531B4A02 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSettings_t6272550371AE697276AC2B9E97B10C20531B4A02 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t6272550371AE697276AC2B9E97B10C20531B4A02 (*Func)(const RuntimeMethod* method); Settings_t6272550371AE697276AC2B9E97B10C20531B4A02 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4 (*Func)(void* obj, const RuntimeMethod* method); Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSettings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4 (*Func)(const RuntimeMethod* method); Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_t89579C94217BC0734AF7DE292787FC983E2B4313 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t89579C94217BC0734AF7DE292787FC983E2B4313 (*Func)(void* obj, const RuntimeMethod* method); Settings_t89579C94217BC0734AF7DE292787FC983E2B4313 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t89579C94217BC0734AF7DE292787FC983E2B4313 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_t89579C94217BC0734AF7DE292787FC983E2B4313 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_t89579C94217BC0734AF7DE292787FC983E2B4313 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSettings_t89579C94217BC0734AF7DE292787FC983E2B4313 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t89579C94217BC0734AF7DE292787FC983E2B4313 (*Func)(const RuntimeMethod* method); Settings_t89579C94217BC0734AF7DE292787FC983E2B4313 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSettings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C (*Func)(void* obj, const RuntimeMethod* method); Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSettings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C (*Func)(const RuntimeMethod* method); Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, float p2, int8_t p3, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((float*)args[1]), *((int8_t*)args[2]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int32_t p4, int8_t p5, int8_t p6, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int8_t*)args[4]), *((int8_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, RuntimeObject * p8, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), *((int32_t*)args[5]), *((int32_t*)args[6]), (RuntimeObject *)args[7], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, int8_t p2, int8_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((int8_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, float p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((float*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, float p1, float p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, float p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), *((float*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, float p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((float*)args[3]), (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, RuntimeObject * p2, int32_t p3, int32_t p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, float p4, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p5, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p6, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((float*)args[3]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[4]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(float p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)(*((float*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(float p1, float p2, float p3, float p4, RuntimeObject * p5, RuntimeObject * p6, RuntimeObject * p7, const RuntimeMethod* method); ((Func)methodPointer)(*((float*)args[0]), *((float*)args[1]), *((float*)args[2]), *((float*)args[3]), (RuntimeObject *)args[4], (RuntimeObject *)args[5], (RuntimeObject *)args[6], methodMetadata); return NULL; } void* RuntimeInvoker_FalseClipPlanePoints_t20AE479CE67DB28A40559835C3B4E444F20CD717_RuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ClipPlanePoints_t20AE479CE67DB28A40559835C3B4E444F20CD717 (*Func)(RuntimeObject * p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, float p3, const RuntimeMethod* method); ClipPlanePoints_t20AE479CE67DB28A40559835C3B4E444F20CD717 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((float*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 p3, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 *)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseBoxPoint_t0DB72B4BFF55B92502866B73D47DCBECE6B08B32_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef BoxPoint_t0DB72B4BFF55B92502866B73D47DCBECE6B08B32 (*Func)(RuntimeObject * p1, const RuntimeMethod* method); BoxPoint_t0DB72B4BFF55B92502866B73D47DCBECE6B08B32 ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(RuntimeObject * p1, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int32_t p4, RuntimeObject * p5, int8_t p6, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), (RuntimeObject *)args[4], *((int8_t*)args[5]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, int32_t p5, RuntimeObject * p6, int8_t p7, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], *((int32_t*)args[4]), (RuntimeObject *)args[5], *((int8_t*)args[6]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)((void*)args[0], (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, RuntimeObject * p2, int32_t p3, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), (RuntimeObject *)args[1], *((int32_t*)args[2]), *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p1, RuntimeObject * p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[0]), (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 (*Func)(void* obj, const RuntimeMethod* method); TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 (*Func)(void* obj, int8_t p1, const RuntimeMethod* method); ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseAsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 (*Func)(const RuntimeMethod* method); AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E (*Func)(void* obj, const RuntimeMethod* method); ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, void* p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int8_t p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int8_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, void* p2, int8_t p3, RuntimeObject * p4, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (void*)args[1], *((int8_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, void* p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (void*)args[2], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, RuntimeObject * p3, int8_t p4, int8_t p5, void* p6, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), (RuntimeObject *)args[2], *((int8_t*)args[3]), *((int8_t*)args[4]), (void*)args[5], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, void* p2, void* p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), (void*)args[1], (void*)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE (*Func)(void* obj, const RuntimeMethod* method); KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, RuntimeObject * p5, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), (RuntimeObject *)args[4], methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, int32_t p4, int32_t p5, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], *((int32_t*)args[3]), *((int32_t*)args[4]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, int32_t p5, RuntimeObject * p6, const RuntimeMethod* method); ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), *((int32_t*)args[4]), (RuntimeObject *)args[5], methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RuntimeObject * p2, int32_t p3, int32_t p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int32_t*)args[2]), *((int32_t*)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t725320A9593FFA06C5F8F058B3705F530FC9D210 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t725320A9593FFA06C5F8F058B3705F530FC9D210 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t725320A9593FFA06C5F8F058B3705F530FC9D210 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tD2E008C377B02B56DD6AF067E72CE996FC350483 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tD2E008C377B02B56DD6AF067E72CE996FC350483 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tD2E008C377B02B56DD6AF067E72CE996FC350483 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t8434FF623060595DB1C2B2231A4DC225034F0A7A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t8434FF623060595DB1C2B2231A4DC225034F0A7A (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t8434FF623060595DB1C2B2231A4DC225034F0A7A ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, int32_t p2, int32_t p3, RuntimeObject * p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, RuntimeObject * p3, RuntimeObject * p4, RuntimeObject * p5, RuntimeObject * p6, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], (RuntimeObject *)args[2], (RuntimeObject *)args[3], (RuntimeObject *)args[4], (RuntimeObject *)args[5], methodMetadata); return ret; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, RuntimeObject * p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], (RuntimeObject *)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, void* p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 (*Func)(void* obj, const RuntimeMethod* method); TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int64_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int64_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 (*Func)(void* obj, const RuntimeMethod* method); TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseAsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE (*Func)(const RuntimeMethod* method); AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE ret = ((Func)methodPointer)(methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int8_t p2, int32_t p3, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), *((int32_t*)args[2]), *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 (*Func)(void* obj, int8_t p1, const RuntimeMethod* method); ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 (*Func)(void* obj, const RuntimeMethod* method); ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(int32_t p1, int32_t p2, RuntimeObject * p3, const RuntimeMethod* method); ((Func)methodPointer)(*((int32_t*)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], methodMetadata); return NULL; } void* RuntimeInvoker_TrueOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, float p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((float*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueEnumerator_t1A13F370EC7EA46EA20204D8881CCE685A3C348C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t1A13F370EC7EA46EA20204D8881CCE685A3C348C (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t1A13F370EC7EA46EA20204D8881CCE685A3C348C ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseNativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 (*Func)(void* p1, int32_t p2, int32_t p3, const RuntimeMethod* method); NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseNativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 (*Func)(void* p1, int32_t p2, int32_t p3, const RuntimeMethod* method); NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseNativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF (*Func)(void* p1, int32_t p2, int32_t p3, const RuntimeMethod* method); NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 p1, int32_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)args[0]), *((int32_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 p1, Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)args[0]), *((Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueEnumerator_t94D816309F3FD251DEB3C5965B4AF0E87C0AF4C5 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t94D816309F3FD251DEB3C5965B4AF0E87C0AF4C5 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t94D816309F3FD251DEB3C5965B4AF0E87C0AF4C5 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 (*Func)(void* obj, const RuntimeMethod* method); WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, intptr_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((intptr_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 (*Func)(void* obj, const RuntimeMethod* method); KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t2EDE6E26336E2877DCC9EE6FEB16C78BB83848B4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t2EDE6E26336E2877DCC9EE6FEB16C78BB83848B4 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t2EDE6E26336E2877DCC9EE6FEB16C78BB83848B4 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 (*Func)(void* obj, const RuntimeMethod* method); KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA (*Func)(void* obj, const RuntimeMethod* method); TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA p1, void* p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)args[0]), (void*)args[1], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA p1, RuntimeObject * p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)args[0]), (RuntimeObject *)args[1], methodMetadata); return NULL; } void* RuntimeInvoker_TrueEnumerator_t0DC3BBA5793B11A8C80B91E444D9364F648D3CC0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t0DC3BBA5793B11A8C80B91E444D9364F648D3CC0 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t0DC3BBA5793B11A8C80B91E444D9364F648D3CC0 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int8_t p2, int32_t p3, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), *((int32_t*)args[2]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_HoldCanceledEventArgs_t1149229A845756F9A586E3DD91C3EFEEA1029244 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, HoldCanceledEventArgs_t1149229A845756F9A586E3DD91C3EFEEA1029244 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((HoldCanceledEventArgs_t1149229A845756F9A586E3DD91C3EFEEA1029244 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_HoldCompletedEventArgs_t13AD11A9EDEE4F627639E98E09910A72E82242B3 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, HoldCompletedEventArgs_t13AD11A9EDEE4F627639E98E09910A72E82242B3 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((HoldCompletedEventArgs_t13AD11A9EDEE4F627639E98E09910A72E82242B3 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_HoldStartedEventArgs_tF309FAD5ADD192662D046995D7A71B5F92CFA874 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, HoldStartedEventArgs_tF309FAD5ADD192662D046995D7A71B5F92CFA874 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((HoldStartedEventArgs_tF309FAD5ADD192662D046995D7A71B5F92CFA874 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TappedEventArgs_t1E2125DB3E5E3F28EF3018C15F6A7786EDE8E9D6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, TappedEventArgs_t1E2125DB3E5E3F28EF3018C15F6A7786EDE8E9D6 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((TappedEventArgs_t1E2125DB3E5E3F28EF3018C15F6A7786EDE8E9D6 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ManipulationCanceledEventArgs_t6CD33D88A2B9B5FF30BAE21E2FE253EF9FA98417 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ManipulationCanceledEventArgs_t6CD33D88A2B9B5FF30BAE21E2FE253EF9FA98417 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ManipulationCanceledEventArgs_t6CD33D88A2B9B5FF30BAE21E2FE253EF9FA98417 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ManipulationCompletedEventArgs_t68FA66838267BEDC02E178D76EFC5E03D1958BA0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ManipulationCompletedEventArgs_t68FA66838267BEDC02E178D76EFC5E03D1958BA0 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ManipulationCompletedEventArgs_t68FA66838267BEDC02E178D76EFC5E03D1958BA0 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ManipulationStartedEventArgs_t15AFA1D2E17F9D5E2DFA7B7384FA5A79481AEAB2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ManipulationStartedEventArgs_t15AFA1D2E17F9D5E2DFA7B7384FA5A79481AEAB2 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ManipulationStartedEventArgs_t15AFA1D2E17F9D5E2DFA7B7384FA5A79481AEAB2 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ManipulationUpdatedEventArgs_t6B06C74A87C5FC65D6B45AAE8DC1BB59C147089E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ManipulationUpdatedEventArgs_t6B06C74A87C5FC65D6B45AAE8DC1BB59C147089E p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ManipulationUpdatedEventArgs_t6B06C74A87C5FC65D6B45AAE8DC1BB59C147089E *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_NavigationCanceledEventArgs_tC2B533AD31373B31AF9FDC354D3A07C749FC9760 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, NavigationCanceledEventArgs_tC2B533AD31373B31AF9FDC354D3A07C749FC9760 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((NavigationCanceledEventArgs_tC2B533AD31373B31AF9FDC354D3A07C749FC9760 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_NavigationCompletedEventArgs_tA0A6DD23233401CBAE4848F6B6D0BA03DE647E39 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, NavigationCompletedEventArgs_tA0A6DD23233401CBAE4848F6B6D0BA03DE647E39 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((NavigationCompletedEventArgs_tA0A6DD23233401CBAE4848F6B6D0BA03DE647E39 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_NavigationStartedEventArgs_t834E02E24343414BB48A9099C7CF0C331C859339 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, NavigationStartedEventArgs_t834E02E24343414BB48A9099C7CF0C331C859339 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((NavigationStartedEventArgs_t834E02E24343414BB48A9099C7CF0C331C859339 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_NavigationUpdatedEventArgs_tC41595BC70171E7D2E16538C62923395B285F3BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, NavigationUpdatedEventArgs_tC41595BC70171E7D2E16538C62923395B285F3BA p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((NavigationUpdatedEventArgs_tC41595BC70171E7D2E16538C62923395B285F3BA *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RecognitionEndedEventArgs_t41420CD5725610A560C4316BD5DBE7F96504B8BB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RecognitionEndedEventArgs_t41420CD5725610A560C4316BD5DBE7F96504B8BB p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((RecognitionEndedEventArgs_t41420CD5725610A560C4316BD5DBE7F96504B8BB *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RecognitionStartedEventArgs_t10FC01D91F3A18B7B03065C6C857473DCFD17E65 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RecognitionStartedEventArgs_t10FC01D91F3A18B7B03065C6C857473DCFD17E65 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((RecognitionStartedEventArgs_t10FC01D91F3A18B7B03065C6C857473DCFD17E65 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_GestureErrorEventArgs_tE93CF2521799DC9320F0B7A32C4CE279DC24E80C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, GestureErrorEventArgs_tE93CF2521799DC9320F0B7A32C4CE279DC24E80C p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((GestureErrorEventArgs_tE93CF2521799DC9320F0B7A32C4CE279DC24E80C *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourceDetectedEventArgs_tC1F077616F3D6B484D0B12321013A21E072B9755 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, InteractionSourceDetectedEventArgs_tC1F077616F3D6B484D0B12321013A21E072B9755 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((InteractionSourceDetectedEventArgs_tC1F077616F3D6B484D0B12321013A21E072B9755 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourceLostEventArgs_t1922B08265BAB2D8980B734D0A89C8705CCC40AC (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, InteractionSourceLostEventArgs_t1922B08265BAB2D8980B734D0A89C8705CCC40AC p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((InteractionSourceLostEventArgs_t1922B08265BAB2D8980B734D0A89C8705CCC40AC *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourceUpdatedEventArgs_t8386FB5578FE7C069A136CC36C9B6A56FF99CBC5 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, InteractionSourceUpdatedEventArgs_t8386FB5578FE7C069A136CC36C9B6A56FF99CBC5 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((InteractionSourceUpdatedEventArgs_t8386FB5578FE7C069A136CC36C9B6A56FF99CBC5 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourcePressedEventArgs_tA2188AAAB8CB2AA059C55E45F2FD09ED3725EA5B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, InteractionSourcePressedEventArgs_tA2188AAAB8CB2AA059C55E45F2FD09ED3725EA5B p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((InteractionSourcePressedEventArgs_tA2188AAAB8CB2AA059C55E45F2FD09ED3725EA5B *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourceReleasedEventArgs_tD5E7A07FF6CC463893178DC4F3FD3543F20FB943 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, InteractionSourceReleasedEventArgs_tD5E7A07FF6CC463893178DC4F3FD3543F20FB943 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((InteractionSourceReleasedEventArgs_tD5E7A07FF6CC463893178DC4F3FD3543F20FB943 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueInteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 (*Func)(void* obj, const RuntimeMethod* method); InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t6263B19C656D07B62170719F737CBF2B12E52B0D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t6263B19C656D07B62170719F737CBF2B12E52B0D (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t6263B19C656D07B62170719F737CBF2B12E52B0D ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, float p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, void* p1, int8_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (void*)args[0], *((int8_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, int16_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((int16_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* p1, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)((void*)args[0], *((SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueEnumerator_t3A78959E94C978DB01DA9CB40B164F1F5D384598 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t3A78959E94C978DB01DA9CB40B164F1F5D384598 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t3A78959E94C978DB01DA9CB40B164F1F5D384598 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 (*Func)(void* obj, const RuntimeMethod* method); KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 (*Func)(void* obj, const RuntimeMethod* method); KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t687188C87EF1FD0D50038E634676DBC449857B8E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Entry_t687188C87EF1FD0D50038E634676DBC449857B8E p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Entry_t687188C87EF1FD0D50038E634676DBC449857B8E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Frame_t6E5425A32B627B657C530E84626768BC9F53006E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Frame_t6E5425A32B627B657C530E84626768BC9F53006E p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Frame_t6E5425A32B627B657C530E84626768BC9F53006E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int64_t p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int64_t*)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, float p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((float*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t687188C87EF1FD0D50038E634676DBC449857B8E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Entry_t687188C87EF1FD0D50038E634676DBC449857B8E p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Entry_t687188C87EF1FD0D50038E634676DBC449857B8E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, intptr_t p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((intptr_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Frame_t6E5425A32B627B657C530E84626768BC9F53006E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Frame_t6E5425A32B627B657C530E84626768BC9F53006E p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Frame_t6E5425A32B627B657C530E84626768BC9F53006E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C p1, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t687188C87EF1FD0D50038E634676DBC449857B8E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Entry_t687188C87EF1FD0D50038E634676DBC449857B8E p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Entry_t687188C87EF1FD0D50038E634676DBC449857B8E *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Frame_t6E5425A32B627B657C530E84626768BC9F53006E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, Frame_t6E5425A32B627B657C530E84626768BC9F53006E p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((Frame_t6E5425A32B627B657C530E84626768BC9F53006E *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t687188C87EF1FD0D50038E634676DBC449857B8E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Entry_t687188C87EF1FD0D50038E634676DBC449857B8E p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Entry_t687188C87EF1FD0D50038E634676DBC449857B8E *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, double p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((double*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, intptr_t p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((intptr_t*)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Frame_t6E5425A32B627B657C530E84626768BC9F53006E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Frame_t6E5425A32B627B657C530E84626768BC9F53006E p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Frame_t6E5425A32B627B657C530E84626768BC9F53006E *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int32_t p1, SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t687188C87EF1FD0D50038E634676DBC449857B8E (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Entry_t687188C87EF1FD0D50038E634676DBC449857B8E ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_Truebucket_t1C848488DF65838689F7773D46F9E7E8C881B083_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef double (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); double ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TruePlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TruePlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TruePlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueFxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueFxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C (*Func)(void* obj, int32_t p1, const RuntimeMethod* method); SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*Func)(RuntimeObject * p1, int32_t p2, const RuntimeMethod* method); Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalsePlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED (*Func)(void* p1, int32_t p2, const RuntimeMethod* method); Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 (*Func)(void* p1, int32_t p2, const RuntimeMethod* method); BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 ret = ((Func)methodPointer)((void*)args[0], *((int32_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, RuntimeObject * p1, KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 p2, const RuntimeMethod* method); ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 *)args[1]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueRuntimeObject_AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_GestureErrorEventArgs_tE93CF2521799DC9320F0B7A32C4CE279DC24E80C_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, GestureErrorEventArgs_tE93CF2521799DC9320F0B7A32C4CE279DC24E80C p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((GestureErrorEventArgs_tE93CF2521799DC9320F0B7A32C4CE279DC24E80C *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_HoldCanceledEventArgs_t1149229A845756F9A586E3DD91C3EFEEA1029244_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, HoldCanceledEventArgs_t1149229A845756F9A586E3DD91C3EFEEA1029244 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((HoldCanceledEventArgs_t1149229A845756F9A586E3DD91C3EFEEA1029244 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_HoldCompletedEventArgs_t13AD11A9EDEE4F627639E98E09910A72E82242B3_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, HoldCompletedEventArgs_t13AD11A9EDEE4F627639E98E09910A72E82242B3 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((HoldCompletedEventArgs_t13AD11A9EDEE4F627639E98E09910A72E82242B3 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_HoldStartedEventArgs_tF309FAD5ADD192662D046995D7A71B5F92CFA874_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, HoldStartedEventArgs_tF309FAD5ADD192662D046995D7A71B5F92CFA874 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((HoldStartedEventArgs_tF309FAD5ADD192662D046995D7A71B5F92CFA874 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_InteractionSourceDetectedEventArgs_tC1F077616F3D6B484D0B12321013A21E072B9755_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, InteractionSourceDetectedEventArgs_tC1F077616F3D6B484D0B12321013A21E072B9755 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((InteractionSourceDetectedEventArgs_tC1F077616F3D6B484D0B12321013A21E072B9755 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_InteractionSourceLostEventArgs_t1922B08265BAB2D8980B734D0A89C8705CCC40AC_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, InteractionSourceLostEventArgs_t1922B08265BAB2D8980B734D0A89C8705CCC40AC p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((InteractionSourceLostEventArgs_t1922B08265BAB2D8980B734D0A89C8705CCC40AC *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_InteractionSourcePressedEventArgs_tA2188AAAB8CB2AA059C55E45F2FD09ED3725EA5B_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, InteractionSourcePressedEventArgs_tA2188AAAB8CB2AA059C55E45F2FD09ED3725EA5B p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((InteractionSourcePressedEventArgs_tA2188AAAB8CB2AA059C55E45F2FD09ED3725EA5B *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_InteractionSourceReleasedEventArgs_tD5E7A07FF6CC463893178DC4F3FD3543F20FB943_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, InteractionSourceReleasedEventArgs_tD5E7A07FF6CC463893178DC4F3FD3543F20FB943 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((InteractionSourceReleasedEventArgs_tD5E7A07FF6CC463893178DC4F3FD3543F20FB943 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_InteractionSourceUpdatedEventArgs_t8386FB5578FE7C069A136CC36C9B6A56FF99CBC5_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, InteractionSourceUpdatedEventArgs_t8386FB5578FE7C069A136CC36C9B6A56FF99CBC5 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((InteractionSourceUpdatedEventArgs_t8386FB5578FE7C069A136CC36C9B6A56FF99CBC5 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_ManipulationCanceledEventArgs_t6CD33D88A2B9B5FF30BAE21E2FE253EF9FA98417_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, ManipulationCanceledEventArgs_t6CD33D88A2B9B5FF30BAE21E2FE253EF9FA98417 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((ManipulationCanceledEventArgs_t6CD33D88A2B9B5FF30BAE21E2FE253EF9FA98417 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_ManipulationCompletedEventArgs_t68FA66838267BEDC02E178D76EFC5E03D1958BA0_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, ManipulationCompletedEventArgs_t68FA66838267BEDC02E178D76EFC5E03D1958BA0 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((ManipulationCompletedEventArgs_t68FA66838267BEDC02E178D76EFC5E03D1958BA0 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_ManipulationStartedEventArgs_t15AFA1D2E17F9D5E2DFA7B7384FA5A79481AEAB2_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, ManipulationStartedEventArgs_t15AFA1D2E17F9D5E2DFA7B7384FA5A79481AEAB2 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((ManipulationStartedEventArgs_t15AFA1D2E17F9D5E2DFA7B7384FA5A79481AEAB2 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_ManipulationUpdatedEventArgs_t6B06C74A87C5FC65D6B45AAE8DC1BB59C147089E_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, ManipulationUpdatedEventArgs_t6B06C74A87C5FC65D6B45AAE8DC1BB59C147089E p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((ManipulationUpdatedEventArgs_t6B06C74A87C5FC65D6B45AAE8DC1BB59C147089E *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_NavigationCanceledEventArgs_tC2B533AD31373B31AF9FDC354D3A07C749FC9760_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, NavigationCanceledEventArgs_tC2B533AD31373B31AF9FDC354D3A07C749FC9760 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((NavigationCanceledEventArgs_tC2B533AD31373B31AF9FDC354D3A07C749FC9760 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_NavigationCompletedEventArgs_tA0A6DD23233401CBAE4848F6B6D0BA03DE647E39_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, NavigationCompletedEventArgs_tA0A6DD23233401CBAE4848F6B6D0BA03DE647E39 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((NavigationCompletedEventArgs_tA0A6DD23233401CBAE4848F6B6D0BA03DE647E39 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_NavigationStartedEventArgs_t834E02E24343414BB48A9099C7CF0C331C859339_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, NavigationStartedEventArgs_t834E02E24343414BB48A9099C7CF0C331C859339 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((NavigationStartedEventArgs_t834E02E24343414BB48A9099C7CF0C331C859339 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_NavigationUpdatedEventArgs_tC41595BC70171E7D2E16538C62923395B285F3BA_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, NavigationUpdatedEventArgs_tC41595BC70171E7D2E16538C62923395B285F3BA p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((NavigationUpdatedEventArgs_tC41595BC70171E7D2E16538C62923395B285F3BA *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RecognitionEndedEventArgs_t41420CD5725610A560C4316BD5DBE7F96504B8BB_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RecognitionEndedEventArgs_t41420CD5725610A560C4316BD5DBE7F96504B8BB p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((RecognitionEndedEventArgs_t41420CD5725610A560C4316BD5DBE7F96504B8BB *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RecognitionStartedEventArgs_t10FC01D91F3A18B7B03065C6C857473DCFD17E65_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RecognitionStartedEventArgs_t10FC01D91F3A18B7B03065C6C857473DCFD17E65 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((RecognitionStartedEventArgs_t10FC01D91F3A18B7B03065C6C857473DCFD17E65 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_TappedEventArgs_t1E2125DB3E5E3F28EF3018C15F6A7786EDE8E9D6_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, TappedEventArgs_t1E2125DB3E5E3F28EF3018C15F6A7786EDE8E9D6 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((TappedEventArgs_t1E2125DB3E5E3F28EF3018C15F6A7786EDE8E9D6 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int8_t p1, int8_t p2, int32_t p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int8_t*)args[1]), *((int32_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueTableRange_t485CF0807771CC05023466CFCB0AE25C46648100 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 (*Func)(void* obj, const RuntimeMethod* method); TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 (*Func)(void* obj, const RuntimeMethod* method); UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D (*Func)(void* obj, const RuntimeMethod* method); Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t495C47A91D5A1899AF832D603308B663495EC5A8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 (*Func)(void* obj, const RuntimeMethod* method); Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 (*Func)(void* obj, const RuntimeMethod* method); Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE (*Func)(void* obj, const RuntimeMethod* method); Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 (*Func)(void* obj, const RuntimeMethod* method); Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA (*Func)(void* obj, const RuntimeMethod* method); Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D (*Func)(void* obj, const RuntimeMethod* method); Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEntry_t687188C87EF1FD0D50038E634676DBC449857B8E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Entry_t687188C87EF1FD0D50038E634676DBC449857B8E (*Func)(void* obj, const RuntimeMethod* method); Entry_t687188C87EF1FD0D50038E634676DBC449857B8E ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 (*Func)(void* obj, const RuntimeMethod* method); Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (*Func)(void* obj, const RuntimeMethod* method); KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 (*Func)(void* obj, const RuntimeMethod* method); KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E (*Func)(void* obj, const RuntimeMethod* method); KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 (*Func)(void* obj, const RuntimeMethod* method); KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 (*Func)(void* obj, const RuntimeMethod* method); KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_Truebucket_t1C848488DF65838689F7773D46F9E7E8C881B083 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 (*Func)(void* obj, const RuntimeMethod* method); bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 (*Func)(void* obj, const RuntimeMethod* method); InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 (*Func)(void* obj, const RuntimeMethod* method); InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E (*Func)(void* obj, const RuntimeMethod* method); CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 (*Func)(void* obj, const RuntimeMethod* method); CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E (*Func)(void* obj, const RuntimeMethod* method); ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (*Func)(void* obj, const RuntimeMethod* method); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA (*Func)(void* obj, const RuntimeMethod* method); Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B (*Func)(void* obj, const RuntimeMethod* method); LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 (*Func)(void* obj, const RuntimeMethod* method); CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 (*Func)(void* obj, const RuntimeMethod* method); OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (*Func)(void* obj, const RuntimeMethod* method); Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 (*Func)(void* obj, const RuntimeMethod* method); ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 (*Func)(void* obj, const RuntimeMethod* method); ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TruePlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D (*Func)(void* obj, const RuntimeMethod* method); PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 (*Func)(void* obj, const RuntimeMethod* method); Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TruePlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 (*Func)(void* obj, const RuntimeMethod* method); PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueFxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 (*Func)(void* obj, const RuntimeMethod* method); FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueFxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 (*Func)(void* obj, const RuntimeMethod* method); FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueFrame_t6E5425A32B627B657C530E84626768BC9F53006E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Frame_t6E5425A32B627B657C530E84626768BC9F53006E (*Func)(void* obj, const RuntimeMethod* method); Frame_t6E5425A32B627B657C530E84626768BC9F53006E ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (*Func)(void* obj, const RuntimeMethod* method); RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 (*Func)(void* obj, const RuntimeMethod* method); RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 (*Func)(void* obj, const RuntimeMethod* method); BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B (*Func)(void* obj, const RuntimeMethod* method); RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 (*Func)(void* obj, const RuntimeMethod* method); HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A (*Func)(void* obj, const RuntimeMethod* method); UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 (*Func)(void* obj, const RuntimeMethod* method); UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 (*Func)(void* obj, const RuntimeMethod* method); UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C (*Func)(void* obj, const RuntimeMethod* method); SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, int32_t p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, float p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((float*)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(RuntimeObject * p1, int32_t p2, int32_t p3, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p4, RuntimeObject * p5, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)((RuntimeObject *)args[0], *((int32_t*)args[1]), *((int32_t*)args[2]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[3]), (RuntimeObject *)args[4], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t95C250C5AE20EE169657CA9FE77127647391DEDF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t95C250C5AE20EE169657CA9FE77127647391DEDF (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t95C250C5AE20EE169657CA9FE77127647391DEDF ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t43B68EC9234C7A0A75CEFA2AC6BB72DADB85EE4E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t43B68EC9234C7A0A75CEFA2AC6BB72DADB85EE4E (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t43B68EC9234C7A0A75CEFA2AC6BB72DADB85EE4E ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tD806BA1896505DF328E1524919D22FD766AFA98D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tD806BA1896505DF328E1524919D22FD766AFA98D (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tD806BA1896505DF328E1524919D22FD766AFA98D ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t428D4B9665D853418E89F6F24EA1E9B0BCA42ADC (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t428D4B9665D853418E89F6F24EA1E9B0BCA42ADC (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t428D4B9665D853418E89F6F24EA1E9B0BCA42ADC ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t297717F4088863DFAC93BB43C6B2B6E56DB7462B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t297717F4088863DFAC93BB43C6B2B6E56DB7462B (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t297717F4088863DFAC93BB43C6B2B6E56DB7462B ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t5511F23E2799C7AB88F2654739BF13F1BBD48129 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t5511F23E2799C7AB88F2654739BF13F1BBD48129 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t5511F23E2799C7AB88F2654739BF13F1BBD48129 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t82386E2240FFD4007511705D063202265D0078D1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t82386E2240FFD4007511705D063202265D0078D1 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t82386E2240FFD4007511705D063202265D0078D1 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t1A2412749D128EFB09246B3515C978C55AB97AE7 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t1A2412749D128EFB09246B3515C978C55AB97AE7 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t1A2412749D128EFB09246B3515C978C55AB97AE7 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tA1F73074643A75A2368389A536DAD767B976E7AC (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tA1F73074643A75A2368389A536DAD767B976E7AC (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tA1F73074643A75A2368389A536DAD767B976E7AC ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int32_t p1, RuntimeObject * p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), (RuntimeObject *)args[1], *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, int8_t p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int8_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t9EF96D5164C5B8570733F9256F4879399EBCD07A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t9EF96D5164C5B8570733F9256F4879399EBCD07A (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t9EF96D5164C5B8570733F9256F4879399EBCD07A ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 *)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, int32_t p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((int32_t*)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RuntimeObject * p1, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)args[1]), *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA p1, RuntimeObject * p2, int8_t p3, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)args[0]), (RuntimeObject *)args[1], *((int8_t*)args[2]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, float p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((float*)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RuntimeObject * p1, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p2, int32_t p3, int32_t p4, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[1]), *((int32_t*)args[2]), *((int32_t*)args[3]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, float p1, float p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, int64_t p1, int64_t p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((int64_t*)args[0]), *((int64_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, int16_t p1, int16_t p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((int16_t*)args[0]), *((int16_t*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, float p1, float p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA p1, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)args[0]), *((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 p1, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)args[0]), *((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A p1, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)args[0]), *((SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p1, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[0]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tC2AA66EAA1C0E0866F7FF4C03B9B46ED328C259B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tC2AA66EAA1C0E0866F7FF4C03B9B46ED328C259B (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tC2AA66EAA1C0E0866F7FF4C03B9B46ED328C259B ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t466722FA3B0808834F81142CF36A155FB30BA42D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t466722FA3B0808834F81142CF36A155FB30BA42D (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t466722FA3B0808834F81142CF36A155FB30BA42D ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tFAFBEAFCC7B8C7F0A58F04A243A8773B576C4EFD (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tFAFBEAFCC7B8C7F0A58F04A243A8773B576C4EFD (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tFAFBEAFCC7B8C7F0A58F04A243A8773B576C4EFD ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tEB4831BF749196828927D05E6467255EFEE20323 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tEB4831BF749196828927D05E6467255EFEE20323 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tEB4831BF749196828927D05E6467255EFEE20323 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t76470F82B2EDDF9F880C98421781A48D36D3382A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t76470F82B2EDDF9F880C98421781A48D36D3382A (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t76470F82B2EDDF9F880C98421781A48D36D3382A ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tD560D253141BCDFD156853DB97521A047D18CB72 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tD560D253141BCDFD156853DB97521A047D18CB72 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tD560D253141BCDFD156853DB97521A047D18CB72 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tC74B83EBD6E429004D77BE34197889A60AE87C4F (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tC74B83EBD6E429004D77BE34197889A60AE87C4F (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tC74B83EBD6E429004D77BE34197889A60AE87C4F ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tD8CA6910C75C5AD8FF6B3018C967A8E2431038AA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tD8CA6910C75C5AD8FF6B3018C967A8E2431038AA (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tD8CA6910C75C5AD8FF6B3018C967A8E2431038AA ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tB8E2767D02BACB3BBF4CD57DE113A222EE0CC3D4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tB8E2767D02BACB3BBF4CD57DE113A222EE0CC3D4 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tB8E2767D02BACB3BBF4CD57DE113A222EE0CC3D4 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t789287D5EBA809F1FA53F5D5FB44744EA1E39EB3 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t789287D5EBA809F1FA53F5D5FB44744EA1E39EB3 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t789287D5EBA809F1FA53F5D5FB44744EA1E39EB3 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t1D6F1280D1286A07CA6B53EC40BD2936FAE0CD07 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t1D6F1280D1286A07CA6B53EC40BD2936FAE0CD07 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t1D6F1280D1286A07CA6B53EC40BD2936FAE0CD07 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t57A9B34D1CE311AE479EFFD22D44DDD2C724A727 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t57A9B34D1CE311AE479EFFD22D44DDD2C724A727 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t57A9B34D1CE311AE479EFFD22D44DDD2C724A727 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p1, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[0]), *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p1, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[0]), *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p1, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[0]), *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p1, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[0]), *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p1, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[0]), *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 p1, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)args[0]), *((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p1, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[0]), *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p1, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[0]), *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p1, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[0]), *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p1, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[0]), *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int32_t (*Func)(void* obj, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p1, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p2, const RuntimeMethod* method); int32_t ret = ((Func)methodPointer)(obj, *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[0]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p1, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[0]), *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 p1, KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 *)args[0]), *((KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C p1, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)args[0]), *((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p1, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[0]), *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p1, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[0]), *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p1, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[0]), *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA p1, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)args[0]), *((TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p1, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[0]), *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p1, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[0]), *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p1, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[0]), *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p1, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[0]), *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p1, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p2, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[0]), *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[1]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p1, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[0]), *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, float p1, float p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((float*)args[0]), *((float*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int64_t p1, int64_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int64_t*)args[0]), *((int64_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p1, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[0]), *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p1, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[0]), *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p1, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[0]), *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p1, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[0]), *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 p1, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)args[0]), *((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p1, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[0]), *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p1, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[0]), *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p1, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[0]), *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p1, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[0]), *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p1, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[0]), *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 (*Func)(void* obj, const RuntimeMethod* method); VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA (*Func)(void* obj, RuntimeObject * p1, const RuntimeMethod* method); Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, int32_t p1, intptr_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((int32_t*)args[0]), *((intptr_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RuntimeObject * p1, RuntimeObject * p2, int8_t p3, RuntimeObject * p4, RuntimeObject * p5, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, (RuntimeObject *)args[0], (RuntimeObject *)args[1], *((int8_t*)args[2]), (RuntimeObject *)args[3], (RuntimeObject *)args[4], methodMetadata); return ret; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseNullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 (*Func)(RuntimeObject * p1, const RuntimeMethod* method); Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseNullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB (*Func)(RuntimeObject * p1, const RuntimeMethod* method); Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Nullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, Nullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((Nullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_FalseRuntimeObject_Nullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(Nullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((Nullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseNullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Nullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE (*Func)(RuntimeObject * p1, const RuntimeMethod* method); Nullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE ret = ((Func)methodPointer)((RuntimeObject *)args[0], methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, float p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((float*)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E (*Func)(void* obj, const RuntimeMethod* method); ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 (*Func)(void* obj, const RuntimeMethod* method); ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, int32_t p2, int32_t p3, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((int32_t*)args[1]), *((int32_t*)args[2]), *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A (*Func)(void* obj, int8_t p1, const RuntimeMethod* method); ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 p1, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 *)args[0]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef void (*Func)(void* obj, int8_t p1, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 p2, int32_t p3, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB p4, const RuntimeMethod* method); ((Func)methodPointer)(obj, *((int8_t*)args[0]), *((VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 *)args[1]), *((int32_t*)args[2]), *((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)args[3]), methodMetadata); return NULL; } void* RuntimeInvoker_TrueVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 (*Func)(void* obj, int8_t p1, const RuntimeMethod* method); VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueTaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE (*Func)(void* obj, const RuntimeMethod* method); TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 (*Func)(void* obj, int8_t p1, const RuntimeMethod* method); ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 ret = ((Func)methodPointer)(obj, *((int8_t*)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t4302E76CC39AD357E3B45A5154FB9B8FD6A60B77 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t4302E76CC39AD357E3B45A5154FB9B8FD6A60B77 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t4302E76CC39AD357E3B45A5154FB9B8FD6A60B77 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_t2940B78ACDDF08E3D0DA814968616785F5F2A476 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_t2940B78ACDDF08E3D0DA814968616785F5F2A476 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_t2940B78ACDDF08E3D0DA814968616785F5F2A476 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueEnumerator_tBF1321662B82066F185005E1E61FA61D9631CDF4 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef Enumerator_tBF1321662B82066F185005E1E61FA61D9631CDF4 (*Func)(void* obj, const RuntimeMethod* method); Enumerator_tBF1321662B82066F185005E1E61FA61D9631CDF4 ret = ((Func)methodPointer)(obj, methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef int8_t (*Func)(void* obj, NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 p1, const RuntimeMethod* method); int8_t ret = ((Func)methodPointer)(obj, *((NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520 *)args[0]), methodMetadata); return Box(il2cpp_codegen_class_from_type (il2cpp_codegen_method_return_type(methodMetadata)), &ret); } void* RuntimeInvoker_TrueRuntimeObject_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 p1, RuntimeObject * p2, RuntimeObject * p3, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)args[0]), (RuntimeObject *)args[1], (RuntimeObject *)args[2], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 p1, int32_t p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)args[0]), *((int32_t*)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_TrueRuntimeObject_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_RuntimeObject_RuntimeObject (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(void* obj, Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 p1, Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 p2, RuntimeObject * p3, RuntimeObject * p4, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(obj, *((Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)args[0]), *((Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)args[1]), (RuntimeObject *)args[2], (RuntimeObject *)args[3], methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *)args[0]), methodMetadata); return ret; } void* RuntimeInvoker_FalseRuntimeObject_FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A (Il2CppMethodPointer methodPointer, const RuntimeMethod* methodMetadata, void* obj, void** args) { typedef RuntimeObject * (*Func)(FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A p1, const RuntimeMethod* method); RuntimeObject * ret = ((Func)methodPointer)(*((FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *)args[0]), methodMetadata); return ret; } extern const InvokerMethod g_Il2CppInvokerPointers[]; const InvokerMethod g_Il2CppInvokerPointers[2480] = { RuntimeInvoker_FalseRuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_RuntimeObject, RuntimeInvoker_TrueIntPtr_t_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017, RuntimeInvoker_TrueRuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_RuntimeObject_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseIntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, RuntimeInvoker_TrueRuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5, RuntimeInvoker_TrueIntPtr_t, RuntimeInvoker_TrueIntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_IntPtr_t, RuntimeInvoker_FalseSafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseIntPtr_t_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseRuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueRuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueRuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_IntPtr_t, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject, RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject, RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject, RuntimeInvoker_TrueDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject, RuntimeInvoker_TrueDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_RuntimeObject, RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_RuntimeObject, RuntimeInvoker_FalseDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseRuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueDTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D, RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseGuid_t_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Guid_t, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Guid_t, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Guid_t_Guid_t, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseGuid_t, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_FalseVoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueCancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueListBuilder_1_t5D6EE6CE7ECAEF873A9512FDCDB1650477082C62_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueListBuilder_1_tC910DF600888C2B5164672D53A552842C6B0A31B_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueListBuilder_1_t306530737CDAC7F801197CE81CE3E931E32B5B74_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueListBuilder_1_t7C73F3941A5FC9B73A3978FF42B31F47032EB5CC_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueListBuilder_1_t9F805B8E5D22215EA08ED24F79F2783EB52A7B72_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueListBuilder_1_tD5DE73E8827791DC2F4C293F9A405D8CC32E13FB_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueIntPtr_t_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueIntPtr_t_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject, RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueTransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, RuntimeInvoker_FalseRuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, RuntimeInvoker_FalseRuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, RuntimeInvoker_FalseTransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseTransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseTransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, RuntimeInvoker_FalseTypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, RuntimeInvoker_FalseConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, RuntimeInvoker_TrueConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t_IntPtr_t, RuntimeInvoker_FalseIntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseIntPtr_t_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseVoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_IntPtr_t, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, RuntimeInvoker_TrueConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_IntPtr_t_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_IntPtr_t_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueRuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023, RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F, RuntimeInvoker_TrueRuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_RuntimeMethodHandle_t85058E06EFF8AE085FAB91CE2B9E28E7F6FAE33F_RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, RuntimeInvoker_FalseRuntimeObject_IntPtr_t_IntPtr_t, RuntimeInvoker_FalseRuntimeObject_IntPtr_t_IntPtr_t_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_TrueIntPtr_t_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeEventHandle_tE5D1932AECB9CB753494050E033F25584E3693A9_RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, RuntimeInvoker_TrueRuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, RuntimeInvoker_FalseRuntimeObject_RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF_RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TypedReference_t118BC3B643F75F52DB9C99D5E051299F886EB2A8_RuntimeObject, RuntimeInvoker_TrueGuid_t, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseMonoEventInfo_t4DD903D7D2A55C62BF50165523ADC010115A4DAB_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseMonoMethodInfo_t846D423B6DB28262B9AC22C1D07EC38D23DF7D5D_IntPtr_t, RuntimeInvoker_FalseRuntimeObject_IntPtr_t_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_RuntimePropertyHandle_tFFD677B19D1E7D3E4B66A0C086E051AC52C34DCB_RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseIntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseIntPtr_t_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseIntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseIntPtr_t_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_IntPtr_t_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseIntPtr_t, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_TrueDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueNullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseRuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseFormatLiterals_tE93C12450F24FECD414C8FC2B3F3EE606F807223_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueData_t25CAFAACB31D34B4A9385638281C56D4D250BA2F, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseCancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, RuntimeInvoker_FalseRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CancellationCallbackCoreWorkArguments_t6290788CA17D8028FC4BC98AE2EDD437396675DB, RuntimeInvoker_FalseRuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseExecutionContextSwitcher_t739C861A327D724A4E59DE865463B32097395159_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueReader_t8A0F3818A710941785287CE8D7184C05480C2EA6, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueReader_t5766DE258B6B590281150D8DB517B651F9F4F33B, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseIntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_IntPtr_t_IntPtr_t, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseIntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_IntPtr_t, RuntimeInvoker_FalseDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseIntPtr_t_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseIntPtr_t_IntPtr_t_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_TrueSerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_TrueInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_IntPtr_t_IntPtr_t, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_IntPtr_t_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_IntPtr_t_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseProcessMessageRes_t17F028A89C1685A6BE96D7B59DD490E4CB859957_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_IntPtr_t, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_IntPtr_t, RuntimeInvoker_FalseGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3, RuntimeInvoker_FalseIntPtr_t_IntPtr_t, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_IntPtr_t_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t, RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, RuntimeInvoker_TrueKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_TrueMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_TrueRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_TrueRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CullingGroupEvent_tC36FFE61D0A4E7B31F575A1FCAEE05AC41FACA85, RuntimeInvoker_TrueRuntimeObject_CullingGroupEvent_tC36FFE61D0A4E7B31F575A1FCAEE05AC41FACA85_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TruePlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CameraPlayable_t3EEDF247328760DA29DC7E39B712076ED0FD9937, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0_FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0_FrameData_t7CF1DA259799AC04363C4CA88947D4EB7E28B38E_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_MaterialEffectPlayable_t40911576524A28294D958991232297B1728713FC, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182, RuntimeInvoker_FalsePlayable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0, RuntimeInvoker_TruePlayable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0_PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA_RuntimeObject_IntPtr_t, RuntimeInvoker_TruePlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345_PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_PlayableGraph_tEC38BBCA59BDD496F75037F220984D41339AB8BA_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TruePlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345_RuntimeObject, RuntimeInvoker_FalsePlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182_PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922, RuntimeInvoker_TruePlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayableOutput_t5E024C3D28C983782CD4FDB2FA5AD23998D21345, RuntimeInvoker_FalsePlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922_PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TextureMixerPlayable_tC536766EC72A3E271307F13E649F22BA411B9326, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890, RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TruePlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_Rect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Rect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A, RuntimeInvoker_TrueRect_t35B976DE901B5423C11705E156938EA27AB402CE_Rect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, RuntimeInvoker_FalseMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject, RuntimeInvoker_TrueColor_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, RuntimeInvoker_TrueColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, RuntimeInvoker_TrueColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_TrueColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_IntPtr_t, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, RuntimeInvoker_TrueRenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6, RuntimeInvoker_TrueRenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, RuntimeInvoker_FalseRuntimeObject_RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_TrueRuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseTouch_t806752C775BA713A91B6588A07CA98417CABC003_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_FalseColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_FalseMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, RuntimeInvoker_FalseMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, RuntimeInvoker_FalseMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, RuntimeInvoker_TrueVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, RuntimeInvoker_FalseQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Guid_t_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Guid_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Guid_t_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_Guid_t, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Guid_t, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52_NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520_NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF_LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960, RuntimeInvoker_TrueJobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1_RuntimeObject_BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_BatchCullingContext_t63E5CFC913AA7026C975A8A79778ACC6D06E965F_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueJobHandle_tDA498A2E49AEDE014468F416A8A98A6B258D73D1_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_LODParameters_t8CBE0C157487BE3E860DA9478FB46F80D3D1D960, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_IntPtr_t, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t, RuntimeInvoker_FalseScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2, RuntimeInvoker_FalseScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_LoadSceneParameters_tCB2FF5227064DFE794C8EAB65AEAD61838A5760A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_LoadSceneParameters_tCB2FF5227064DFE794C8EAB65AEAD61838A5760A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0, RuntimeInvoker_FalseLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_IntPtr_t, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_IntPtr_t, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseIntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseIntPtr_t_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRangeInt_t4480955B65C346F1B3A7A8AB74693AAB84D2988D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RangeInt_t4480955B65C346F1B3A7A8AB74693AAB84D2988D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseRuntimeObject_IntPtr_t_IntPtr_t_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD, RuntimeInvoker_TrueRuntimeObject_PhraseRecognizedEventArgs_t5045E5956BF185A7C661A2B56466E9C6101BAFAD_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_RuntimeObject, RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject, RuntimeInvoker_TrueVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_TrueBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalsePhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_FalseRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_PhysicsScene_tC24001806A99648F6EFD4D63957D47D8AB1668F5_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, RuntimeInvoker_TrueTextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68_TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_TextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AudioClipPlayable_t6094311F945E65BC29F85B23A81E8426D596553C, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AudioMixerPlayable_t2C445EB39F9111CCFF7E2E1F813B22007862FA9F, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Rect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_IntPtr_t, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_IntPtr_t, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueRuntimeObject_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject, RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Rect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Rect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58, RuntimeInvoker_TrueRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4, RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalsePhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58, RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_ContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseRuntimeObject_PhysicsScene2D_t02226E33FC79959E70471E2B0D79962926C80F58_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0, RuntimeInvoker_FalseContactFilter2D_t1BEAE75CCD5614B40E8AD9031BBD72543E2C37B4_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RectInt_t595A63F7EE2BC91A4D2DE5403C5FE94D3C3A6F7A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_IntPtr_t_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0, RuntimeInvoker_TrueTrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationClipPlayable_t6EF38F9EED94096D4793638AFC8D11D285B43183, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, RuntimeInvoker_TrueAnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_EmitParams_t03557E552852EC6B71876CD05C4098733702A219_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_RuntimeObject, RuntimeInvoker_TrueTileData_t8A50A35CAFD87C12E27D7E596D968C9114A4CBB5_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueTileAnimationData_t2A9C81AD1F3E916C2DE292A6F3953FC8C38EFDA8_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3Int_tA843C5F8C2EB42492786C5AF82C3E1F4929942B4_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueYogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueYogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_IntPtr_t, RuntimeInvoker_FalseYogaSize_t0F2077727A4CBD4C36F3DC0CBE1FB0A67D9EAD23_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6_InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73_Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6_InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73_Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6_InteractionSourcePose_t249CD43F634426269571F0E4689428ACC8C54F73_Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_RuntimeObject_RuntimeObject, RuntimeInvoker_FalsePhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_IntPtr_t, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC, RuntimeInvoker_TrueRuntimeObject_PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_PhotoCaptureResult_tB8F50F3F223E84B961166C1536336C2BC2C921AC_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_TrueRuntimeObject_SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueRuntimeObject_SurfaceData_t4C48F847E8643D6640786CC364CDB510C7C60C66_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55, RuntimeInvoker_TrueRuntimeObject_VideoCaptureResult_t3D9C36316B2EF9E90EED5A151CAEB0BB40162D55_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VideoClipPlayable_t4B7997FDB02C74F9E88F37574F0F4F9DE08CCC12, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, RuntimeInvoker_TrueRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, RuntimeInvoker_TrueTouch_t806752C775BA713A91B6588A07CA98417CABC003_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_Touch_t806752C775BA713A91B6588A07CA98417CABC003_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, RuntimeInvoker_FalseColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseRuntimeObject_Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, RuntimeInvoker_TrueRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Rect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Rect_t35B976DE901B5423C11705E156938EA27AB402CE, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Rect_t35B976DE901B5423C11705E156938EA27AB402CE_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, RuntimeInvoker_TrueColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, RuntimeInvoker_TrueSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueTextGenerationSettings_t37703542535A1638D2A08F41DB629A483616AF68_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueRect_t35B976DE901B5423C11705E156938EA27AB402CE_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRuntimeObject_Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_FalseInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_ClipPlanePoints_t20AE479CE67DB28A40559835C3B4E444F20CD717_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject, RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_RuntimeObject, RuntimeInvoker_TrueFrame_t6E5425A32B627B657C530E84626768BC9F53006E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueSettings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57, RuntimeInvoker_FalseSettings_t37C293628C874AB6DA613514F26AD3B6BEDE6E57, RuntimeInvoker_TrueSettings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF, RuntimeInvoker_FalseFxaaSettings_t49E6F1CF29002CE1ED38E0C6241ACF3EAD5EE52E, RuntimeInvoker_FalseTaaSettings_tCFEF81D638B351BFF56346922415F70DE5BD1926, RuntimeInvoker_FalseSettings_t3009ED9959094BD2B7692C6AAC3CECA3977C84EF, RuntimeInvoker_TrueSettings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A, RuntimeInvoker_FalseBloomSettings_t404181973007E2892BF7D816A9BFABA899AEF4D0, RuntimeInvoker_FalseLensDirtSettings_t853B5863231B63C1DDAA5F98E04699597E47137A, RuntimeInvoker_FalseSettings_tDAF4DB4C944143B285B5CBAF40509B6559800E3A, RuntimeInvoker_TrueSettings_t897B8FE3086F458E5E210D35F39B494A88494591, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t897B8FE3086F458E5E210D35F39B494A88494591, RuntimeInvoker_FalseDepthSettings_tC484EB6F5B3327CF16840634323AF5CFFEE126EC, RuntimeInvoker_FalseMotionVectorsSettings_t52E092FE390993B7C5006300306ED2C3F942B256, RuntimeInvoker_FalseSettings_t897B8FE3086F458E5E210D35F39B494A88494591, RuntimeInvoker_TrueSettings_t3B36530BC44129694D3A136E05855736FAB00743, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t3B36530BC44129694D3A136E05855736FAB00743, RuntimeInvoker_FalseSettings_t3B36530BC44129694D3A136E05855736FAB00743, RuntimeInvoker_TrueSettings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A, RuntimeInvoker_FalseTonemappingSettings_t6325A1335977835D76781574FA3E47A97B7179DC, RuntimeInvoker_FalseBasicSettings_t6BDB17237FE91CFD75E4659392E068376014EA49, RuntimeInvoker_FalseChannelMixerSettings_t431B35AD1976F2AF867DD00D992769BE455DC09B, RuntimeInvoker_FalseLogWheelsSettings_t6946B0985F2ECDA5D31B31D9DC70072ED0819EF5, RuntimeInvoker_FalseLinearWheelsSettings_tA2E68F6BF46B81203AF36DCB129409CAB51EC704, RuntimeInvoker_FalseColorWheelsSettings_t9C91F8B31A98943530FDFC38F386D98874501EC8, RuntimeInvoker_FalseCurvesSettings_t1B75302479E162A4CA5A29D18CCD1D46FD6C7A2E, RuntimeInvoker_FalseSettings_t48BF09637C1A12D6B94A6E21D32A58B301F6759A, RuntimeInvoker_TrueSettings_t5F3D078AA124139ACFD469537C724B81EECAE64E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t5F3D078AA124139ACFD469537C724B81EECAE64E, RuntimeInvoker_FalseSettings_t5F3D078AA124139ACFD469537C724B81EECAE64E, RuntimeInvoker_TrueSettings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724, RuntimeInvoker_FalseSettings_tC9C0AEE3013633FFCEA5FDFD2D15E71EB7251724, RuntimeInvoker_TrueSettings_t8A8457FAF6223DD887350322DC6D951891572426, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t8A8457FAF6223DD887350322DC6D951891572426, RuntimeInvoker_FalseSettings_t8A8457FAF6223DD887350322DC6D951891572426, RuntimeInvoker_TrueSettings_tA824AD6B5D555CEB742A622222775333124B2107, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_tA824AD6B5D555CEB742A622222775333124B2107, RuntimeInvoker_FalseSettings_tA824AD6B5D555CEB742A622222775333124B2107, RuntimeInvoker_TrueSettings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F, RuntimeInvoker_FalseSettings_tCFBBF182482600D1B65A7B66A6B980BDE79A4D6F, RuntimeInvoker_TrueSettings_t6272550371AE697276AC2B9E97B10C20531B4A02, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t6272550371AE697276AC2B9E97B10C20531B4A02, RuntimeInvoker_FalseSettings_t6272550371AE697276AC2B9E97B10C20531B4A02, RuntimeInvoker_TrueSettings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4, RuntimeInvoker_FalseSettings_tEF3B42DA82D32321AD3A9E59B8BB1C0D1D2608A4, RuntimeInvoker_TrueSettings_t89579C94217BC0734AF7DE292787FC983E2B4313, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t89579C94217BC0734AF7DE292787FC983E2B4313, RuntimeInvoker_FalseSettings_t89579C94217BC0734AF7DE292787FC983E2B4313, RuntimeInvoker_TrueSettings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Settings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C, RuntimeInvoker_FalseSettings_t38E3144318C540D0811780C3FC3CF5BFE3DF9A8C, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseClipPlanePoints_t20AE479CE67DB28A40559835C3B4E444F20CD717_RuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0, RuntimeInvoker_FalseBoxPoint_t0DB72B4BFF55B92502866B73D47DCBECE6B08B32_RuntimeObject, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_RuntimeObject, RuntimeInvoker_TrueTaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977, RuntimeInvoker_TrueConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseAsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663, RuntimeInvoker_TrueConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueEnumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueEnumerator_t725320A9593FFA06C5F8F058B3705F530FC9D210, RuntimeInvoker_TrueEnumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F, RuntimeInvoker_TrueEnumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, RuntimeInvoker_TrueEnumerator_tD2E008C377B02B56DD6AF067E72CE996FC350483, RuntimeInvoker_TrueEnumerator_t8434FF623060595DB1C2B2231A4DC225034F0A7A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueTaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueTaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090, RuntimeInvoker_FalseAsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40, RuntimeInvoker_TrueKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, RuntimeInvoker_FalseVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_TrueOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueEnumerator_t1A13F370EC7EA46EA20204D8881CCE685A3C348C, RuntimeInvoker_FalseNativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseNativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseNativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, RuntimeInvoker_TrueEnumerator_t94D816309F3FD251DEB3C5965B4AF0E87C0AF4C5, RuntimeInvoker_TrueWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t, RuntimeInvoker_TrueEnumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1, RuntimeInvoker_TrueKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26, RuntimeInvoker_TrueEnumerator_t2EDE6E26336E2877DCC9EE6FEB16C78BB83848B4, RuntimeInvoker_TrueKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27, RuntimeInvoker_TrueTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_RuntimeObject, RuntimeInvoker_TrueEnumerator_t0DC3BBA5793B11A8C80B91E444D9364F648D3CC0, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_HoldCanceledEventArgs_t1149229A845756F9A586E3DD91C3EFEEA1029244, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_HoldCompletedEventArgs_t13AD11A9EDEE4F627639E98E09910A72E82242B3, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_HoldStartedEventArgs_tF309FAD5ADD192662D046995D7A71B5F92CFA874, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TappedEventArgs_t1E2125DB3E5E3F28EF3018C15F6A7786EDE8E9D6, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ManipulationCanceledEventArgs_t6CD33D88A2B9B5FF30BAE21E2FE253EF9FA98417, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ManipulationCompletedEventArgs_t68FA66838267BEDC02E178D76EFC5E03D1958BA0, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ManipulationStartedEventArgs_t15AFA1D2E17F9D5E2DFA7B7384FA5A79481AEAB2, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ManipulationUpdatedEventArgs_t6B06C74A87C5FC65D6B45AAE8DC1BB59C147089E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_NavigationCanceledEventArgs_tC2B533AD31373B31AF9FDC354D3A07C749FC9760, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_NavigationCompletedEventArgs_tA0A6DD23233401CBAE4848F6B6D0BA03DE647E39, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_NavigationStartedEventArgs_t834E02E24343414BB48A9099C7CF0C331C859339, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_NavigationUpdatedEventArgs_tC41595BC70171E7D2E16538C62923395B285F3BA, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RecognitionEndedEventArgs_t41420CD5725610A560C4316BD5DBE7F96504B8BB, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RecognitionStartedEventArgs_t10FC01D91F3A18B7B03065C6C857473DCFD17E65, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_GestureErrorEventArgs_tE93CF2521799DC9320F0B7A32C4CE279DC24E80C, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourceDetectedEventArgs_tC1F077616F3D6B484D0B12321013A21E072B9755, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourceLostEventArgs_t1922B08265BAB2D8980B734D0A89C8705CCC40AC, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourceUpdatedEventArgs_t8386FB5578FE7C069A136CC36C9B6A56FF99CBC5, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourcePressedEventArgs_tA2188AAAB8CB2AA059C55E45F2FD09ED3725EA5B, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSourceReleasedEventArgs_tD5E7A07FF6CC463893178DC4F3FD3543F20FB943, RuntimeInvoker_TrueInteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6, RuntimeInvoker_TrueRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueEnumerator_t6263B19C656D07B62170719F737CBF2B12E52B0D, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, RuntimeInvoker_FalseSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, RuntimeInvoker_TrueUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_TrueEnumerator_t3A78959E94C978DB01DA9CB40B164F1F5D384598, RuntimeInvoker_TrueKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0, RuntimeInvoker_TrueEnumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A, RuntimeInvoker_TrueKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Entry_t687188C87EF1FD0D50038E634676DBC449857B8E, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Frame_t6E5425A32B627B657C530E84626768BC9F53006E, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t687188C87EF1FD0D50038E634676DBC449857B8E, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Frame_t6E5425A32B627B657C530E84626768BC9F53006E, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Entry_t687188C87EF1FD0D50038E634676DBC449857B8E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Frame_t6E5425A32B627B657C530E84626768BC9F53006E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Entry_t687188C87EF1FD0D50038E634676DBC449857B8E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_FxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_FxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Frame_t6E5425A32B627B657C530E84626768BC9F53006E, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C, RuntimeInvoker_TrueTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueEntry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueKeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueKeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_Truebucket_t1C848488DF65838689F7773D46F9E7E8C881B083_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TruePlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TruePlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TruePlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueFxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueFxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRenderBuffer_tBDA35A13DB79B675D1F593B78F54D3D86473E5C6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalsePlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_FalseBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_VoidU2A_t3A9D5EB5A83DC9C93DF2C4D6EA67B0F5E885889A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_RuntimeObject_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D, RuntimeInvoker_TrueRuntimeObject_AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_GestureErrorEventArgs_tE93CF2521799DC9320F0B7A32C4CE279DC24E80C_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_HoldCanceledEventArgs_t1149229A845756F9A586E3DD91C3EFEEA1029244_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_HoldCompletedEventArgs_t13AD11A9EDEE4F627639E98E09910A72E82242B3_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_HoldStartedEventArgs_tF309FAD5ADD192662D046995D7A71B5F92CFA874_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_InteractionSourceDetectedEventArgs_tC1F077616F3D6B484D0B12321013A21E072B9755_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_InteractionSourceLostEventArgs_t1922B08265BAB2D8980B734D0A89C8705CCC40AC_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_InteractionSourcePressedEventArgs_tA2188AAAB8CB2AA059C55E45F2FD09ED3725EA5B_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_InteractionSourceReleasedEventArgs_tD5E7A07FF6CC463893178DC4F3FD3543F20FB943_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_InteractionSourceUpdatedEventArgs_t8386FB5578FE7C069A136CC36C9B6A56FF99CBC5_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_ManipulationCanceledEventArgs_t6CD33D88A2B9B5FF30BAE21E2FE253EF9FA98417_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_ManipulationCompletedEventArgs_t68FA66838267BEDC02E178D76EFC5E03D1958BA0_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_ManipulationStartedEventArgs_t15AFA1D2E17F9D5E2DFA7B7384FA5A79481AEAB2_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_ManipulationUpdatedEventArgs_t6B06C74A87C5FC65D6B45AAE8DC1BB59C147089E_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_NavigationCanceledEventArgs_tC2B533AD31373B31AF9FDC354D3A07C749FC9760_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_NavigationCompletedEventArgs_tA0A6DD23233401CBAE4848F6B6D0BA03DE647E39_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_NavigationStartedEventArgs_t834E02E24343414BB48A9099C7CF0C331C859339_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_NavigationUpdatedEventArgs_tC41595BC70171E7D2E16538C62923395B285F3BA_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RecognitionEndedEventArgs_t41420CD5725610A560C4316BD5DBE7F96504B8BB_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RecognitionStartedEventArgs_t10FC01D91F3A18B7B03065C6C857473DCFD17E65_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_TappedEventArgs_t1E2125DB3E5E3F28EF3018C15F6A7786EDE8E9D6_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueTableRange_t485CF0807771CC05023466CFCB0AE25C46648100, RuntimeInvoker_TrueUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, RuntimeInvoker_TrueEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, RuntimeInvoker_TrueEntry_t495C47A91D5A1899AF832D603308B663495EC5A8, RuntimeInvoker_TrueEntry_t38B92B2FCEEC2D729D579BA19FBB950724A1E9D4, RuntimeInvoker_TrueEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, RuntimeInvoker_TrueEntry_t39E5078AF9E9A002524BC15C94626539E28F1DD0, RuntimeInvoker_TrueEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, RuntimeInvoker_TrueEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, RuntimeInvoker_TrueEntry_t687188C87EF1FD0D50038E634676DBC449857B8E, RuntimeInvoker_TrueSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, RuntimeInvoker_TrueKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, RuntimeInvoker_TrueKeyValuePair_2_t6AFF6BE6AE0C62A223999F8EED2F6F3F2A583F25, RuntimeInvoker_TrueKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, RuntimeInvoker_TrueKeyValuePair_2_tAF60C2042FF9801393411C345D151C0E632D9755, RuntimeInvoker_TrueKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, RuntimeInvoker_Truebucket_t1C848488DF65838689F7773D46F9E7E8C881B083, RuntimeInvoker_TrueInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, RuntimeInvoker_TrueInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, RuntimeInvoker_TrueCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, RuntimeInvoker_TrueCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, RuntimeInvoker_TrueParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, RuntimeInvoker_TrueResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, RuntimeInvoker_TrueEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, RuntimeInvoker_TrueLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, RuntimeInvoker_TrueCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, RuntimeInvoker_TrueOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, RuntimeInvoker_TrueColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, RuntimeInvoker_TrueContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, RuntimeInvoker_TrueContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, RuntimeInvoker_TruePlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D, RuntimeInvoker_TrueKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, RuntimeInvoker_TruePlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, RuntimeInvoker_TrueFxaaConsoleSettings_tC400F9A3A1D559733687DDB7B613836954B089E9, RuntimeInvoker_TrueFxaaQualitySettings_t375C0BCBBF03CF64BD5AC815A20225F505263051, RuntimeInvoker_TrueFrame_t6E5425A32B627B657C530E84626768BC9F53006E, RuntimeInvoker_TrueRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, RuntimeInvoker_TrueRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, RuntimeInvoker_TrueBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, RuntimeInvoker_TrueRenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, RuntimeInvoker_TrueHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12, RuntimeInvoker_TrueUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, RuntimeInvoker_TrueUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, RuntimeInvoker_TrueUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, RuntimeInvoker_TrueSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject, RuntimeInvoker_FalseInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_RuntimeObject, RuntimeInvoker_TrueEnumerator_t95C250C5AE20EE169657CA9FE77127647391DEDF, RuntimeInvoker_TrueEnumerator_t43B68EC9234C7A0A75CEFA2AC6BB72DADB85EE4E, RuntimeInvoker_TrueEnumerator_tD806BA1896505DF328E1524919D22FD766AFA98D, RuntimeInvoker_TrueEnumerator_t428D4B9665D853418E89F6F24EA1E9B0BCA42ADC, RuntimeInvoker_TrueEnumerator_t297717F4088863DFAC93BB43C6B2B6E56DB7462B, RuntimeInvoker_TrueEnumerator_t5511F23E2799C7AB88F2654739BF13F1BBD48129, RuntimeInvoker_TrueEnumerator_t82386E2240FFD4007511705D063202265D0078D1, RuntimeInvoker_TrueEnumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A, RuntimeInvoker_TrueEnumerator_t1A2412749D128EFB09246B3515C978C55AB97AE7, RuntimeInvoker_TrueEnumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1, RuntimeInvoker_TrueEnumerator_tA1F73074643A75A2368389A536DAD767B976E7AC, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_RuntimeObject, RuntimeInvoker_TrueEnumerator_t9EF96D5164C5B8570733F9256F4879399EBCD07A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueEnumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueEnumerator_t703CE82E2E7C2543EFCBFA02457EB68422BDAAD8, RuntimeInvoker_TrueResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_RuntimeObject, RuntimeInvoker_TrueEnumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueRuntimeObject_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_TrueKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_RuntimeObject, RuntimeInvoker_TrueEnumerator_tC2AA66EAA1C0E0866F7FF4C03B9B46ED328C259B, RuntimeInvoker_TrueEnumerator_t466722FA3B0808834F81142CF36A155FB30BA42D, RuntimeInvoker_TrueEnumerator_tFAFBEAFCC7B8C7F0A58F04A243A8773B576C4EFD, RuntimeInvoker_TrueOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_RuntimeObject, RuntimeInvoker_TrueEnumerator_tEB4831BF749196828927D05E6467255EFEE20323, RuntimeInvoker_TrueColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_RuntimeObject, RuntimeInvoker_TrueEnumerator_t76470F82B2EDDF9F880C98421781A48D36D3382A, RuntimeInvoker_TrueRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RuntimeObject, RuntimeInvoker_TrueEnumerator_tA27E2343069402A698ECAD46C2DC47ACD7786618, RuntimeInvoker_TrueEnumerator_tD560D253141BCDFD156853DB97521A047D18CB72, RuntimeInvoker_TrueUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_RuntimeObject, RuntimeInvoker_TrueEnumerator_tC74B83EBD6E429004D77BE34197889A60AE87C4F, RuntimeInvoker_TrueUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_RuntimeObject, RuntimeInvoker_TrueEnumerator_tD8CA6910C75C5AD8FF6B3018C967A8E2431038AA, RuntimeInvoker_TrueUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_RuntimeObject, RuntimeInvoker_TrueEnumerator_tB8E2767D02BACB3BBF4CD57DE113A222EE0CC3D4, RuntimeInvoker_TrueWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_RuntimeObject, RuntimeInvoker_TrueEnumerator_t789287D5EBA809F1FA53F5D5FB44744EA1E39EB3, RuntimeInvoker_TrueVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject, RuntimeInvoker_TrueEnumerator_t1D6F1280D1286A07CA6B53EC40BD2936FAE0CD07, RuntimeInvoker_TrueVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_RuntimeObject, RuntimeInvoker_TrueEnumerator_t57A9B34D1CE311AE479EFFD22D44DDD2C724A727, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, RuntimeInvoker_TrueInt32_t585191389E07734F19F3156FF88FB3EF4800D102_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, RuntimeInvoker_TrueRuntimeObject_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40, RuntimeInvoker_TrueVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_IntPtr_t_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RuntimeObject_RuntimeObject_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793, RuntimeInvoker_FalseRuntimeObject_Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793, RuntimeInvoker_FalseNullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793_RuntimeObject, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, RuntimeInvoker_FalseRuntimeObject_Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, RuntimeInvoker_FalseNullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_RuntimeObject, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_InteractionSource_t21335CC7BE7B9164D14283EEA3EC775AB2720DF6, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Nullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE, RuntimeInvoker_FalseRuntimeObject_Nullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE, RuntimeInvoker_FalseNullable_1_t2BAE7F2F24CA3009C8A4626DF50D64CBD4A00FBE_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E, RuntimeInvoker_TrueConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40, RuntimeInvoker_TrueVoid_t22962CB4C05B1D89B55A6E1139F0E87A90987017_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, RuntimeInvoker_TrueVoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueTaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE, RuntimeInvoker_TrueConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3_SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, RuntimeInvoker_TrueEnumerator_t4302E76CC39AD357E3B45A5154FB9B8FD6A60B77, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_NativeArray_1_tC6374EC584BF0D6DD4AD6FA0FD00C2C82F82CCAF, RuntimeInvoker_TrueEnumerator_t2940B78ACDDF08E3D0DA814968616785F5F2A476, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_NativeArray_1_t83B803BC075802611FE185566F7FE576D1B85F52, RuntimeInvoker_TrueEnumerator_tBF1321662B82066F185005E1E61FA61D9631CDF4, RuntimeInvoker_TrueSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_NativeArray_1_t1D9423FECCE6FE0EBBFAB0CF4124B39FF8B66520, RuntimeInvoker_TrueRuntimeObject_Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Int32_t585191389E07734F19F3156FF88FB3EF4800D102_RuntimeObject_RuntimeObject, RuntimeInvoker_TrueRuntimeObject_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_RuntimeObject_RuntimeObject, RuntimeInvoker_FalseRuntimeObject_ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, RuntimeInvoker_FalseRuntimeObject_FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A, };
[ "dian7896@gmail.com" ]
dian7896@gmail.com
e07778d28437d232053982d9128e9ba07de1391f
34d27a21336a1ae2a569bcef0bae59b762593e86
/leetcode/medium/DP/Unique Paths/testCode.cpp
61a7b1f79ba6ada8ebd9a79f3df88c4d201a5912
[]
no_license
nitinkodial/mini_code_assignments
563a9275b5c19e1428571dfd35e743430afcdc56
a14eb12d9137dbfbeddbb346503738d24db880e4
refs/heads/master
2021-09-10T20:46:30.142374
2018-04-02T03:57:07
2018-04-02T03:57:07
114,929,898
0
0
null
null
null
null
UTF-8
C++
false
false
1,379
cpp
// A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). // // The robot can only move either down or right at any point in time. The robot is trying to reach the bottom-right corner of the grid (marked 'Finish' in the diagram below). // // How many possible unique paths are there? // // // Above is a 3 x 7 grid. How many possible unique paths are there? class Solution { public: //unoptimized // int uniquePaths(int m, int n) { // cout<<m<<" "<<n<<endl; // vector<vector<int> > paths(m,vector<int>(n,-1)); // paths[0][0] = 1; // for(int i = 1 ;i<n;i++){ // paths[0][i] = 1; // } // for(int i = 1 ;i<m;i++){ // paths[i][0] = 1; // } // for(int i = 1 ;i<m;i++){ // for(int j = 1 ;j<n;j++){ // paths[i][j] = paths[i-1][j] + paths[i][j-1]; // } // } // return paths[m-1][n-1]; // } //space optimized int uniquePaths(int m, int n) { if(m>n){ return uniquePaths(n,m); } vector<int> paths(m,1); for(int i = 1 ;i<n;i++){ for(int j = 1 ;j<m;j++){ paths[j] = paths[j] + paths[j-1]; } } return paths[m-1]; } };
[ "nitinkodial@gatech.edu" ]
nitinkodial@gatech.edu
43a68b397323d243998d4d6665c25a1584c87387
3b9b4049a8e7d38b49e07bb752780b2f1d792851
/src/ui/gfx/ipc/geometry/gfx_param_traits.cc
e66e4f6df99b00a859352555637c7e3354d14c38
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
webosce/chromium53
f8e745e91363586aee9620c609aacf15b3261540
9171447efcf0bb393d41d1dc877c7c13c46d8e38
refs/heads/webosce
2020-03-26T23:08:14.416858
2018-08-23T08:35:17
2018-09-20T14:25:18
145,513,343
0
2
Apache-2.0
2019-08-21T22:44:55
2018-08-21T05:52:31
null
UTF-8
C++
false
false
9,527
cc
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/gfx/ipc/geometry/gfx_param_traits.h" #include <stddef.h> #include <stdint.h> #include <string> #include "ui/gfx/geometry/point3_f.h" #include "ui/gfx/geometry/rect.h" #include "ui/gfx/geometry/rect_f.h" #include "ui/gfx/geometry/scroll_offset.h" #if defined(OS_MACOSX) #include "ipc/mach_port_mac.h" #endif namespace IPC { void ParamTraits<gfx::Point>::GetSize(base::PickleSizer* s, const gfx::Point& p) { GetParamSize(s, p.x()); GetParamSize(s, p.y()); } void ParamTraits<gfx::Point>::Write(base::Pickle* m, const gfx::Point& p) { WriteParam(m, p.x()); WriteParam(m, p.y()); } bool ParamTraits<gfx::Point>::Read(const base::Pickle* m, base::PickleIterator* iter, gfx::Point* r) { int x, y; if (!ReadParam(m, iter, &x) || !ReadParam(m, iter, &y)) return false; r->set_x(x); r->set_y(y); return true; } void ParamTraits<gfx::Point>::Log(const gfx::Point& p, std::string* l) { l->append(base::StringPrintf("(%d, %d)", p.x(), p.y())); } void ParamTraits<gfx::PointF>::GetSize(base::PickleSizer* s, const gfx::PointF& p) { GetParamSize(s, p.x()); GetParamSize(s, p.y()); } void ParamTraits<gfx::PointF>::Write(base::Pickle* m, const gfx::PointF& p) { WriteParam(m, p.x()); WriteParam(m, p.y()); } bool ParamTraits<gfx::PointF>::Read(const base::Pickle* m, base::PickleIterator* iter, gfx::PointF* r) { float x, y; if (!ReadParam(m, iter, &x) || !ReadParam(m, iter, &y)) return false; r->set_x(x); r->set_y(y); return true; } void ParamTraits<gfx::PointF>::Log(const gfx::PointF& p, std::string* l) { l->append(base::StringPrintf("(%f, %f)", p.x(), p.y())); } void ParamTraits<gfx::Point3F>::GetSize(base::PickleSizer* s, const gfx::Point3F& p) { GetParamSize(s, p.x()); GetParamSize(s, p.y()); GetParamSize(s, p.z()); } void ParamTraits<gfx::Point3F>::Write(base::Pickle* m, const gfx::Point3F& p) { WriteParam(m, p.x()); WriteParam(m, p.y()); WriteParam(m, p.z()); } bool ParamTraits<gfx::Point3F>::Read(const base::Pickle* m, base::PickleIterator* iter, gfx::Point3F* r) { float x, y, z; if (!ReadParam(m, iter, &x) || !ReadParam(m, iter, &y) || !ReadParam(m, iter, &z)) return false; r->set_x(x); r->set_y(y); r->set_z(z); return true; } void ParamTraits<gfx::Point3F>::Log(const gfx::Point3F& p, std::string* l) { l->append(base::StringPrintf("(%f, %f, %f)", p.x(), p.y(), p.z())); } void ParamTraits<gfx::Size>::GetSize(base::PickleSizer* s, const gfx::Size& p) { s->AddBytes(sizeof(int) * 2); } void ParamTraits<gfx::Size>::Write(base::Pickle* m, const gfx::Size& p) { DCHECK_GE(p.width(), 0); DCHECK_GE(p.height(), 0); int values[2] = {p.width(), p.height()}; m->WriteBytes(&values, sizeof(int) * 2); } bool ParamTraits<gfx::Size>::Read(const base::Pickle* m, base::PickleIterator* iter, gfx::Size* r) { const char* char_values; if (!iter->ReadBytes(&char_values, sizeof(int) * 2)) return false; const int* values = reinterpret_cast<const int*>(char_values); if (values[0] < 0 || values[1] < 0) return false; r->set_width(values[0]); r->set_height(values[1]); return true; } void ParamTraits<gfx::Size>::Log(const gfx::Size& p, std::string* l) { l->append(base::StringPrintf("(%d, %d)", p.width(), p.height())); } void ParamTraits<gfx::SizeF>::GetSize(base::PickleSizer* s, const gfx::SizeF& p) { s->AddBytes(sizeof(float) * 2); } void ParamTraits<gfx::SizeF>::Write(base::Pickle* m, const gfx::SizeF& p) { float values[2] = {p.width(), p.height()}; m->WriteBytes(&values, sizeof(float) * 2); } bool ParamTraits<gfx::SizeF>::Read(const base::Pickle* m, base::PickleIterator* iter, gfx::SizeF* r) { const char* char_values; if (!iter->ReadBytes(&char_values, sizeof(float) * 2)) return false; const float* values = reinterpret_cast<const float*>(char_values); r->set_width(values[0]); r->set_height(values[1]); return true; } void ParamTraits<gfx::SizeF>::Log(const gfx::SizeF& p, std::string* l) { l->append(base::StringPrintf("(%f, %f)", p.width(), p.height())); } void ParamTraits<gfx::Vector2d>::GetSize(base::PickleSizer* s, const gfx::Vector2d& p) { s->AddBytes(sizeof(int) * 2); } void ParamTraits<gfx::Vector2d>::Write(base::Pickle* m, const gfx::Vector2d& p) { int values[2] = {p.x(), p.y()}; m->WriteBytes(&values, sizeof(int) * 2); } bool ParamTraits<gfx::Vector2d>::Read(const base::Pickle* m, base::PickleIterator* iter, gfx::Vector2d* r) { const char* char_values; if (!iter->ReadBytes(&char_values, sizeof(int) * 2)) return false; const int* values = reinterpret_cast<const int*>(char_values); r->set_x(values[0]); r->set_y(values[1]); return true; } void ParamTraits<gfx::Vector2d>::Log(const gfx::Vector2d& v, std::string* l) { l->append(base::StringPrintf("(%d, %d)", v.x(), v.y())); } void ParamTraits<gfx::Vector2dF>::GetSize(base::PickleSizer* s, const gfx::Vector2dF& p) { s->AddBytes(sizeof(float) * 2); } void ParamTraits<gfx::Vector2dF>::Write(base::Pickle* m, const gfx::Vector2dF& p) { float values[2] = {p.x(), p.y()}; m->WriteBytes(&values, sizeof(float) * 2); } bool ParamTraits<gfx::Vector2dF>::Read(const base::Pickle* m, base::PickleIterator* iter, gfx::Vector2dF* r) { const char* char_values; if (!iter->ReadBytes(&char_values, sizeof(float) * 2)) return false; const float* values = reinterpret_cast<const float*>(char_values); r->set_x(values[0]); r->set_y(values[1]); return true; } void ParamTraits<gfx::Vector2dF>::Log(const gfx::Vector2dF& v, std::string* l) { l->append(base::StringPrintf("(%f, %f)", v.x(), v.y())); } void ParamTraits<gfx::Rect>::GetSize(base::PickleSizer* s, const gfx::Rect& p) { s->AddBytes(sizeof(int) * 4); } void ParamTraits<gfx::Rect>::Write(base::Pickle* m, const gfx::Rect& p) { int values[4] = {p.x(), p.y(), p.width(), p.height()}; m->WriteBytes(&values, sizeof(int) * 4); } bool ParamTraits<gfx::Rect>::Read(const base::Pickle* m, base::PickleIterator* iter, gfx::Rect* r) { const char* char_values; if (!iter->ReadBytes(&char_values, sizeof(int) * 4)) return false; const int* values = reinterpret_cast<const int*>(char_values); if (values[2] < 0 || values[3] < 0) return false; r->SetRect(values[0], values[1], values[2], values[3]); return true; } void ParamTraits<gfx::Rect>::Log(const gfx::Rect& p, std::string* l) { l->append(base::StringPrintf("(%d, %d, %d, %d)", p.x(), p.y(), p.width(), p.height())); } void ParamTraits<gfx::RectF>::GetSize(base::PickleSizer* s, const gfx::RectF& p) { s->AddBytes(sizeof(float) * 4); } void ParamTraits<gfx::RectF>::Write(base::Pickle* m, const gfx::RectF& p) { float values[4] = {p.x(), p.y(), p.width(), p.height()}; m->WriteBytes(&values, sizeof(float) * 4); } bool ParamTraits<gfx::RectF>::Read(const base::Pickle* m, base::PickleIterator* iter, gfx::RectF* r) { const char* char_values; if (!iter->ReadBytes(&char_values, sizeof(float) * 4)) return false; const float* values = reinterpret_cast<const float*>(char_values); r->SetRect(values[0], values[1], values[2], values[3]); return true; } void ParamTraits<gfx::RectF>::Log(const gfx::RectF& p, std::string* l) { l->append(base::StringPrintf("(%f, %f, %f, %f)", p.x(), p.y(), p.width(), p.height())); } void ParamTraits<gfx::ScrollOffset>::GetSize(base::PickleSizer* s, const gfx::ScrollOffset& p) { GetParamSize(s, p.x()); GetParamSize(s, p.y()); } void ParamTraits<gfx::ScrollOffset>::Write(base::Pickle* m, const param_type& p) { m->WriteDouble(p.x()); m->WriteDouble(p.y()); } bool ParamTraits<gfx::ScrollOffset>::Read(const base::Pickle* m, base::PickleIterator* iter, param_type* r) { double x = 0.f; double y = 0.f; if (!iter->ReadDouble(&x)) return false; if (!iter->ReadDouble(&y)) return false; r->set_x(x); r->set_y(y); return true; } void ParamTraits<gfx::ScrollOffset>::Log(const param_type& p, std::string* l) { l->append("("); LogParam(p.x(), l); l->append(", "); LogParam(p.y(), l); l->append(")"); } } // namespace IPC
[ "changhyeok.bae@lge.com" ]
changhyeok.bae@lge.com
bc4bfbd8f641a8ed3aa88754b2216174e7774f94
cfceffb372a31d6bec816857d4310c4224543995
/Übung 9/src/math/Vertex.hpp
2a5631332a38e7420a6cab285753139ada064397
[]
no_license
themightyoarfish/intro-to-c
f7ad417f3b30413caace0324430577f8d297b106
27bdd1f69a7f6919c780a325c311cc6776736ca6
refs/heads/master
2021-01-10T02:28:47.859425
2015-01-18T12:05:56
2015-01-18T12:05:56
47,020,894
0
1
null
2018-11-14T17:06:29
2015-11-28T11:31:28
C++
UTF-8
C++
false
false
1,778
hpp
/** * @file Vertex.hpp * * @date 05.12.2011 * @author Thomas Wiemann */ #ifndef __Vertex_HPP__ #define __Vertex_HPP__ #include <iostream> #include <cmath> #include "Global.hpp" namespace asteroids { /** * @brief Vector representation with three floats for OpenGL * */ class Vertex { public: /** * @brief Construcs a default Vertex object */ Vertex(); /** * @brief Construcs a Vertex object with given values * @param x x-value * @param y y-value * @param z z-value */ Vertex(float x, float y, float z); /** * @brief Normalize a Vertex */ void normalize(); /** * @brief Defines the vector addition * @param vec vector * @return vector */ Vertex operator+ (const Vertex vec) const; /** * @brief Defines the vector subtraction * @param vec vector * @return vector */ Vertex operator- (const Vertex vec) const; /** * @brief Construcs the scalar multiplication * @param scale scalar * @return vector */ Vertex operator* (const float scale) const; /** * @brief Defines the vector multiplication * @param vec vector * @return result (as a float) */ float operator* (const Vertex vec) const; /** * @brief Defines the access to a Vertex value * @param index wanted value * @return vectorentry (as a float) */ float operator[] (const int& index) const; /** * @brief Defines the access to a Vertex value * @param index wanted value * @return vectorentry (as a float) */ float& operator[] (const int& index); /** * @brief Defines the fast notation of vector addition * @param v vector */ void operator+= (Vertex v); /** * @brief The three values of a vector */ float x, y, z; }; } // namespace cpp2014 #endif
[ "themightyoarfish@users.noreply.github.com" ]
themightyoarfish@users.noreply.github.com
7129a5053bb9b574676193bcf50f64bd0c3b0630
f125d550d0457a35220ed35a375c8820efd373e6
/Userland/Tests/LibGfx/font.cpp
a52e6c85eb47b43d38d9c8f619486f0ffcd0f2ee
[ "BSD-2-Clause" ]
permissive
seven1m/serenity
3c4a744fe1cc65e54c9aa62c9f97fb5df04b43bf
447b8e808219d7f326fa6a4fd922adf7a3f86759
refs/heads/master
2021-06-24T19:44:42.274014
2021-02-07T17:25:30
2021-02-07T17:36:31
207,917,650
1
0
BSD-2-Clause
2019-09-11T22:28:44
2019-09-11T22:28:44
null
UTF-8
C++
false
false
6,544
cpp
/* * Copyright (c) 2020, the SerenityOS developers. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include <LibGfx/BitmapFont.h> #include <LibGfx/FontDatabase.h> #include <stdio.h> #include <stdlib.h> #include <string.h> static void test_fontdatabase_get_by_name() { const char* name = "Liza 10 400"; auto& font_database = Gfx::FontDatabase::the(); assert(!font_database.get_by_name(name)->name().is_null()); } static void test_fontdatabase_get() { auto& font_database = Gfx::FontDatabase::the(); assert(!font_database.get("Liza", 10, 400)->name().is_null()); } static void test_fontdatabase_for_each_font() { auto& font_database = Gfx::FontDatabase::the(); font_database.for_each_font([&](const Gfx::Font& font) { assert(!font.name().is_null()); assert(!font.qualified_name().is_null()); assert(!font.family().is_null()); assert(font.glyph_count() > 0); }); } static void test_default_font() { assert(!Gfx::FontDatabase::default_font().name().is_null()); } static void test_default_fixed_width_font() { assert(!Gfx::FontDatabase::default_fixed_width_font().name().is_null()); } static void test_default_bold_fixed_width_font() { assert(!Gfx::FontDatabase::default_bold_fixed_width_font().name().is_null()); } static void test_default_bold_font() { assert(!Gfx::FontDatabase::default_bold_font().name().is_null()); } static void test_clone() { u8 glyph_height = 1; u8 glyph_width = 1; auto font = Gfx::BitmapFont::create(glyph_height, glyph_width, true, Gfx::FontTypes::Default); auto new_font = font->clone(); assert(!new_font->name().is_null()); assert(!new_font->qualified_name().is_null()); assert(!new_font->family().is_null()); assert(new_font->glyph_count() > 0); } static void test_set_name() { u8 glyph_height = 1; u8 glyph_width = 1; auto font = Gfx::BitmapFont::create(glyph_height, glyph_width, true, Gfx::FontTypes::Default); const char* name = "my newly created font"; font->set_name(name); assert(!font->name().is_null()); assert(font->name().contains(name)); } static void test_set_family() { u8 glyph_height = 1; u8 glyph_width = 1; auto font = Gfx::BitmapFont::create(glyph_height, glyph_width, true, Gfx::FontTypes::Default); const char* family = "my newly created font family"; font->set_family(family); assert(!font->family().is_null()); assert(font->family().contains(family)); } static void test_set_glyph_width() { u8 glyph_height = 1; u8 glyph_width = 1; auto font = Gfx::BitmapFont::create(glyph_height, glyph_width, true, Gfx::FontTypes::Default); size_t ch = 123; font->set_glyph_width(ch, glyph_width); assert(font->glyph_width(ch) == glyph_width); } static void test_set_glyph_spacing() { u8 glyph_height = 1; u8 glyph_width = 1; auto font = Gfx::BitmapFont::create(glyph_height, glyph_width, true, Gfx::FontTypes::Default); u8 glyph_spacing = 8; font->set_glyph_spacing(glyph_spacing); assert(font->glyph_spacing() == glyph_spacing); } static void test_set_type() { u8 glyph_height = 1; u8 glyph_width = 1; auto font = Gfx::BitmapFont::create(glyph_height, glyph_width, true, Gfx::FontTypes::Default); auto type = Gfx::FontTypes::Default; font->set_type(type); assert(font->type() == type); } static void test_width() { u8 glyph_height = 1; u8 glyph_width = 1; auto font = Gfx::BitmapFont::create(glyph_height, glyph_width, true, Gfx::FontTypes::Default); assert(font->width("A") == glyph_width); } static void test_glyph_or_emoji_width() { u8 glyph_height = 1; u8 glyph_width = 1; auto font = Gfx::BitmapFont::create(glyph_height, glyph_width, true, Gfx::FontTypes::Default); font->set_type(Gfx::FontTypes::Default); assert(font->glyph_or_emoji_width(0)); } static void test_load_from_file() { auto font = Gfx::BitmapFont::load_from_file("/res/fonts/PebbletonBold14.font"); assert(!font->name().is_null()); } static void test_write_to_file() { u8 glyph_height = 1; u8 glyph_width = 1; auto font = Gfx::BitmapFont::create(glyph_height, glyph_width, true, Gfx::FontTypes::Default); char path[] = "/tmp/new.font.XXXXXX"; assert(mkstemp(path) != -1); assert(font->write_to_file(path)); unlink(path); } int main(int, char**) { #define RUNTEST(x) \ { \ printf("Running " #x " ...\n"); \ x(); \ printf("Success!\n"); \ } RUNTEST(test_fontdatabase_get); RUNTEST(test_fontdatabase_get_by_name); RUNTEST(test_fontdatabase_for_each_font); RUNTEST(test_default_font); RUNTEST(test_default_fixed_width_font); RUNTEST(test_default_bold_fixed_width_font); RUNTEST(test_default_bold_font); RUNTEST(test_clone); RUNTEST(test_set_name); RUNTEST(test_set_family); RUNTEST(test_set_type); RUNTEST(test_set_glyph_width); RUNTEST(test_set_glyph_spacing); RUNTEST(test_width); RUNTEST(test_glyph_or_emoji_width); RUNTEST(test_load_from_file); RUNTEST(test_write_to_file); printf("PASS\n"); return 0; }
[ "kling@serenityos.org" ]
kling@serenityos.org
8eab70f8ef1df3e00ac4b16f3922621a668210a8
f867e478e6a3bce9108aa144db4e3282459805a9
/Source/LandlordFantasy/Private/AI/Services/BTService_Moving.cpp
7f674b5981f55c4283ef6c03d21f97ea984da74b
[]
no_license
alnye655321/LandlordFantasy-Source
212241ed02c65eb5d3484bde41695c25e8345a46
21d252fcab760aec4d18822eb33e18bac832bd70
refs/heads/master
2020-03-11T21:47:18.319654
2018-05-10T00:26:34
2018-05-10T00:26:34
130,274,943
0
0
null
null
null
null
UTF-8
C++
false
false
258
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "LandlordFantasy.h" #include "BTService_Moving.h" UBTService_Moving::UBTService_Moving() { //bCreateNodeInstance = true; // create new nodes, needed for multiple AIs }
[ "wiggles@nyedigital.com" ]
wiggles@nyedigital.com
c24f51526195b16c896beeff654595a3c1ce7e48
ee6ff3af175a37c2b2377c5ed5f184609e134755
/oshgui/Drawing/Direct3D7/Direct3D7GeometryBuffer.hpp
308ac5bb42b8ee831a90c87255b1664f03a3d1f6
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
EternityX/DEADCELL-CSGO
c1363ecf5a62941954514d946137a4b791da3b36
7b873216637977d914b2eeb6893cb0cc4708aff2
refs/heads/master
2023-08-28T07:09:39.914038
2021-11-30T12:27:01
2021-11-30T12:27:01
175,938,531
597
233
MIT
2020-09-27T02:29:08
2019-03-16T07:07:59
C++
ISO-8859-2
C++
false
false
2,677
hpp
/* * OldSchoolHack GUI * * by KN4CK3R https://www.oldschoolhack.me/ * * See license in OSHGui.hpp */ #ifndef OSHGUI_DRAWING_DIRECT3D7GEOMETRYBUFFER_HPP #define OSHGUI_DRAWING_DIRECT3D7GEOMETRYBUFFER_HPP #include "../GeometryBuffer.hpp" #include "Direct3D7Renderer.hpp" #include "Direct3D7X.hpp" #include <vector> namespace OSHGui { namespace Drawing { class Direct3D7Texture; /** * Die Direct3D7 Variante des GeometryBuffer. */ class OSHGUI_EXPORT Direct3D7GeometryBuffer : public GeometryBuffer { public: /** * Konstruktor der Klasse. * * \param owner Renderer Objekt, das den GeometryBuffer erstellt hat */ Direct3D7GeometryBuffer( Direct3D7Renderer &owner ); virtual void SetTranslation( const Vector &translation ) override; virtual void SetRotation( const Quaternion &rotation ) override; virtual void SetPivot( const Vector &pivot ) override; virtual void SetClippingRegion( const RectangleF &region ) override; virtual void SetActiveTexture( const TexturePtr &texture ) override; virtual void SetClippingActive( const bool active ) override; virtual bool IsClippingActive() const override; virtual void AppendVertex( const Vertex &vertex ) override; virtual void AppendGeometry( const Vertex *const vertices, uint32_t count ) override; virtual void Draw() const override; virtual void Reset() override; protected: /** * Erledigt das Batch Management bevor neue Geometrie hinzugefügt wird. */ void PerformBatchManagement(); /** * Updatet die Transformationsmatrix vor dem Zeichnen. */ void UpdateMatrix() const; struct D3DVertex { D3DVertex( float _x, float _y, float _z, DWORD _color, float _tu, float _tv ) : x( _x ), y( _y ), z( _z ), color( _color ), tu( _tu ), tv( _tv ) { } float x; float y; float z; DWORD color; float tu; float tv; }; struct BatchInfo { BatchInfo( LPDIRECTDRAWSURFACE7 _texture, uint32_t _count, VertexDrawMode _mode, bool _clip ) : texture( _texture ), count( _count ), mode( _mode ), clip( _clip ) { } LPDIRECTDRAWSURFACE7 texture; uint32_t count; VertexDrawMode mode; bool clip; }; Direct3D7Renderer &owner; std::shared_ptr< Direct3D7Texture > activeTexture; typedef std::vector< BatchInfo > BatchList; BatchList batches; typedef std::vector< D3DVertex > VertexList; VertexList vertices; bool clippingActive; RectangleF clipRect; Vector translation; Quaternion rotation; Vector pivot; mutable bool matrixValid; mutable D3DMATRIX matrix; }; } } #endif
[ "jeramie@protonmail.com" ]
jeramie@protonmail.com
2d362a12d994f26434fb5a8b062182926e20cfaa
531deed126055d35565023d400a529961c12486a
/cpp/iedriver/CommandHandlers/ExecuteScriptCommandHandler.cpp
05ff478b73299f496d711e0181c109c68bec831e
[ "Apache-2.0" ]
permissive
peacekeeper/selenium
f67e88db8178ca3e4ab4e5a2bac30d625500b15c
87472d9d31880af95bfc40d0f149803f7a5b7a13
refs/heads/master
2021-01-22T18:14:41.800232
2017-08-11T15:01:15
2017-08-11T15:02:51
85,066,378
3
0
null
2017-03-15T11:51:04
2017-03-15T11:51:03
null
UTF-8
C++
false
false
8,336
cpp
// Licensed to the Software Freedom Conservancy (SFC) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The SFC licenses this file // to you under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include "ExecuteScriptCommandHandler.h" #include "errorcodes.h" #include "logging.h" #include "../Browser.h" #include "../IECommandExecutor.h" #include "../Script.h" namespace webdriver { ExecuteScriptCommandHandler::ExecuteScriptCommandHandler(void) { } ExecuteScriptCommandHandler::~ExecuteScriptCommandHandler(void) { } void ExecuteScriptCommandHandler::ExecuteInternal( const IECommandExecutor& executor, const ParametersMap& command_parameters, Response* response) { ParametersMap::const_iterator script_parameter_iterator = command_parameters.find("script"); ParametersMap::const_iterator args_parameter_iterator = command_parameters.find("args"); if (script_parameter_iterator == command_parameters.end()) { response->SetErrorResponse(400, "Missing parameter: script"); return; } else if (args_parameter_iterator == command_parameters.end()) { response->SetErrorResponse(400, "Missing parameter: args"); return; } else { std::string script_body = script_parameter_iterator->second.asString(); const std::string script_source = "(function() { return function(){" + script_body + "};})();"; Json::Value json_args(args_parameter_iterator->second); BrowserHandle browser_wrapper; int status_code = executor.GetCurrentBrowser(&browser_wrapper); if (status_code != WD_SUCCESS) { response->SetErrorResponse(status_code, "Unable to get browser"); return; } CComPtr<IHTMLDocument2> doc; browser_wrapper->GetDocument(&doc); Script script_wrapper(doc, script_source, json_args.size()); status_code = this->PopulateArgumentArray(executor, script_wrapper, json_args); if (status_code != WD_SUCCESS) { response->SetErrorResponse(status_code, "Error setting arguments for script"); return; } status_code = script_wrapper.Execute(); if (status_code != WD_SUCCESS) { response->SetErrorResponse(status_code, "JavaScript error"); return; } else { Json::Value script_result; script_wrapper.ConvertResultToJsonValue(executor, &script_result); response->SetSuccessResponse(script_result); return; } } } int ExecuteScriptCommandHandler::PopulateArgumentArray(const IECommandExecutor& executor, Script& script_wrapper, Json::Value json_args) { LOG(TRACE) << "Entering ExecuteScriptCommandHandler::PopulateArgumentArray"; int status_code = WD_SUCCESS; for (UINT arg_index = 0; arg_index < json_args.size(); ++arg_index) { Json::Value arg = json_args[arg_index]; status_code = this->AddArgument(executor, script_wrapper, arg); if (status_code != WD_SUCCESS) { break; } } return status_code; } int ExecuteScriptCommandHandler::AddArgument(const IECommandExecutor& executor, Script& script_wrapper, Json::Value arg) { LOG(TRACE) << "Entering ExecuteScriptCommandHandler::AddArgument"; int status_code = WD_SUCCESS; if (arg.isString()) { std::string value = arg.asString(); script_wrapper.AddArgument(value); } else if (arg.isInt()) { int int_number = arg.asInt(); script_wrapper.AddArgument(int_number); } else if (arg.isDouble()) { double dbl_number = arg.asDouble(); script_wrapper.AddArgument(dbl_number); } else if (arg.isBool()) { bool bool_arg = arg.asBool(); script_wrapper.AddArgument(bool_arg); } else if (arg.isNull()) { script_wrapper.AddNullArgument(); } else if (arg.isArray()) { status_code = this->WalkArray(executor, script_wrapper, arg); } else if (arg.isObject()) { // TODO: Remove the check for "ELEMENT" once all target bindings // have been updated to use spec-compliant protocol. std::string element_marker_property_name = "element-6066-11e4-a52e-4f735466cecf"; if (!arg.isMember(element_marker_property_name)) { element_marker_property_name = "ELEMENT"; } if (arg.isMember(element_marker_property_name)) { std::string element_id = arg[element_marker_property_name].asString(); ElementHandle element_wrapper; status_code = this->GetElement(executor, element_id, &element_wrapper); if (status_code == WD_SUCCESS) { script_wrapper.AddArgument(element_wrapper); } } else { status_code = this->WalkObject(executor, script_wrapper, arg); } } return status_code; } int ExecuteScriptCommandHandler::WalkArray(const IECommandExecutor& executor, Script& script_wrapper, Json::Value array_value) { LOG(TRACE) << "Entering ExecuteScriptCommandHandler::WalkArray"; int status_code = WD_SUCCESS; Json::UInt array_size = array_value.size(); std::wstring array_script = L"(function(){ return function() { return ["; for (Json::UInt index = 0; index < array_size; ++index) { if (index != 0) { array_script += L","; } std::wstring index_string = std::to_wstring(static_cast<long long>(index)); array_script += L"arguments[" + index_string + L"]"; } array_script += L"];}})();"; BrowserHandle browser; int browser_status = executor.GetCurrentBrowser(&browser); if (browser_status != WD_SUCCESS) { return browser_status; } CComPtr<IHTMLDocument2> doc; browser->GetDocument(&doc); Script array_script_wrapper(doc, array_script, array_size); for (Json::UInt index = 0; index < array_size; ++index) { status_code = this->AddArgument(executor, array_script_wrapper, array_value[index]); if (status_code != WD_SUCCESS) { break; } } if (status_code == WD_SUCCESS) { status_code = array_script_wrapper.Execute(); } if (status_code == WD_SUCCESS) { script_wrapper.AddArgument(array_script_wrapper.result()); } return status_code; } int ExecuteScriptCommandHandler::WalkObject(const IECommandExecutor& executor, Script& script_wrapper, Json::Value object_value) { LOG(TRACE) << "Entering ExecuteScriptCommandHandler::WalkObject"; int status_code = WD_SUCCESS; Json::Value::iterator it = object_value.begin(); int counter = 0; std::string object_script = "(function(){ return function() { return {"; for (; it != object_value.end(); ++it) { if (counter != 0) { object_script += ","; } std::string counter_string = std::to_string(static_cast<long long>(counter)); std::string name = it.memberName(); object_script += "\"" + name + "\"" + ":arguments[" + counter_string + "]"; ++counter; } object_script += "};}})();"; BrowserHandle browser; int browser_status = executor.GetCurrentBrowser(&browser); if (browser_status != WD_SUCCESS) { return browser_status; } CComPtr<IHTMLDocument2> doc; browser->GetDocument(&doc); Script object_script_wrapper(doc, object_script, counter); for (it = object_value.begin(); it != object_value.end(); ++it) { status_code = this->AddArgument(executor, object_script_wrapper, object_value[it.memberName()]); if (status_code != WD_SUCCESS) { break; } } if (status_code == WD_SUCCESS) { status_code = object_script_wrapper.Execute(); } if (status_code == WD_SUCCESS) { script_wrapper.AddArgument(object_script_wrapper.result()); } return status_code; } } // namespace webdriver
[ "james.h.evans.jr@gmail.com" ]
james.h.evans.jr@gmail.com
59f0a8f1e2b501f92a2b2c17b90ce0b0138d74ec
887f3a72757ff8f691c1481618944b727d4d9ff5
/third_party/gecko_1.9.2/win32/gecko_sdk/include/nsIDOMScreen.h
975506df835c977a2050bb29fb511efe5a14651f
[]
no_license
zied-ellouze/gears
329f754f7f9e9baa3afbbd652e7893a82b5013d1
d3da1ed772ed5ae9b82f46f9ecafeb67070d6899
refs/heads/master
2020-04-05T08:27:05.806590
2015-09-03T13:07:39
2015-09-03T13:07:39
41,813,794
1
0
null
null
null
null
UTF-8
C++
false
false
7,178
h
/* * DO NOT EDIT. THIS FILE IS GENERATED FROM e:/builds/moz2_slave/mozilla-1.9.2-win32-xulrunner/build/dom/interfaces/base/nsIDOMScreen.idl */ #ifndef __gen_nsIDOMScreen_h__ #define __gen_nsIDOMScreen_h__ #ifndef __gen_domstubs_h__ #include "domstubs.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define NS_NO_VTABLE #endif /* starting interface: nsIDOMScreen */ #define NS_IDOMSCREEN_IID_STR "77947960-b4af-11d2-bd93-00805f8ae3f4" #define NS_IDOMSCREEN_IID \ {0x77947960, 0xb4af, 0x11d2, \ { 0xbd, 0x93, 0x00, 0x80, 0x5f, 0x8a, 0xe3, 0xf4 }} class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMScreen : public nsISupports { public: NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMSCREEN_IID) /* readonly attribute long top; */ NS_SCRIPTABLE NS_IMETHOD GetTop(PRInt32 *aTop) = 0; /* readonly attribute long left; */ NS_SCRIPTABLE NS_IMETHOD GetLeft(PRInt32 *aLeft) = 0; /* readonly attribute long width; */ NS_SCRIPTABLE NS_IMETHOD GetWidth(PRInt32 *aWidth) = 0; /* readonly attribute long height; */ NS_SCRIPTABLE NS_IMETHOD GetHeight(PRInt32 *aHeight) = 0; /* readonly attribute long pixelDepth; */ NS_SCRIPTABLE NS_IMETHOD GetPixelDepth(PRInt32 *aPixelDepth) = 0; /* readonly attribute long colorDepth; */ NS_SCRIPTABLE NS_IMETHOD GetColorDepth(PRInt32 *aColorDepth) = 0; /* readonly attribute long availWidth; */ NS_SCRIPTABLE NS_IMETHOD GetAvailWidth(PRInt32 *aAvailWidth) = 0; /* readonly attribute long availHeight; */ NS_SCRIPTABLE NS_IMETHOD GetAvailHeight(PRInt32 *aAvailHeight) = 0; /* readonly attribute long availLeft; */ NS_SCRIPTABLE NS_IMETHOD GetAvailLeft(PRInt32 *aAvailLeft) = 0; /* readonly attribute long availTop; */ NS_SCRIPTABLE NS_IMETHOD GetAvailTop(PRInt32 *aAvailTop) = 0; }; NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMScreen, NS_IDOMSCREEN_IID) /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSIDOMSCREEN \ NS_SCRIPTABLE NS_IMETHOD GetTop(PRInt32 *aTop); \ NS_SCRIPTABLE NS_IMETHOD GetLeft(PRInt32 *aLeft); \ NS_SCRIPTABLE NS_IMETHOD GetWidth(PRInt32 *aWidth); \ NS_SCRIPTABLE NS_IMETHOD GetHeight(PRInt32 *aHeight); \ NS_SCRIPTABLE NS_IMETHOD GetPixelDepth(PRInt32 *aPixelDepth); \ NS_SCRIPTABLE NS_IMETHOD GetColorDepth(PRInt32 *aColorDepth); \ NS_SCRIPTABLE NS_IMETHOD GetAvailWidth(PRInt32 *aAvailWidth); \ NS_SCRIPTABLE NS_IMETHOD GetAvailHeight(PRInt32 *aAvailHeight); \ NS_SCRIPTABLE NS_IMETHOD GetAvailLeft(PRInt32 *aAvailLeft); \ NS_SCRIPTABLE NS_IMETHOD GetAvailTop(PRInt32 *aAvailTop); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSIDOMSCREEN(_to) \ NS_SCRIPTABLE NS_IMETHOD GetTop(PRInt32 *aTop) { return _to GetTop(aTop); } \ NS_SCRIPTABLE NS_IMETHOD GetLeft(PRInt32 *aLeft) { return _to GetLeft(aLeft); } \ NS_SCRIPTABLE NS_IMETHOD GetWidth(PRInt32 *aWidth) { return _to GetWidth(aWidth); } \ NS_SCRIPTABLE NS_IMETHOD GetHeight(PRInt32 *aHeight) { return _to GetHeight(aHeight); } \ NS_SCRIPTABLE NS_IMETHOD GetPixelDepth(PRInt32 *aPixelDepth) { return _to GetPixelDepth(aPixelDepth); } \ NS_SCRIPTABLE NS_IMETHOD GetColorDepth(PRInt32 *aColorDepth) { return _to GetColorDepth(aColorDepth); } \ NS_SCRIPTABLE NS_IMETHOD GetAvailWidth(PRInt32 *aAvailWidth) { return _to GetAvailWidth(aAvailWidth); } \ NS_SCRIPTABLE NS_IMETHOD GetAvailHeight(PRInt32 *aAvailHeight) { return _to GetAvailHeight(aAvailHeight); } \ NS_SCRIPTABLE NS_IMETHOD GetAvailLeft(PRInt32 *aAvailLeft) { return _to GetAvailLeft(aAvailLeft); } \ NS_SCRIPTABLE NS_IMETHOD GetAvailTop(PRInt32 *aAvailTop) { return _to GetAvailTop(aAvailTop); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSIDOMSCREEN(_to) \ NS_SCRIPTABLE NS_IMETHOD GetTop(PRInt32 *aTop) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTop(aTop); } \ NS_SCRIPTABLE NS_IMETHOD GetLeft(PRInt32 *aLeft) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLeft(aLeft); } \ NS_SCRIPTABLE NS_IMETHOD GetWidth(PRInt32 *aWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWidth(aWidth); } \ NS_SCRIPTABLE NS_IMETHOD GetHeight(PRInt32 *aHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHeight(aHeight); } \ NS_SCRIPTABLE NS_IMETHOD GetPixelDepth(PRInt32 *aPixelDepth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPixelDepth(aPixelDepth); } \ NS_SCRIPTABLE NS_IMETHOD GetColorDepth(PRInt32 *aColorDepth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetColorDepth(aColorDepth); } \ NS_SCRIPTABLE NS_IMETHOD GetAvailWidth(PRInt32 *aAvailWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAvailWidth(aAvailWidth); } \ NS_SCRIPTABLE NS_IMETHOD GetAvailHeight(PRInt32 *aAvailHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAvailHeight(aAvailHeight); } \ NS_SCRIPTABLE NS_IMETHOD GetAvailLeft(PRInt32 *aAvailLeft) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAvailLeft(aAvailLeft); } \ NS_SCRIPTABLE NS_IMETHOD GetAvailTop(PRInt32 *aAvailTop) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAvailTop(aAvailTop); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsDOMScreen : public nsIDOMScreen { public: NS_DECL_ISUPPORTS NS_DECL_NSIDOMSCREEN nsDOMScreen(); private: ~nsDOMScreen(); protected: /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsDOMScreen, nsIDOMScreen) nsDOMScreen::nsDOMScreen() { /* member initializers and constructor code */ } nsDOMScreen::~nsDOMScreen() { /* destructor code */ } /* readonly attribute long top; */ NS_IMETHODIMP nsDOMScreen::GetTop(PRInt32 *aTop) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long left; */ NS_IMETHODIMP nsDOMScreen::GetLeft(PRInt32 *aLeft) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long width; */ NS_IMETHODIMP nsDOMScreen::GetWidth(PRInt32 *aWidth) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long height; */ NS_IMETHODIMP nsDOMScreen::GetHeight(PRInt32 *aHeight) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long pixelDepth; */ NS_IMETHODIMP nsDOMScreen::GetPixelDepth(PRInt32 *aPixelDepth) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long colorDepth; */ NS_IMETHODIMP nsDOMScreen::GetColorDepth(PRInt32 *aColorDepth) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long availWidth; */ NS_IMETHODIMP nsDOMScreen::GetAvailWidth(PRInt32 *aAvailWidth) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long availHeight; */ NS_IMETHODIMP nsDOMScreen::GetAvailHeight(PRInt32 *aAvailHeight) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long availLeft; */ NS_IMETHODIMP nsDOMScreen::GetAvailLeft(PRInt32 *aAvailLeft) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long availTop; */ NS_IMETHODIMP nsDOMScreen::GetAvailTop(PRInt32 *aAvailTop) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #endif /* __gen_nsIDOMScreen_h__ */
[ "gears.daemon@fe895e04-df30-0410-9975-d76d301b4276" ]
gears.daemon@fe895e04-df30-0410-9975-d76d301b4276
7ac19f7f7267e06424deb0c8c0866952f0383fba
9b010c70277bfe06a25ece30cfaae81db45b2a68
/FileTimeNew/stdafx.cpp
4edbcff7da0dfa92d02abb016b02066b26b7a674
[]
no_license
hbprotoss/FileTimeEditor
e25652f87292435c9e8ec34aead4f57c4af25821
9c045d9619dbb2f38b01572df2e3ebc852d50927
refs/heads/master
2020-03-29T11:05:55.290713
2013-01-18T12:35:25
2013-01-18T12:35:25
7,686,366
1
0
null
null
null
null
GB18030
C++
false
false
172
cpp
// stdafx.cpp : 只包括标准包含文件的源文件 // FileTimeNew.pch 将作为预编译头 // stdafx.obj 将包含预编译类型信息 #include "stdafx.h"
[ "gamespy1991@gmail.com" ]
gamespy1991@gmail.com
14211818e9fc1db4c65d7fcd91443c42c9b6a0ea
200b10e9234898466ef415a08aee2799a2f31482
/vs/ucc-2013/ucc-2013/stmt.cpp
720463d891f25a5e798c44b1a90742753552d8c6
[]
no_license
EruBrent/uccVSTest
970e5ec88522d305a9dd6e1f12c3d28f0ffc45d2
6ea1a593ec967d83fdaa96d71bdaa889ebf8b557
refs/heads/master
2023-07-11T16:11:42.288011
2019-03-21T13:45:46
2019-03-21T13:45:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,826
cpp
#include "ucl.h" #include "grammer.h" #include "ast.h" #include "stmt.h" static int FIRST_Statement[] = { FIRST_STATEMENT, 0 }; static AstStatement ParseStatement ( void ); /** * expression-statement: * [expression] ; */ static AstStatement ParseExpressionStatement ( void ) { AstExpressionStatement exprStmt; CREATE_AST_NODE ( exprStmt, ExpressionStatement, AstExpressionStatement ); if (CurrentToken != TK_SEMICOLON) { exprStmt->expr = ParseExpression (); } Expect ( TK_SEMICOLON ); return ( AstStatement )exprStmt; } /** * label-statement: * ID : statement */ static AstStatement ParseLabelStatement ( void ) { AstLabelStatement labelStmt; int t; BeginPeekToken (); t = GetNextToken (); if (t == TK_COLON) { EndPeekToken (); CREATE_AST_NODE ( labelStmt, LabelStatement, AstLabelStatement ); labelStmt->id = (char*)TokenValue.p; NEXT_TOKEN; NEXT_TOKEN; labelStmt->stmt = ParseStatement (); return ( AstStatement )labelStmt; } else { EndPeekToken (); return ParseExpressionStatement (); } } /** * case-statement: * case constant-expression : statement */ static AstStatement ParseCaseStatement ( void ) { AstCaseStatement caseStmt; CREATE_AST_NODE ( caseStmt, CaseStatement, AstCaseStatement ); NEXT_TOKEN; caseStmt->expr = ParseConstantExpression (); Expect ( TK_COLON ); caseStmt->stmt = ParseStatement (); return ( AstStatement )caseStmt; } /** * default-statement: * default : statement */ static AstStatement ParseDefaultStatement ( void ) { AstDefaultStatement defStmt; CREATE_AST_NODE ( defStmt, DefaultStatement, AstDefaultStatement ); NEXT_TOKEN; Expect ( TK_COLON ); defStmt->stmt = ParseStatement (); return ( AstStatement )defStmt; } /** * if-statement: * if ( expression ) statement * if ( epxression ) statement else statement */ static AstStatement ParseIfStatement ( void ) { AstIfStatement ifStmt; CREATE_AST_NODE ( ifStmt, IfStatement, AstIfStatement ); NEXT_TOKEN; Expect ( TK_LPAREN ); ifStmt->expr = ParseExpression (); Expect ( TK_RPAREN ); ifStmt->thenStmt = ParseStatement (); if (CurrentToken == TK_ELSE) { NEXT_TOKEN; ifStmt->elseStmt = ParseStatement (); } return ( AstStatement )ifStmt; } /** * switch-statement: * switch ( expression ) statement */ static AstStatement ParseSwitchStatement ( void ) { AstSwitchStatement swtchStmt; CREATE_AST_NODE ( swtchStmt, SwitchStatement, AstSwitchStatement ); NEXT_TOKEN; Expect ( TK_LPAREN ); swtchStmt->expr = ParseExpression (); Expect ( TK_RPAREN ); swtchStmt->stmt = ParseStatement (); return ( AstStatement )swtchStmt; } /** * while-statement: * while ( expression ) statement */ static AstStatement ParseWhileStatement ( void ) { AstLoopStatement whileStmt; CREATE_AST_NODE ( whileStmt, WhileStatement, AstLoopStatement ); NEXT_TOKEN; Expect ( TK_LPAREN ); whileStmt->expr = ParseExpression (); Expect ( TK_RPAREN ); whileStmt->stmt = ParseStatement (); return ( AstStatement )whileStmt; } /** * do-statement: * do statement while ( expression ) ; */ static AstStatement ParseDoStatement () { AstLoopStatement doStmt; CREATE_AST_NODE ( doStmt, DoStatement, AstLoopStatement ); NEXT_TOKEN; doStmt->stmt = ParseStatement (); Expect ( TK_WHILE ); Expect ( TK_LPAREN ); doStmt->expr = ParseExpression (); Expect ( TK_RPAREN ); Expect ( TK_SEMICOLON ); return ( AstStatement )doStmt; } /** * for-statement: * for ( [expression] ; [expression] ; [expression] ) statement */ static AstStatement ParseForStatement () { AstForStatement forStmt; CREATE_AST_NODE ( forStmt, ForStatement, AstForStatement ); NEXT_TOKEN; Expect ( TK_LPAREN ); if (CurrentToken != TK_SEMICOLON) { forStmt->initExpr = ParseExpression (); } Expect ( TK_SEMICOLON ); if (CurrentToken != TK_SEMICOLON) { forStmt->expr = ParseExpression (); } Expect ( TK_SEMICOLON ); if (CurrentToken != TK_RPAREN) { forStmt->incrExpr = ParseExpression (); } Expect ( TK_RPAREN ); forStmt->stmt = ParseStatement (); return ( AstStatement )forStmt; } /** * goto-statement: * goto ID ; */ static AstStatement ParseGotoStatement ( void ) { AstGotoStatement gotoStmt; CREATE_AST_NODE ( gotoStmt, GotoStatement, AstGotoStatement ); NEXT_TOKEN; if (CurrentToken == TK_ID) { gotoStmt->id = (char*)TokenValue.p; NEXT_TOKEN; Expect ( TK_SEMICOLON ); } else { Error ( &TokenCoord, "Expect identifier" ); if (CurrentToken == TK_SEMICOLON) NEXT_TOKEN; } return ( AstStatement )gotoStmt; } /** * break-statement: * break ; */ static AstStatement ParseBreakStatement ( void ) { AstBreakStatement brkStmt; CREATE_AST_NODE ( brkStmt, BreakStatement, AstBreakStatement ); NEXT_TOKEN; Expect ( TK_SEMICOLON ); return ( AstStatement )brkStmt; } /** * continue-statement: * continue ; */ static AstStatement ParseContinueStatement ( void ) { AstContinueStatement contStmt; CREATE_AST_NODE ( contStmt, ContinueStatement, AstContinueStatement ); NEXT_TOKEN; Expect ( TK_SEMICOLON ); return ( AstStatement )contStmt; } /** * return-statement: * return [expression] ; */ static AstStatement ParseReturnStatement ( void ) { AstReturnStatement retStmt; CREATE_AST_NODE ( retStmt, ReturnStatement, AstReturnStatement ); NEXT_TOKEN; if (CurrentToken != TK_SEMICOLON) { retStmt->expr = ParseExpression (); } Expect ( TK_SEMICOLON ); return ( AstStatement )retStmt; } /** * compound-statement: * { [declaration-list] [statement-list] } * declaration-list: * declaration * declaration-list declaration * statement-list: * statement * statement-list statement */ AstStatement ParseCompoundStatement ( void ) { AstCompoundStatement compStmt; AstNode *tail; Level++; CREATE_AST_NODE ( compStmt, CompoundStatement, AstCompoundStatement ); NEXT_TOKEN; tail = &compStmt->decls; while (CurrentTokenIn ( FIRST_Declaration )) { // for example, "f(20,30);", f is an id; but f(20,30) is a statement, not declaration. if (CurrentToken == TK_ID && !IsTypeName ( CurrentToken )) break; *tail = ( AstNode )ParseDeclaration (); tail = &(*tail)->next; } tail = &compStmt->stmts; while (CurrentToken != TK_RBRACE && CurrentToken != TK_END) { *tail = ( AstNode )ParseStatement (); tail = &(*tail)->next; if (CurrentToken == TK_RBRACE) break; SkipTo ( FIRST_Statement, "the beginning of a statement" ); } Expect ( TK_RBRACE ); PostCheckTypedef (); Level--; return ( AstStatement )compStmt; } /** * statement: * expression-statement * labeled-statement * case-statement * default-statement * if-statement * switch-statement * while-statement * do-statement * for-statement * goto-statement * continue-statement * break-statement * return-statement * compound-statement */ static AstStatement ParseStatement ( void ) { switch (CurrentToken) { case TK_ID: /** In ParseLabelStatement(), ucl peek the next token to determine whether it is label-statement or expression-statement. (1) loopAgain : ----------> Starting with ID ... goto loopAgain or (2) f(20,30) ----------> Starting with ID */ return ParseLabelStatement (); case TK_CASE: return ParseCaseStatement (); case TK_DEFAULT: return ParseDefaultStatement (); case TK_IF: return ParseIfStatement (); case TK_SWITCH: return ParseSwitchStatement (); case TK_WHILE: return ParseWhileStatement (); case TK_DO: return ParseDoStatement (); case TK_FOR: return ParseForStatement (); case TK_GOTO: return ParseGotoStatement (); case TK_CONTINUE: return ParseContinueStatement (); case TK_BREAK: return ParseBreakStatement (); case TK_RETURN: return ParseReturnStatement (); case TK_LBRACE: return ParseCompoundStatement (); default: return ParseExpressionStatement (); } }
[ "2801673893@qq.com" ]
2801673893@qq.com
3085dab1eeadbb1d14b08c005aec07b0726a129d
5d4b70ac5e555e3c8b68534ef1790ce041a0f65e
/samples/luxcoreui/deps/imgui-1.46/imgui.cpp
4a644b7c8092de5476e10ed13f22adac852d2561
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0", "MIT", "LicenseRef-scancode-public-domain" ]
permissive
LuxCoreRender/LuxCore
eddb0e3710cbc8fa28cb80f16d908f1ec3cc72db
2f35684a04d9e1bd48d6ffa88b19a88871e90942
refs/heads/master
2023-08-17T01:28:23.931381
2023-05-28T22:25:00
2023-05-28T22:25:00
111,695,279
1,055
154
Apache-2.0
2023-08-03T20:21:05
2017-11-22T14:36:32
C++
UTF-8
C++
false
false
384,701
cpp
// ImGui library v1.46 // Main code & documentation // See ImGui::ShowTestWindow() in imgui_demo.cpp for demo code. // Read 'Programmer guide' below for notes on how to setup ImGui in your codebase. // Get latest version at https://github.com/ocornut/imgui // Releases change-log at https://github.com/ocornut/imgui/releases // Developed by Omar Cornut and every direct or indirect contributors to the GitHub. // This library is free but I need your support to sustain development and maintenance. // If you work for a company, please consider financial support, e.g: https://www.patreon.com/imgui /* Index - MISSION STATEMENT - END-USER GUIDE - PROGRAMMER GUIDE (read me!) - API BREAKING CHANGES (read me when you update!) - FREQUENTLY ASKED QUESTIONS (FAQ), TIPS - How do I update to a newer version of ImGui? - Can I have multiple widgets with the same label? Can I have widget without a label? (Yes) - I integrated ImGui in my engine and the text or lines are blurry.. - I integrated ImGui in my engine and some elements are disappearing when I move windows around.. - How can I load a different font than the default? - How can I load multiple fonts? - How can I display and input non-latin characters such as Chinese, Japanese, Korean, Cyrillic? - ISSUES & TODO-LIST - CODE MISSION STATEMENT ================= - easy to use to create code-driven and data-driven tools - easy to use to create ad hoc short-lived tools and long-lived, more elaborate tools - easy to hack and improve - minimize screen real-estate usage - minimize setup and maintenance - minimize state storage on user side - portable, minimize dependencies, run on target (consoles, phones, etc.) - efficient runtime (NB- we do allocate when "growing" content - creating a window / opening a tree node for the first time, etc. - but a typical frame won't allocate anything) - read about immediate-mode gui principles @ http://mollyrocket.com/861, http://mollyrocket.com/forums/index.html Designed for developers and content-creators, not the typical end-user! Some of the weaknesses includes: - doesn't look fancy, doesn't animate - limited layout features, intricate layouts are typically crafted in code - occasionally uses statically sized buffers for string manipulations - won't crash, but some very long pieces of text may be clipped. functions like ImGui::TextUnformatted() don't have such restriction. END-USER GUIDE ============== - double-click title bar to collapse window - click upper right corner to close a window, available when 'bool* p_opened' is passed to ImGui::Begin() - click and drag on lower right corner to resize window - click and drag on any empty space to move window - double-click/double-tap on lower right corner grip to auto-fit to content - TAB/SHIFT+TAB to cycle through keyboard editable fields - use mouse wheel to scroll - use CTRL+mouse wheel to zoom window contents (if IO.FontAllowScaling is true) - CTRL+Click on a slider or drag box to input value as text - text editor: - Hold SHIFT or use mouse to select text. - CTRL+Left/Right to word jump - CTRL+Shift+Left/Right to select words - CTRL+A our Double-Click to select all - CTRL+X,CTRL+C,CTRL+V to use OS clipboard - CTRL+Z,CTRL+Y to undo/redo - ESCAPE to revert text to its original value - You can apply arithmetic operators +,*,/ on numerical values. Use +- to subtract (because - would set a negative value!) PROGRAMMER GUIDE ================ - read the FAQ below this section! - your code creates the UI, if your code doesn't run the UI is gone! == very dynamic UI, no construction/destructions steps, less data retention on your side, no state duplication, less sync, less bugs. - call and read ImGui::ShowTestWindow() for demo code demonstrating most features. - see examples/ folder for standalone sample applications. e.g. examples/opengl_example/ - customization: PushStyleColor()/PushStyleVar() or the style editor to tweak the look of the interface (e.g. if you want a more compact UI or a different color scheme). - getting started: - initialisation: call ImGui::GetIO() to retrieve the ImGuiIO structure and fill the 'Settings' data. - every frame: 1/ in your mainloop or right after you got your keyboard/mouse info, call ImGui::GetIO() and fill the 'Input' data, then call ImGui::NewFrame(). 2/ use any ImGui function you want between NewFrame() and Render() 3/ ImGui::Render() to render all the accumulated command-lists. it will call your RenderDrawListFn handler that you set in the IO structure. - all rendering information are stored into command-lists until ImGui::Render() is called. - ImGui never touches or know about your GPU state. the only function that knows about GPU is the RenderDrawListFn handler that you must provide. - effectively it means you can create widgets at any time in your code, regardless of "update" vs "render" considerations. - refer to the examples applications in the examples/ folder for instruction on how to setup your code. - a typical application skeleton may be: // Application init ImGuiIO& io = ImGui::GetIO(); io.DisplaySize.x = 1920.0f; io.DisplaySize.y = 1280.0f; io.IniFilename = "imgui.ini"; io.RenderDrawListsFn = my_render_function; // Setup a render function, or set to NULL and call GetDrawData() after Render() to access the render data. // TODO: Fill others settings of the io structure // Load texture atlas unsigned char* pixels; int width, height, bytes_per_pixels; io.Fonts->GetTexDataAsRGBA32(pixels, &width, &height, &bytes_per_pixels); // TODO: copy texture to graphics memory. // TODO: store your texture pointer/identifier in 'io.Fonts->TexID' // Application main loop while (true) { // 1) get low-level input // e.g. on Win32, GetKeyboardState(), or poll your events, etc. // 2) TODO: fill all fields of IO structure and call NewFrame ImGuiIO& io = ImGui::GetIO(); io.DeltaTime = 1.0f/60.0f; io.MousePos = mouse_pos; io.MouseDown[0] = mouse_button_0; io.KeysDown[i] = ... ImGui::NewFrame(); // 3) most of your application code here - you can use any of ImGui::* functions at any point in the frame ImGui::Begin("My window"); ImGui::Text("Hello, world."); ImGui::End(); GameUpdate(); GameRender(); // 4) render & swap video buffers ImGui::Render(); // swap video buffer, etc. } - after calling ImGui::NewFrame() you can read back flags from the IO structure to tell how ImGui intends to use your inputs. When 'io.WantCaptureMouse' or 'io.WantCaptureKeyboard' flags are set you may want to discard/hide the inputs from the rest of your application. When 'io.WantInputsCharacters' is set to may want to notify your OS to popup an on-screen keyboard, if available. API BREAKING CHANGES ==================== Occasionally introducing changes that are breaking the API. The breakage are generally minor and easy to fix. Here is a change-log of API breaking changes, if you are using one of the functions listed, expect to have to fix some code. Also read releases logs https://github.com/ocornut/imgui/releases for more details. - 2015/08/29 (1.45) - with the addition of horizontal scrollbar we made various fixes to inconsistencies with dealing with cursor position. GetCursorPos()/SetCursorPos() functions now include the scrolled amount. It shouldn't affect the majority of users, but take note that SetCursorPosX(100.0f) puts you at +100 from the starting x position which may include scrolling, not at +100 from the window left side. GetContentRegionMax()/GetWindowContentRegionMin()/GetWindowContentRegionMax() functions allow include the scrolled amount. Typically those were used in cases where no scrolling would happen so it may not be a problem, but watch out! - 2015/08/29 (1.45) - renamed style.ScrollbarWidth to style.ScrollbarSize - 2015/08/05 (1.44) - split imgui.cpp into extra files: imgui_demo.cpp imgui_draw.cpp imgui_internal.h that you need to add to your project. - 2015/07/18 (1.44) - fixed angles in ImDrawList::PathArcTo(), PathArcToFast() (introduced in 1.43) being off by an extra PI for no justifiable reason - 2015/07/14 (1.43) - add new ImFontAtlas::AddFont() API. For the old AddFont***, moved the 'font_no' parameter of ImFontAtlas::AddFont** functions to the ImFontConfig structure. you need to render your textured triangles with bilinear filtering to benefit from sub-pixel positioning of text. - 2015/07/08 (1.43) - switched rendering data to use indexed rendering. this is saving a fair amount of CPU/GPU and enables us to get anti-aliasing for a marginal cost. this necessary change will break your rendering function! the fix should be very easy. sorry for that :( - if you are using a vanilla copy of one of the imgui_impl_XXXX.cpp provided in the example, you just need to update your copy and you can ignore the rest. - the signature of the io.RenderDrawListsFn handler has changed! ImGui_XXXX_RenderDrawLists(ImDrawList** const cmd_lists, int cmd_lists_count) became: ImGui_XXXX_RenderDrawLists(ImDrawData* draw_data). argument 'cmd_lists' -> 'draw_data->CmdLists' argument 'cmd_lists_count' -> 'draw_data->CmdListsCount' ImDrawList 'commands' -> 'CmdBuffer' ImDrawList 'vtx_buffer' -> 'VtxBuffer' ImDrawList n/a -> 'IdxBuffer' (new) ImDrawCmd 'vtx_count' -> 'ElemCount' ImDrawCmd 'clip_rect' -> 'ClipRect' ImDrawCmd 'user_callback' -> 'UserCallback' ImDrawCmd 'texture_id' -> 'TextureId' - each ImDrawList now contains both a vertex buffer and an index buffer. For each command, render ElemCount/3 triangles using indices from the index buffer. - if you REALLY cannot render indexed primitives, you can call the draw_data->DeIndexAllBuffers() method to de-index the buffers. This is slow and a waste of CPU/GPU. Prefer using indexed rendering! - refer to code in the examples/ folder or ask on the GitHub if you are unsure of how to upgrade. please upgrade! - 2015/07/10 (1.43) - changed SameLine() parameters from int to float. - 2015/07/02 (1.42) - renamed SetScrollPosHere() to SetScrollFromCursorPos(). Kept inline redirection function (will obsolete). - 2015/07/02 (1.42) - renamed GetScrollPosY() to GetScrollY(). Necessary to reduce confusion along with other scrolling functions, because positions (e.g. cursor position) are not equivalent to scrolling amount. - 2015/06/14 (1.41) - changed ImageButton() default bg_col parameter from (0,0,0,1) (black) to (0,0,0,0) (transparent) - makes a difference when texture have transparence - 2015/06/14 (1.41) - changed Selectable() API from (label, selected, size) to (label, selected, flags, size). Size override should have been rarely be used. Sorry! - 2015/05/31 (1.40) - renamed GetWindowCollapsed() to IsWindowCollapsed() for consistency. Kept inline redirection function (will obsolete). - 2015/05/31 (1.40) - renamed IsRectClipped() to IsRectVisible() for consistency. Note that return value is opposite! Kept inline redirection function (will obsolete). - 2015/05/27 (1.40) - removed the third 'repeat_if_held' parameter from Button() - sorry! it was rarely used and inconsistent. Use PushButtonRepeat(true) / PopButtonRepeat() to enable repeat on desired buttons. - 2015/05/11 (1.40) - changed BeginPopup() API, takes a string identifier instead of a bool. ImGui needs to manage the open/closed state of popups. Call OpenPopup() to actually set the "opened" state of a popup. BeginPopup() returns true if the popup is opened. - 2015/05/03 (1.40) - removed style.AutoFitPadding, using style.WindowPadding makes more sense (the default values were already the same). - 2015/04/13 (1.38) - renamed IsClipped() to IsRectClipped(). Kept inline redirection function (will obsolete). - 2015/04/09 (1.38) - renamed ImDrawList::AddArc() to ImDrawList::AddArcFast() for compatibility with future API - 2015/04/03 (1.38) - removed ImGuiCol_CheckHovered, ImGuiCol_CheckActive, replaced with the more general ImGuiCol_FrameBgHovered, ImGuiCol_FrameBgActive. - 2014/04/03 (1.38) - removed support for passing -FLT_MAX..+FLT_MAX as the range for a SliderFloat(). Use DragFloat() or Inputfloat() instead. - 2015/03/17 (1.36) - renamed GetItemBoxMin()/GetItemBoxMax()/IsMouseHoveringBox() to GetItemRectMin()/GetItemRectMax()/IsMouseHoveringRect(). Kept inline redirection function (will obsolete). - 2015/03/15 (1.36) - renamed style.TreeNodeSpacing to style.IndentSpacing, ImGuiStyleVar_TreeNodeSpacing to ImGuiStyleVar_IndentSpacing - 2015/03/13 (1.36) - renamed GetWindowIsFocused() to IsWindowFocused(). Kept inline redirection function (will obsolete). - 2015/03/08 (1.35) - renamed style.ScrollBarWidth to style.ScrollbarWidth (casing) - 2015/02/27 (1.34) - renamed OpenNextNode(bool) to SetNextTreeNodeOpened(bool, ImGuiSetCond). Kept inline redirection function (will obsolete). - 2015/02/27 (1.34) - renamed ImGuiSetCondition_*** to ImGuiSetCond_***, and _FirstUseThisSession becomes _Once. - 2015/02/11 (1.32) - changed text input callback ImGuiTextEditCallback return type from void-->int. reserved for future use, return 0 for now. - 2015/02/10 (1.32) - renamed GetItemWidth() to CalcItemWidth() to clarify its evolving behavior - 2015/02/08 (1.31) - renamed GetTextLineSpacing() to GetTextLineHeightWithSpacing() - 2015/02/01 (1.31) - removed IO.MemReallocFn (unused) - 2015/01/19 (1.30) - renamed ImGuiStorage::GetIntPtr()/GetFloatPtr() to GetIntRef()/GetIntRef() because Ptr was conflicting with actual pointer storage functions. - 2015/01/11 (1.30) - big font/image API change! now loads TTF file. allow for multiple fonts. no need for a PNG loader. (1.30) - removed GetDefaultFontData(). uses io.Fonts->GetTextureData*() API to retrieve uncompressed pixels. this sequence: const void* png_data; unsigned int png_size; ImGui::GetDefaultFontData(NULL, NULL, &png_data, &png_size); // <Copy to GPU> became: unsigned char* pixels; int width, height; io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height); // <Copy to GPU> io.Fonts->TexID = (your_texture_identifier); you now have much more flexibility to load multiple TTF fonts and manage the texture buffer for internal needs. it is now recommended that you sample the font texture with bilinear interpolation. (1.30) - added texture identifier in ImDrawCmd passed to your render function (we can now render images). make sure to set io.Fonts->TexID. (1.30) - removed IO.PixelCenterOffset (unnecessary, can be handled in user projection matrix) (1.30) - removed ImGui::IsItemFocused() in favor of ImGui::IsItemActive() which handles all widgets - 2014/12/10 (1.18) - removed SetNewWindowDefaultPos() in favor of new generic API SetNextWindowPos(pos, ImGuiSetCondition_FirstUseEver) - 2014/11/28 (1.17) - moved IO.Font*** options to inside the IO.Font-> structure (FontYOffset, FontTexUvForWhite, FontBaseScale, FontFallbackGlyph) - 2014/11/26 (1.17) - reworked syntax of IMGUI_ONCE_UPON_A_FRAME helper macro to increase compiler compatibility - 2014/11/07 (1.15) - renamed IsHovered() to IsItemHovered() - 2014/10/02 (1.14) - renamed IMGUI_INCLUDE_IMGUI_USER_CPP to IMGUI_INCLUDE_IMGUI_USER_INL and imgui_user.cpp to imgui_user.inl (more IDE friendly) - 2014/09/25 (1.13) - removed 'text_end' parameter from IO.SetClipboardTextFn (the string is now always zero-terminated for simplicity) - 2014/09/24 (1.12) - renamed SetFontScale() to SetWindowFontScale() - 2014/09/24 (1.12) - moved IM_MALLOC/IM_REALLOC/IM_FREE preprocessor defines to IO.MemAllocFn/IO.MemReallocFn/IO.MemFreeFn - 2014/08/30 (1.09) - removed IO.FontHeight (now computed automatically) - 2014/08/30 (1.09) - moved IMGUI_FONT_TEX_UV_FOR_WHITE preprocessor define to IO.FontTexUvForWhite - 2014/08/28 (1.09) - changed the behavior of IO.PixelCenterOffset following various rendering fixes FREQUENTLY ASKED QUESTIONS (FAQ), TIPS ====================================== Q: How do I update to a newer version of ImGui? A: Overwrite the following files: imgui.cpp imgui.h imgui_demo.cpp imgui_draw.cpp imgui_internal.h stb_rect_pack.h stb_textedit.h stb_truetype.h Don't overwrite imconfig.h if you have made modification to your copy. Check the "API BREAKING CHANGES" sections for a list of occasional API breaking changes. If you have a problem with a function, search for its name in the code, there will likely be a comment about it. Please report any issue to the GitHub page! Q: Can I have multiple widgets with the same label? Can I have widget without a label? (Yes) A: Yes. A primer on the use of labels/IDs in ImGui.. - Elements that are not clickable, such as Text() items don't need an ID. - Interactive widgets require state to be carried over multiple frames (most typically ImGui often needs to remember what is the "active" widget). to do so they need an unique ID. unique ID are typically derived from a string label, an integer index or a pointer. Button("OK"); // Label = "OK", ID = hash of "OK" Button("Cancel"); // Label = "Cancel", ID = hash of "Cancel" - ID are uniquely scoped within windows, tree nodes, etc. so no conflict can happen if you have two buttons called "OK" in two different windows or in two different locations of a tree. - If you have a same ID twice in the same location, you'll have a conflict: Button("OK"); Button("OK"); // ID collision! Both buttons will be treated as the same. Fear not! this is easy to solve and there are many ways to solve it! - When passing a label you can optionally specify extra unique ID information within string itself. This helps solving the simpler collision cases. use "##" to pass a complement to the ID that won't be visible to the end-user: Button("Play"); // Label = "Play", ID = hash of "Play" Button("Play##foo1"); // Label = "Play", ID = hash of "Play##foo1" (different from above) Button("Play##foo2"); // Label = "Play", ID = hash of "Play##foo2" (different from above) - If you want to completely hide the label, but still need an ID: Checkbox("##On", &b); // Label = "", ID = hash of "##On" (no label!) - Occasionally/rarely you might want change a label while preserving a constant ID. This allows you to animate labels. For example you may want to include varying information in a window title bar (and windows are uniquely identified by their ID.. obviously) Use "###" to pass a label that isn't part of ID: Button("Hello###ID"; // Label = "Hello", ID = hash of "ID" Button("World###ID"; // Label = "World", ID = hash of "ID" (same as above) sprintf(buf, "My game (%f FPS)###MyGame"); Begin(buf); // Variable label, ID = hash of "MyGame" - Use PushID() / PopID() to create scopes and avoid ID conflicts within the same Window. This is the most convenient way of distinguishing ID if you are iterating and creating many UI elements. You can push a pointer, a string or an integer value. Remember that ID are formed from the concatenation of everything in the ID stack! for (int i = 0; i < 100; i++) { PushID(i); Button("Click"); // Label = "Click", ID = hash of integer + "label" (unique) PopID(); } for (int i = 0; i < 100; i++) { MyObject* obj = Objects[i]; PushID(obj); Button("Click"); // Label = "Click", ID = hash of pointer + "label" (unique) PopID(); } for (int i = 0; i < 100; i++) { MyObject* obj = Objects[i]; PushID(obj->Name); Button("Click"); // Label = "Click", ID = hash of string + "label" (unique) PopID(); } - More example showing that you can stack multiple prefixes into the ID stack: Button("Click"); // Label = "Click", ID = hash of "Click" PushID("node"); Button("Click"); // Label = "Click", ID = hash of "node" + "Click" PushID(my_ptr); Button("Click"); // Label = "Click", ID = hash of "node" + ptr + "Click" PopID(); PopID(); - Tree nodes implicitly creates a scope for you by calling PushID(). Button("Click"); // Label = "Click", ID = hash of "Click" if (TreeNode("node")) { Button("Click"); // Label = "Click", ID = hash of "node" + "Click" TreePop(); } - When working with trees, ID are used to preserve the opened/closed state of each tree node. Depending on your use cases you may want to use strings, indices or pointers as ID. e.g. when displaying a single object that may change over time (1-1 relationship), using a static string as ID will preserve your node open/closed state when the targeted object change. e.g. when displaying a list of objects, using indices or pointers as ID will preserve the node open/closed state differently. experiment and see what makes more sense! Q: I integrated ImGui in my engine and the text or lines are blurry.. A: In your Render function, try translating your projection matrix by (0.5f,0.5f) or (0.375f,0.375f). Also make sure your orthographic projection matrix and io.DisplaySize matches your actual framebuffer dimension. Q. I integrated ImGui in my engine and some elements are disappearing when I move windows around.. Most likely you are mishandling the clipping rectangles in your render function. Rectangles provided by ImGui are defined as (x1,y1,x2,y2) and NOT as (x1,y1,width,height). Q: How can I load a different font than the default? (default is an embedded version of ProggyClean.ttf, rendered at size 13) A: Use the font atlas to load the TTF file you want: ImGuiIO& io = ImGui::GetIO(); io.Fonts->AddFontFromFileTTF("myfontfile.ttf", size_in_pixels); io.Fonts->GetTexDataAsRGBA32() or GetTexDataAsAlpha8() Q: How can I load multiple fonts? A: Use the font atlas to pack them into a single texture: ImGuiIO& io = ImGui::GetIO(); ImFont* font0 = io.Fonts->AddFontDefault(); ImFont* font1 = io.Fonts->AddFontFromFileTTF("myfontfile.ttf", size_in_pixels); ImFont* font2 = io.Fonts->AddFontFromFileTTF("myfontfile2.ttf", size_in_pixels); io.Fonts->GetTexDataAsRGBA32() or GetTexDataAsAlpha8() // the first loaded font gets used by default // use ImGui::PushFont()/ImGui::PopFont() to change the font at runtime // Options ImFontConfig config; config.OversampleH = 3; config.OversampleV = 3; config.GlyphExtraSpacing.x = 1.0f; io.Fonts->LoadFromFileTTF("myfontfile.ttf", size_pixels, &config); // Combine multiple fonts into one ImWchar ranges[] = { 0xf000, 0xf3ff, 0 }; ImFontConfig config; config.MergeMode = true; io.Fonts->AddFontDefault(); io.Fonts->LoadFromFileTTF("fontawesome-webfont.ttf", 16.0f, &config, ranges); io.Fonts->LoadFromFileTTF("myfontfile.ttf", size_pixels, NULL, &config, io.Fonts->GetGlyphRangesJapanese()); Read extra_fonts/README.txt or ImFontAtlas class for more details. Q: How can I display and input non-Latin characters such as Chinese, Japanese, Korean, Cyrillic? A: When loading a font, pass custom Unicode ranges to specify the glyphs to load. ImGui will support UTF-8 encoding across the board. Character input depends on you passing the right character code to io.AddInputCharacter(). The example applications do that. io.Fonts->AddFontFromFileTTF("myfontfile.ttf", size_in_pixels, NULL, io.Fonts->GetGlyphRangesJapanese()); // Load Japanese characters io.Fonts->GetTexDataAsRGBA32() or GetTexDataAsAlpha8() io.ImeWindowHandle = MY_HWND; // To input using Microsoft IME, give ImGui the hwnd of your application - tip: the construct 'IMGUI_ONCE_UPON_A_FRAME { ... }' will run the block of code only once a frame. You can use it to quickly add custom UI in the middle of a deep nested inner loop in your code. - tip: you can create widgets without a Begin()/End() block, they will go in an implicit window called "Debug" - tip: you can call Begin() multiple times with the same name during the same frame, it will keep appending to the same window. this is also useful to set yourself in the context of another window (to get/set other settings) - tip: you can call Render() multiple times (e.g for VR renders). - tip: call and read the ShowTestWindow() code in imgui_demo.cpp for more example of how to use ImGui! ISSUES & TODO-LIST ================== Issue numbers (#) refer to github issues. The list below consist mostly of notes of things to do before they are requested/discussed by users (at that point it usually happens on the github) - window: maximum window size settings (per-axis). for large popups in particular user may not want the popup to fill all space. - window: add a way for very transient windows (non-saved, temporary overlay over hundreds of objects) to "clean" up from the global window list. perhaps a lightweight explicit cleanup pass. - window: auto-fit feedback loop when user relies on any dynamic layout (window width multiplier, column). clarify. - window: allow resizing of child windows (possibly given min/max for each axis?) - window: background options for child windows, border option (disable rounding) - window: add a way to clear an existing window instead of appending (e.g. for tooltip override using a consistent api rather than the deferred tooltip) - window: resizing from any sides? + mouse cursor directives for app. !- window: begin with *p_opened == false should return false. - window: get size/pos helpers given names (see discussion in #249) - window: a collapsed window can be stuck behind the main menu bar? - window: detect extra End() call that pop the "Debug" window out and assert at call site instead of later. !- scrolling: allow immediately effective change of scroll if we haven't appended items yet - splitter: formalize the splitter idiom into an official api (we want to handle n-way split) - widgets: display mode: widget-label, label-widget (aligned on column or using fixed size), label-newline-tab-widget etc. - widgets: clean up widgets internal toward exposing everything. - widgets: add disabled and read-only modes (#211) - main: considering adding EndFrame()/Init(). some constructs are awkward in the implementation because of the lack of them. - main: IsItemHovered() make it more consistent for various type of widgets, widgets with multiple components, etc. also effectively IsHovered() region sometimes differs from hot region, e.g tree nodes - main: IsItemHovered() info stored in a stack? so that 'if TreeNode() { Text; TreePop; } if IsHovered' return the hover state of the TreeNode? - input text: add ImGuiInputTextFlags_EnterToApply? (off #218) - input text multi-line: way to dynamically grow the buffer without forcing the user to initially allocate for worse case (follow up on #200) - input text multi-line: line numbers? status bar? (follow up on #200) - input number: optional range min/max for Input*() functions - input number: holding [-]/[+] buttons could increase the step speed non-linearly (or user-controlled) - input number: use mouse wheel to step up/down - input number: applying arithmetics ops (+,-,*,/) messes up with text edit undo stack. - text: proper alignment options - image/image button: misalignment on padded/bordered button? - image/image button: parameters are confusing, image() has tint_col,border_col whereas imagebutton() has bg_col/tint_col. Even thou they are different parameters ordering could be more consistent. can we fix that? - layout: horizontal layout helper (#97) - layout: more generic alignment state (left/right/centered) for single items? - layout: clean up the InputFloatN/SliderFloatN/ColorEdit4 layout code. item width should include frame padding. - columns: separator function or parameter that works within the column (currently Separator() bypass all columns) (#125) - columns: declare column set (each column: fixed size, %, fill, distribute default size among fills) (#125) - columns: columns header to act as button (~sort op) and allow resize/reorder (#125) - columns: user specify columns size (#125) - popup: border options. richer api like BeginChild() perhaps? (#197) - combo: sparse combo boxes (via function call?) - combo: contents should extends to fit label if combo widget is small - combo/listbox: keyboard control. need InputText-like non-active focus + key handling. considering keyboard for custom listbox (pr #203) - listbox: multiple selection - listbox: user may want to initial scroll to focus on the one selected value? - listbox: keyboard navigation. - listbox: scrolling should track modified selection. -! menus/popups: clarify usage of popups id, how MenuItem/Selectable closing parent popups affects the ID, etc. this is quite fishy needs improvement! (#331) - menus: local shortcuts, global shortcuts (#126) - menus: icons - menus: menubars: some sort of priority / effect of main menu-bar on desktop size? - statusbar: add a per-window status bar helper similar to what menubar does. - tabs - separator: separator on the initial position of a window is not visible (cursorpos.y <= clippos.y) - gauge: various forms of gauge/loading bars widgets - color: add a better color picker - plot: PlotLines() should use the polygon-stroke facilities (currently issues with averaging normals) - plot: make it easier for user to draw extra stuff into the graph (e.g: draw basis, highlight certain points, 2d plots, multiple plots) - plot: "smooth" automatic scale over time, user give an input 0.0(full user scale) 1.0(full derived from value) - plot: add a helper e.g. Plot(char* label, float value, float time_span=2.0f) that stores values and Plot them for you - probably another function name. and/or automatically allow to plot ANY displayed value (more reliance on stable ID) - applet: file selection widget (as an example) - slider: allow using the [-]/[+] buttons used by InputFloat()/InputInt() - slider: initial absolute click is imprecise. change to relative movement slider (same as scrollbar). - slider: add dragging-based widgets to edit values with mouse (on 2 axises), saving screen real-estate. - slider: tint background based on value (e.g. v_min -> v_max, or use 0.0f either side of the sign) - slider & drag: int data passing through a float - drag float: up/down axis - text edit: clean up the mess caused by converting UTF-8 <> wchar. the code is rather inefficient right now. - text edit: centered text for slider as input text so it matches typical positioning. - text edit: flag to disable live update of the user buffer. - text edit: field resize behavior - field could stretch when being edited? hover tooltip shows more text? - tree node / optimization: avoid formatting when clipped. - tree node: tree-node/header right-most side doesn't take account of horizontal scrolling. - tree node: add treenode/treepush int variants? because (void*) cast from int warns on some platforms/settings - textwrapped: figure out better way to use TextWrapped() in an always auto-resize context (tooltip, etc.) (git issue #249) - settings: write more decent code to allow saving/loading new fields - settings: api for per-tool simple persistent data (bool,int,float,columns sizes,etc.) in .ini file - style: store rounded corners in texture to use 1 quad per corner (filled and wireframe). so rounding have minor cost. - style: color-box not always square? - style: a concept of "compact style" that the end-user can easily rely on (e.g. PushStyleCompact()?) that maps to other settings? avoid implementing duplicate helpers such as SmallCheckbox(), etc. - text: simple markup language for color change? - log: LogButtons() options for specifying depth and/or hiding depth slider - log: have more control over the log scope (e.g. stop logging when leaving current tree node scope) - log: be able to log anything (e.g. right-click on a window/tree-node, shows context menu? log into tty/file/clipboard) - log: let user copy any window content to clipboard easily (CTRL+C on windows? while moving it? context menu?). code is commented because it fails with multiple Begin/End pairs. - filters: set a current filter that tree node can automatically query to hide themselves - filters: handle wildcards (with implicit leading/trailing *), regexps - shortcuts: add a shortcut api, e.g. parse "&Save" and/or "Save (CTRL+S)", pass in to widgets or provide simple ways to use (button=activate, input=focus) !- keyboard: tooltip & combo boxes are messing up / not honoring keyboard tabbing - keyboard: full keyboard navigation and focus. - focus: SetKeyboardFocusHere() on with >= 0 offset could be done on same frame (else latch and modulate on beginning of next frame) - input: rework IO to be able to pass actual events to fix temporal aliasing issues. - input: support track pad style scrolling & slider edit. - misc: provide a way to compile out the entire implementation while providing a dummy API (e.g. #define IMGUI_DUMMY_IMPL) - misc: double-clicking on title bar to minimize isn't consistent, perhaps move to single-click on left-most collapse icon? - style editor: have a more global HSV setter (e.g. alter hue on all elements). consider replacing active/hovered by offset in HSV space? - style editor: color child window height expressed in multiple of line height. !- examples: directx9/directx11: resizing window duplicate the font data :( - optimization: use another hash function than crc32, e.g. FNV1a - optimization/render: merge command-lists with same clip-rect into one even if they aren't sequential? (as long as in-between clip rectangle don't overlap)? - optimization: turn some the various stack vectors into statically-sized arrays - optimization: better clipping for multi-component widgets */ #if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) #define _CRT_SECURE_NO_WARNINGS #endif #include "imgui.h" #define IMGUI_DEFINE_MATH_OPERATORS #include "imgui_internal.h" #include <ctype.h> // toupper, isprint #include <math.h> // sqrtf, fabsf, fmodf, powf, cosf, sinf, floorf, ceilf #include <stdio.h> // vsnprintf, sscanf, printf #include <new> // new (ptr) #if defined(_MSC_VER) && _MSC_VER <= 1500 // MSVC 2008 or earlier #include <stddef.h> // intptr_t #else #include <stdint.h> // intptr_t #endif #ifdef _MSC_VER #pragma warning (disable: 4127) // condition expression is constant #pragma warning (disable: 4505) // unreferenced local function has been removed (stb stuff) #pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen #define snprintf _snprintf #endif // Clang warnings with -Weverything #ifdef __clang__ #pragma clang diagnostic ignored "-Wold-style-cast" // warning : use of old-style cast // yes, they are more terse. #pragma clang diagnostic ignored "-Wfloat-equal" // warning : comparing floating point with == or != is unsafe // storing and comparing against same constants ok. #pragma clang diagnostic ignored "-Wformat-nonliteral" // warning : format string is not a string literal // passing non-literal to vsnformat(). yes, user passing incorrect format strings can crash the code. #pragma clang diagnostic ignored "-Wexit-time-destructors" // warning : declaration requires an exit-time destructor // exit-time destruction order is undefined. if MemFree() leads to users code that has been disabled before exit it might cause problems. ImGui coding style welcomes static/globals. #pragma clang diagnostic ignored "-Wglobal-constructors" // warning : declaration requires a global destructor // similar to above, not sure what the exact difference it. #pragma clang diagnostic ignored "-Wsign-conversion" // warning : implicit conversion changes signedness // #pragma clang diagnostic ignored "-Wmissing-noreturn" // warning : function xx could be declared with attribute 'noreturn' warning // GetDefaultFontData() asserts which some implementation makes it never return. #pragma clang diagnostic ignored "-Wdeprecated-declarations"// warning : 'xx' is deprecated: The POSIX name for this item.. // for strdup used in demo code (so user can copy & paste the code) #pragma clang diagnostic ignored "-Wint-to-void-pointer-cast" // warning : cast to 'void *' from smaller integer type 'int' #endif #ifdef __GNUC__ #pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used #pragma GCC diagnostic ignored "-Wint-to-pointer-cast" // warning: cast to pointer from integer of different size #endif //------------------------------------------------------------------------- // Forward Declarations //------------------------------------------------------------------------- static void LogRenderedText(const ImVec2& ref_pos, const char* text, const char* text_end = NULL); static const char* FindTextDisplayEnd(const char* text, const char* text_end = NULL); static void PushMultiItemsWidths(int components, float w_full = 0.0f); static float GetDraggedColumnOffset(int column_index); static bool IsKeyPressedMap(ImGuiKey key, bool repeat = true); static void SetCurrentFont(ImFont* font); static void SetCurrentWindow(ImGuiWindow* window); static void SetWindowScrollY(ImGuiWindow* window, float new_scroll_y); static void SetWindowPos(ImGuiWindow* window, const ImVec2& pos, ImGuiSetCond cond); static void SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiSetCond cond); static void SetWindowCollapsed(ImGuiWindow* window, bool collapsed, ImGuiSetCond cond); static ImGuiWindow* FindWindowByName(const char* name); static ImGuiWindow* FindHoveredWindow(ImVec2 pos, bool excluding_childs); static ImGuiWindow* CreateNewWindow(const char* name, ImVec2 size, ImGuiWindowFlags flags); static inline bool IsWindowContentHoverable(ImGuiWindow* window); static void ClearSetNextWindowData(); static void CheckStacksSize(ImGuiWindow* window, bool write); static void Scrollbar(ImGuiWindow* window, bool horizontal); static bool CloseWindowButton(bool* p_opened); static void AddDrawListToRenderList(ImVector<ImDrawList*>& out_render_list, ImDrawList* draw_list); static void AddWindowToRenderList(ImVector<ImDrawList*>& out_render_list, ImGuiWindow* window); static void AddWindowToSortedBuffer(ImVector<ImGuiWindow*>& out_sorted_windows, ImGuiWindow* window); static ImGuiIniData* FindWindowSettings(const char* name); static ImGuiIniData* AddWindowSettings(const char* name); static void LoadSettings(); static void SaveSettings(); static void MarkSettingsDirty(); static void PushClipRect(const ImRect& clip_rect, bool clipped_by_current = true); static void PushColumnClipRect(int column_index = -1); static void PopClipRect(); static ImRect GetVisibleRect(); static bool BeginPopupEx(const char* str_id, ImGuiWindowFlags extra_flags); static void CloseInactivePopups(); static void ClosePopupToLevel(int remaining); static void ClosePopup(ImGuiID id); static bool IsPopupOpen(ImGuiID id); static ImGuiWindow* GetFrontMostModalRootWindow(); static ImVec2 FindBestPopupWindowPos(const ImVec2& base_pos, const ImVec2& size, ImGuiWindowFlags flags, int* last_dir, const ImRect& r_inner); static bool InputTextFilterCharacter(unsigned int* p_char, ImGuiInputTextFlags flags, ImGuiTextEditCallback callback, void* user_data); static int InputTextCalcTextLenAndLineCount(const char* text_begin, const char** out_text_end); static ImVec2 InputTextCalcTextSizeW(const ImWchar* text_begin, const ImWchar* text_end, const ImWchar** remaining = NULL, ImVec2* out_offset = NULL, bool stop_on_new_line = false); static inline void DataTypeFormatString(ImGuiDataType data_type, void* data_ptr, const char* display_format, char* buf, int buf_size); static inline void DataTypeFormatString(ImGuiDataType data_type, void* data_ptr, int decimal_precision, char* buf, int buf_size); static void DataTypeApplyOp(ImGuiDataType data_type, int op, void* value1, const void* value2); static void DataTypeApplyOpFromText(const char* buf, const char* initial_value_buf, ImGuiDataType data_type, void* data_ptr, const char* scalar_format); //----------------------------------------------------------------------------- // Platform dependent default implementations //----------------------------------------------------------------------------- static const char* GetClipboardTextFn_DefaultImpl(); static void SetClipboardTextFn_DefaultImpl(const char* text); static void ImeSetInputScreenPosFn_DefaultImpl(int x, int y); //----------------------------------------------------------------------------- // Context //----------------------------------------------------------------------------- // We access everything through this pointer (always assumed to be != NULL) // You can swap the pointer to a different context by calling ImGui::SetInternalState() static ImGuiState GImDefaultState; ImGuiState* GImGui = &GImDefaultState; // Statically allocated default font atlas. This is merely a maneuver to keep ImFontAtlas definition at the bottom of the .h file (otherwise it'd be inside ImGuiIO) // Also we wouldn't be able to new() one at this point, before users may define IO.MemAllocFn. static ImFontAtlas GImDefaultFontAtlas; //----------------------------------------------------------------------------- // User facing structures //----------------------------------------------------------------------------- ImGuiStyle::ImGuiStyle() { Alpha = 1.0f; // Global alpha applies to everything in ImGui WindowPadding = ImVec2(8,8); // Padding within a window WindowMinSize = ImVec2(32,32); // Minimum window size WindowRounding = 9.0f; // Radius of window corners rounding. Set to 0.0f to have rectangular windows WindowTitleAlign = ImGuiAlign_Left; // Alignment for title bar text ChildWindowRounding = 0.0f; // Radius of child window corners rounding. Set to 0.0f to have rectangular windows FramePadding = ImVec2(4,3); // Padding within a framed rectangle (used by most widgets) FrameRounding = 0.0f; // Radius of frame corners rounding. Set to 0.0f to have rectangular frames (used by most widgets). ItemSpacing = ImVec2(8,4); // Horizontal and vertical spacing between widgets/lines ItemInnerSpacing = ImVec2(4,4); // Horizontal and vertical spacing between within elements of a composed widget (e.g. a slider and its label) TouchExtraPadding = ImVec2(0,0); // Expand reactive bounding box for touch-based system where touch position is not accurate enough. Unfortunately we don't sort widgets so priority on overlap will always be given to the first widget. So don't grow this too much! WindowFillAlphaDefault = 0.70f; // Default alpha of window background, if not specified in ImGui::Begin() IndentSpacing = 22.0f; // Horizontal spacing when e.g. entering a tree node ColumnsMinSpacing = 6.0f; // Minimum horizontal spacing between two columns ScrollbarSize = 16.0f; // Width of the vertical scrollbar, Height of the horizontal scrollbar ScrollbarRounding = 9.0f; // Radius of grab corners rounding for scrollbar GrabMinSize = 10.0f; // Minimum width/height of a grab box for slider/scrollbar GrabRounding = 0.0f; // Radius of grabs corners rounding. Set to 0.0f to have rectangular slider grabs. DisplayWindowPadding = ImVec2(22,22); // Window positions are clamped to be visible within the display area by at least this amount. Only covers regular windows. DisplaySafeAreaPadding = ImVec2(4,4); // If you cannot see the edge of your screen (e.g. on a TV) increase the safe area padding. Covers popups/tooltips as well regular windows. AntiAliasedLines = true; // Enable anti-aliasing on lines/borders. Disable if you are really short on CPU/GPU. AntiAliasedShapes = true; // Enable anti-aliasing on filled shapes (rounded rectangles, circles, etc.) CurveTessellationTol = 1.25f; // Tessellation tolerance. Decrease for highly tessellated curves (higher quality, more polygons), increase to reduce quality. Colors[ImGuiCol_Text] = ImVec4(0.90f, 0.90f, 0.90f, 1.00f); Colors[ImGuiCol_TextDisabled] = ImVec4(0.60f, 0.60f, 0.60f, 1.00f); Colors[ImGuiCol_WindowBg] = ImVec4(0.00f, 0.00f, 0.00f, 1.00f); Colors[ImGuiCol_ChildWindowBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); Colors[ImGuiCol_Border] = ImVec4(0.70f, 0.70f, 0.70f, 0.65f); Colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); Colors[ImGuiCol_FrameBg] = ImVec4(0.80f, 0.80f, 0.80f, 0.30f); // Background of checkbox, radio button, plot, slider, text input Colors[ImGuiCol_FrameBgHovered] = ImVec4(0.90f, 0.80f, 0.80f, 0.40f); Colors[ImGuiCol_FrameBgActive] = ImVec4(0.90f, 0.65f, 0.65f, 0.45f); Colors[ImGuiCol_TitleBg] = ImVec4(0.50f, 0.50f, 1.00f, 0.45f); Colors[ImGuiCol_TitleBgCollapsed] = ImVec4(0.40f, 0.40f, 0.80f, 0.20f); Colors[ImGuiCol_TitleBgActive] = ImVec4(0.50f, 0.50f, 1.00f, 0.55f); Colors[ImGuiCol_MenuBarBg] = ImVec4(0.40f, 0.40f, 0.55f, 0.80f); Colors[ImGuiCol_ScrollbarBg] = ImVec4(0.20f, 0.25f, 0.30f, 0.60f); Colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.40f, 0.40f, 0.80f, 0.30f); Colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(0.40f, 0.40f, 0.80f, 0.40f); Colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(0.80f, 0.50f, 0.50f, 0.40f); Colors[ImGuiCol_ComboBg] = ImVec4(0.20f, 0.20f, 0.20f, 0.99f); Colors[ImGuiCol_CheckMark] = ImVec4(0.90f, 0.90f, 0.90f, 0.50f); Colors[ImGuiCol_SliderGrab] = ImVec4(1.00f, 1.00f, 1.00f, 0.30f); Colors[ImGuiCol_SliderGrabActive] = ImVec4(0.80f, 0.50f, 0.50f, 1.00f); Colors[ImGuiCol_Button] = ImVec4(0.67f, 0.40f, 0.40f, 0.60f); Colors[ImGuiCol_ButtonHovered] = ImVec4(0.67f, 0.40f, 0.40f, 1.00f); Colors[ImGuiCol_ButtonActive] = ImVec4(0.80f, 0.50f, 0.50f, 1.00f); Colors[ImGuiCol_Header] = ImVec4(0.40f, 0.40f, 0.90f, 0.45f); Colors[ImGuiCol_HeaderHovered] = ImVec4(0.45f, 0.45f, 0.90f, 0.80f); Colors[ImGuiCol_HeaderActive] = ImVec4(0.53f, 0.53f, 0.87f, 0.80f); Colors[ImGuiCol_Column] = ImVec4(0.50f, 0.50f, 0.50f, 1.00f); Colors[ImGuiCol_ColumnHovered] = ImVec4(0.70f, 0.60f, 0.60f, 1.00f); Colors[ImGuiCol_ColumnActive] = ImVec4(0.90f, 0.70f, 0.70f, 1.00f); Colors[ImGuiCol_ResizeGrip] = ImVec4(1.00f, 1.00f, 1.00f, 0.30f); Colors[ImGuiCol_ResizeGripHovered] = ImVec4(1.00f, 1.00f, 1.00f, 0.60f); Colors[ImGuiCol_ResizeGripActive] = ImVec4(1.00f, 1.00f, 1.00f, 0.90f); Colors[ImGuiCol_CloseButton] = ImVec4(0.50f, 0.50f, 0.90f, 0.50f); Colors[ImGuiCol_CloseButtonHovered] = ImVec4(0.70f, 0.70f, 0.90f, 0.60f); Colors[ImGuiCol_CloseButtonActive] = ImVec4(0.70f, 0.70f, 0.70f, 1.00f); Colors[ImGuiCol_PlotLines] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); Colors[ImGuiCol_PlotLinesHovered] = ImVec4(0.90f, 0.70f, 0.00f, 1.00f); Colors[ImGuiCol_PlotHistogram] = ImVec4(0.90f, 0.70f, 0.00f, 1.00f); Colors[ImGuiCol_PlotHistogramHovered] = ImVec4(1.00f, 0.60f, 0.00f, 1.00f); Colors[ImGuiCol_TextSelectedBg] = ImVec4(0.00f, 0.00f, 1.00f, 0.35f); Colors[ImGuiCol_TooltipBg] = ImVec4(0.05f, 0.05f, 0.10f, 0.90f); Colors[ImGuiCol_ModalWindowDarkening] = ImVec4(0.20f, 0.20f, 0.20f, 0.35f); } ImGuiIO::ImGuiIO() { // Most fields are initialized with zero memset(this, 0, sizeof(*this)); DisplaySize = ImVec2(-1.0f, -1.0f); DeltaTime = 1.0f/60.0f; IniSavingRate = 5.0f; IniFilename = "imgui.ini"; LogFilename = "imgui_log.txt"; Fonts = &GImDefaultFontAtlas; FontGlobalScale = 1.0f; DisplayFramebufferScale = ImVec2(1.0f, 1.0f); MousePos = ImVec2(-1,-1); MousePosPrev = ImVec2(-1,-1); MouseDoubleClickTime = 0.30f; MouseDoubleClickMaxDist = 6.0f; MouseDragThreshold = 6.0f; for (int i = 0; i < IM_ARRAYSIZE(MouseDownDuration); i++) MouseDownDuration[i] = MouseDownDurationPrev[i] = -1.0f; for (int i = 0; i < IM_ARRAYSIZE(KeysDownDuration); i++) KeysDownDuration[i] = KeysDownDurationPrev[i] = -1.0f; for (int i = 0; i < ImGuiKey_COUNT; i++) KeyMap[i] = -1; KeyRepeatDelay = 0.250f; KeyRepeatRate = 0.050f; UserData = NULL; // User functions RenderDrawListsFn = NULL; MemAllocFn = malloc; MemFreeFn = free; GetClipboardTextFn = GetClipboardTextFn_DefaultImpl; // Platform dependent default implementations SetClipboardTextFn = SetClipboardTextFn_DefaultImpl; ImeSetInputScreenPosFn = ImeSetInputScreenPosFn_DefaultImpl; } // Pass in translated ASCII characters for text input. // - with glfw you can get those from the callback set in glfwSetCharCallback() // - on Windows you can get those using ToAscii+keyboard state, or via the WM_CHAR message void ImGuiIO::AddInputCharacter(ImWchar c) { const int n = ImStrlenW(InputCharacters); if (n + 1 < IM_ARRAYSIZE(InputCharacters)) { InputCharacters[n] = c; InputCharacters[n+1] = '\0'; } } void ImGuiIO::AddInputCharactersUTF8(const char* utf8_chars) { // We can't pass more wchars than ImGuiIO::InputCharacters[] can hold so don't convert more const int wchars_buf_len = sizeof(ImGuiIO::InputCharacters) / sizeof(ImWchar); ImWchar wchars[wchars_buf_len]; ImTextStrFromUtf8(wchars, wchars_buf_len, utf8_chars, NULL); for (int i = 0; wchars[i] != 0 && i < wchars_buf_len; i++) AddInputCharacter(wchars[i]); } //----------------------------------------------------------------------------- // HELPERS //----------------------------------------------------------------------------- #define IM_F32_TO_INT8(_VAL) ((int)((_VAL) * 255.0f + 0.5f)) #define IM_INT_MIN (-2147483647-1) #define IM_INT_MAX (2147483647) // Play it nice with Windows users. Notepad in 2015 still doesn't display text data with Unix-style \n. #ifdef _WIN32 #define IM_NEWLINE "\r\n" #else #define IM_NEWLINE "\n" #endif bool ImIsPointInTriangle(const ImVec2& p, const ImVec2& a, const ImVec2& b, const ImVec2& c) { bool b1 = ((p.x - b.x) * (a.y - b.y) - (p.y - b.y) * (a.x - b.x)) < 0.0f; bool b2 = ((p.x - c.x) * (b.y - c.y) - (p.y - c.y) * (b.x - c.x)) < 0.0f; bool b3 = ((p.x - a.x) * (c.y - a.y) - (p.y - a.y) * (c.x - a.x)) < 0.0f; return ((b1 == b2) && (b2 == b3)); } int ImStricmp(const char* str1, const char* str2) { int d; while ((d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; } return d; } int ImStrnicmp(const char* str1, const char* str2, int count) { int d = 0; while (count > 0 && (d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; count--; } return d; } char* ImStrdup(const char *str) { char *buff = (char*)ImGui::MemAlloc(strlen(str) + 1); IM_ASSERT(buff); strcpy(buff, str); return buff; } int ImStrlenW(const ImWchar* str) { int n = 0; while (*str++) n++; return n; } const ImWchar* ImStrbolW(const ImWchar* buf_mid_line, const ImWchar* buf_begin) // find beginning-of-line { while (buf_mid_line > buf_begin && buf_mid_line[-1] != '\n') buf_mid_line--; return buf_mid_line; } const char* ImStristr(const char* haystack, const char* haystack_end, const char* needle, const char* needle_end) { if (!needle_end) needle_end = needle + strlen(needle); const char un0 = (char)toupper(*needle); while ((!haystack_end && *haystack) || (haystack_end && haystack < haystack_end)) { if (toupper(*haystack) == un0) { const char* b = needle + 1; for (const char* a = haystack + 1; b < needle_end; a++, b++) if (toupper(*a) != toupper(*b)) break; if (b == needle_end) return haystack; } haystack++; } return NULL; } int ImFormatString(char* buf, int buf_size, const char* fmt, ...) { va_list args; va_start(args, fmt); int w = vsnprintf(buf, buf_size, fmt, args); va_end(args); buf[buf_size-1] = 0; return (w == -1) ? buf_size : w; } int ImFormatStringV(char* buf, int buf_size, const char* fmt, va_list args) { int w = vsnprintf(buf, buf_size, fmt, args); buf[buf_size-1] = 0; return (w == -1) ? buf_size : w; } // Pass data_size==0 for zero-terminated strings // FIXME-OPT: Replace with e.g. FNV1a hash? CRC32 pretty much randomly access 1KB. Need to do proper measurements. ImU32 ImHash(const void* data, int data_size, ImU32 seed) { static ImU32 crc32_lut[256] = { 0 }; if (!crc32_lut[1]) { const ImU32 polynomial = 0xEDB88320; for (ImU32 i = 0; i < 256; i++) { ImU32 crc = i; for (ImU32 j = 0; j < 8; j++) crc = (crc >> 1) ^ (ImU32(-int(crc & 1)) & polynomial); crc32_lut[i] = crc; } } seed = ~seed; ImU32 crc = seed; const unsigned char* current = (const unsigned char*)data; if (data_size > 0) { // Known size while (data_size--) crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ *current++]; } else { // Zero-terminated string while (unsigned char c = *current++) { // We support a syntax of "label###id" where only "###id" is included in the hash, and only "label" gets displayed. // Because this syntax is rarely used we are optimizing for the common case. // - If we reach ### in the string we discard the hash so far and reset to the seed. // - We don't do 'current += 2; continue;' after handling ### to keep the code smaller. if (c == '#' && current[0] == '#' && current[1] == '#') crc = seed; crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c]; } } return ~crc; } //----------------------------------------------------------------------------- // ImText* helpers //----------------------------------------------------------------------------- // Convert UTF-8 to 32-bits character, process single character input. // Based on stb_from_utf8() from github.com/nothings/stb/ // We handle UTF-8 decoding error by skipping forward. int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end) { unsigned int c = (unsigned int)-1; const unsigned char* str = (const unsigned char*)in_text; if (!(*str & 0x80)) { c = (unsigned int)(*str++); *out_char = c; return 1; } if ((*str & 0xe0) == 0xc0) { *out_char = 0xFFFD; // will be invalid but not end of string if (in_text_end && in_text_end - (const char*)str < 2) return 1; if (*str < 0xc2) return 2; c = (unsigned int)((*str++ & 0x1f) << 6); if ((*str & 0xc0) != 0x80) return 2; c += (*str++ & 0x3f); *out_char = c; return 2; } if ((*str & 0xf0) == 0xe0) { *out_char = 0xFFFD; // will be invalid but not end of string if (in_text_end && in_text_end - (const char*)str < 3) return 1; if (*str == 0xe0 && (str[1] < 0xa0 || str[1] > 0xbf)) return 3; if (*str == 0xed && str[1] > 0x9f) return 3; // str[1] < 0x80 is checked below c = (unsigned int)((*str++ & 0x0f) << 12); if ((*str & 0xc0) != 0x80) return 3; c += (unsigned int)((*str++ & 0x3f) << 6); if ((*str & 0xc0) != 0x80) return 3; c += (*str++ & 0x3f); *out_char = c; return 3; } if ((*str & 0xf8) == 0xf0) { *out_char = 0xFFFD; // will be invalid but not end of string if (in_text_end && in_text_end - (const char*)str < 4) return 1; if (*str > 0xf4) return 4; if (*str == 0xf0 && (str[1] < 0x90 || str[1] > 0xbf)) return 4; if (*str == 0xf4 && str[1] > 0x8f) return 4; // str[1] < 0x80 is checked below c = (unsigned int)((*str++ & 0x07) << 18); if ((*str & 0xc0) != 0x80) return 4; c += (unsigned int)((*str++ & 0x3f) << 12); if ((*str & 0xc0) != 0x80) return 4; c += (unsigned int)((*str++ & 0x3f) << 6); if ((*str & 0xc0) != 0x80) return 4; c += (*str++ & 0x3f); // utf-8 encodings of values used in surrogate pairs are invalid if ((c & 0xFFFFF800) == 0xD800) return 4; *out_char = c; return 4; } *out_char = 0; return 0; } int ImTextStrFromUtf8(ImWchar* buf, int buf_size, const char* in_text, const char* in_text_end, const char** in_text_remaining) { ImWchar* buf_out = buf; ImWchar* buf_end = buf + buf_size; while (buf_out < buf_end-1 && (!in_text_end || in_text < in_text_end) && *in_text) { unsigned int c; in_text += ImTextCharFromUtf8(&c, in_text, in_text_end); if (c == 0) break; if (c < 0x10000) // FIXME: Losing characters that don't fit in 2 bytes *buf_out++ = (ImWchar)c; } *buf_out = 0; if (in_text_remaining) *in_text_remaining = in_text; return (int)(buf_out - buf); } int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end) { int char_count = 0; while ((!in_text_end || in_text < in_text_end) && *in_text) { unsigned int c; in_text += ImTextCharFromUtf8(&c, in_text, in_text_end); if (c == 0) break; if (c < 0x10000) char_count++; } return char_count; } // Based on stb_to_utf8() from github.com/nothings/stb/ static inline int ImTextCharToUtf8(char* buf, int buf_size, unsigned int c) { if (c < 0x80) { buf[0] = (char)c; return 1; } if (c < 0x800) { if (buf_size < 2) return 0; buf[0] = (char)(0xc0 + (c >> 6)); buf[1] = (char)(0x80 + (c & 0x3f)); return 2; } if (c >= 0xdc00 && c < 0xe000) { return 0; } if (c >= 0xd800 && c < 0xdc00) { if (buf_size < 4) return 0; buf[0] = (char)(0xf0 + (c >> 18)); buf[1] = (char)(0x80 + ((c >> 12) & 0x3f)); buf[2] = (char)(0x80 + ((c >> 6) & 0x3f)); buf[3] = (char)(0x80 + ((c ) & 0x3f)); return 4; } //else if (c < 0x10000) { if (buf_size < 3) return 0; buf[0] = (char)(0xe0 + (c >> 12)); buf[1] = (char)(0x80 + ((c>> 6) & 0x3f)); buf[2] = (char)(0x80 + ((c ) & 0x3f)); return 3; } } static inline int ImTextCountUtf8BytesFromChar(unsigned int c) { if (c < 0x80) return 1; if (c < 0x800) return 2; if (c >= 0xdc00 && c < 0xe000) return 0; if (c >= 0xd800 && c < 0xdc00) return 4; return 3; } int ImTextStrToUtf8(char* buf, int buf_size, const ImWchar* in_text, const ImWchar* in_text_end) { char* buf_out = buf; const char* buf_end = buf + buf_size; while (buf_out < buf_end-1 && (!in_text_end || in_text < in_text_end) && *in_text) { unsigned int c = (unsigned int)(*in_text++); if (c < 0x80) *buf_out++ = (char)c; else buf_out += ImTextCharToUtf8(buf_out, (int)(buf_end-buf_out-1), c); } *buf_out = 0; return (int)(buf_out - buf); } int ImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end) { int bytes_count = 0; while ((!in_text_end || in_text < in_text_end) && *in_text) { unsigned int c = (unsigned int)(*in_text++); if (c < 0x80) bytes_count++; else bytes_count += ImTextCountUtf8BytesFromChar(c); } return bytes_count; } ImVec4 ImGui::ColorConvertU32ToFloat4(ImU32 in) { float s = 1.0f/255.0f; return ImVec4((in & 0xFF) * s, ((in >> 8) & 0xFF) * s, ((in >> 16) & 0xFF) * s, (in >> 24) * s); } ImU32 ImGui::ColorConvertFloat4ToU32(const ImVec4& in) { ImU32 out; out = ((ImU32)IM_F32_TO_INT8(ImSaturate(in.x))); out |= ((ImU32)IM_F32_TO_INT8(ImSaturate(in.y))) << 8; out |= ((ImU32)IM_F32_TO_INT8(ImSaturate(in.z))) << 16; out |= ((ImU32)IM_F32_TO_INT8(ImSaturate(in.w))) << 24; return out; } // Convert rgb floats ([0-1],[0-1],[0-1]) to hsv floats ([0-1],[0-1],[0-1]), from Foley & van Dam p592 // Optimized http://lolengine.net/blog/2013/01/13/fast-rgb-to-hsv void ImGui::ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v) { float K = 0.f; if (g < b) { const float tmp = g; g = b; b = tmp; K = -1.f; } if (r < g) { const float tmp = r; r = g; g = tmp; K = -2.f / 6.f - K; } const float chroma = r - (g < b ? g : b); out_h = fabsf(K + (g - b) / (6.f * chroma + 1e-20f)); out_s = chroma / (r + 1e-20f); out_v = r; } // Convert hsv floats ([0-1],[0-1],[0-1]) to rgb floats ([0-1],[0-1],[0-1]), from Foley & van Dam p593 // also http://en.wikipedia.org/wiki/HSL_and_HSV void ImGui::ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_b) { if (s == 0.0f) { // gray out_r = out_g = out_b = v; return; } h = fmodf(h, 1.0f) / (60.0f/360.0f); int i = (int)h; float f = h - (float)i; float p = v * (1.0f - s); float q = v * (1.0f - s * f); float t = v * (1.0f - s * (1.0f - f)); switch (i) { case 0: out_r = v; out_g = t; out_b = p; break; case 1: out_r = q; out_g = v; out_b = p; break; case 2: out_r = p; out_g = v; out_b = t; break; case 3: out_r = p; out_g = q; out_b = v; break; case 4: out_r = t; out_g = p; out_b = v; break; case 5: default: out_r = v; out_g = p; out_b = q; break; } } // Load file content into memory // Memory allocated with ImGui::MemAlloc(), must be freed by user using ImGui::MemFree() void* ImLoadFileToMemory(const char* filename, const char* file_open_mode, int* out_file_size, int padding_bytes) { IM_ASSERT(filename && file_open_mode); if (out_file_size) *out_file_size = 0; FILE* f; if ((f = fopen(filename, file_open_mode)) == NULL) return NULL; long file_size_signed; if (fseek(f, 0, SEEK_END) || (file_size_signed = ftell(f)) == -1 || fseek(f, 0, SEEK_SET)) { fclose(f); return NULL; } int file_size = (int)file_size_signed; void* file_data = ImGui::MemAlloc(file_size + padding_bytes); if (file_data == NULL) { fclose(f); return NULL; } if (fread(file_data, 1, (size_t)file_size, f) != (size_t)file_size) { fclose(f); ImGui::MemFree(file_data); return NULL; } if (padding_bytes > 0) memset((void *)(((char*)file_data) + file_size), 0, padding_bytes); fclose(f); if (out_file_size) *out_file_size = file_size; return file_data; } //----------------------------------------------------------------------------- // ImGuiStorage //----------------------------------------------------------------------------- // Helper: Key->value storage void ImGuiStorage::Clear() { Data.clear(); } // std::lower_bound but without the bullshit static ImVector<ImGuiStorage::Pair>::iterator LowerBound(ImVector<ImGuiStorage::Pair>& data, ImU32 key) { ImVector<ImGuiStorage::Pair>::iterator first = data.begin(); ImVector<ImGuiStorage::Pair>::iterator last = data.end(); int count = (int)(last - first); while (count > 0) { int count2 = count / 2; ImVector<ImGuiStorage::Pair>::iterator mid = first + count2; if (mid->key < key) { first = ++mid; count -= count2 + 1; } else { count = count2; } } return first; } int ImGuiStorage::GetInt(ImU32 key, int default_val) const { ImVector<Pair>::iterator it = LowerBound(const_cast<ImVector<ImGuiStorage::Pair>&>(Data), key); if (it == Data.end() || it->key != key) return default_val; return it->val_i; } float ImGuiStorage::GetFloat(ImU32 key, float default_val) const { ImVector<Pair>::iterator it = LowerBound(const_cast<ImVector<ImGuiStorage::Pair>&>(Data), key); if (it == Data.end() || it->key != key) return default_val; return it->val_f; } void* ImGuiStorage::GetVoidPtr(ImGuiID key) const { ImVector<Pair>::iterator it = LowerBound(const_cast<ImVector<ImGuiStorage::Pair>&>(Data), key); if (it == Data.end() || it->key != key) return NULL; return it->val_p; } // References are only valid until a new value is added to the storage. Calling a Set***() function or a Get***Ref() function invalidates the pointer. int* ImGuiStorage::GetIntRef(ImGuiID key, int default_val) { ImVector<Pair>::iterator it = LowerBound(Data, key); if (it == Data.end() || it->key != key) it = Data.insert(it, Pair(key, default_val)); return &it->val_i; } float* ImGuiStorage::GetFloatRef(ImGuiID key, float default_val) { ImVector<Pair>::iterator it = LowerBound(Data, key); if (it == Data.end() || it->key != key) it = Data.insert(it, Pair(key, default_val)); return &it->val_f; } void** ImGuiStorage::GetVoidPtrRef(ImGuiID key, void* default_val) { ImVector<Pair>::iterator it = LowerBound(Data, key); if (it == Data.end() || it->key != key) it = Data.insert(it, Pair(key, default_val)); return &it->val_p; } // FIXME-OPT: Need a way to reuse the result of lower_bound when doing GetInt()/SetInt() - not too bad because it only happens on explicit interaction (maximum one a frame) void ImGuiStorage::SetInt(ImU32 key, int val) { ImVector<Pair>::iterator it = LowerBound(Data, key); if (it == Data.end() || it->key != key) { Data.insert(it, Pair(key, val)); return; } it->val_i = val; } void ImGuiStorage::SetFloat(ImU32 key, float val) { ImVector<Pair>::iterator it = LowerBound(Data, key); if (it == Data.end() || it->key != key) { Data.insert(it, Pair(key, val)); return; } it->val_f = val; } void ImGuiStorage::SetVoidPtr(ImU32 key, void* val) { ImVector<Pair>::iterator it = LowerBound(Data, key); if (it == Data.end() || it->key != key) { Data.insert(it, Pair(key, val)); return; } it->val_p = val; } void ImGuiStorage::SetAllInt(int v) { for (int i = 0; i < Data.Size; i++) Data[i].val_i = v; } //----------------------------------------------------------------------------- // ImGuiTextFilter //----------------------------------------------------------------------------- // Helper: Parse and apply text filters. In format "aaaaa[,bbbb][,ccccc]" ImGuiTextFilter::ImGuiTextFilter(const char* default_filter) { if (default_filter) { ImFormatString(InputBuf, IM_ARRAYSIZE(InputBuf), "%s", default_filter); Build(); } else { InputBuf[0] = 0; CountGrep = 0; } } bool ImGuiTextFilter::Draw(const char* label, float width) { if (width != 0.0f) ImGui::PushItemWidth(width); bool value_changed = ImGui::InputText(label, InputBuf, IM_ARRAYSIZE(InputBuf)); if (width != 0.0f) ImGui::PopItemWidth(); if (value_changed) Build(); return value_changed; } void ImGuiTextFilter::TextRange::split(char separator, ImVector<TextRange>& out) { out.resize(0); const char* wb = b; const char* we = wb; while (we < e) { if (*we == separator) { out.push_back(TextRange(wb, we)); wb = we + 1; } we++; } if (wb != we) out.push_back(TextRange(wb, we)); } void ImGuiTextFilter::Build() { Filters.resize(0); TextRange input_range(InputBuf, InputBuf+strlen(InputBuf)); input_range.split(',', Filters); CountGrep = 0; for (int i = 0; i != Filters.Size; i++) { Filters[i].trim_blanks(); if (Filters[i].empty()) continue; if (Filters[i].front() != '-') CountGrep += 1; } } bool ImGuiTextFilter::PassFilter(const char* text, const char* text_end) const { if (Filters.empty()) return true; if (text == NULL) text = ""; for (int i = 0; i != Filters.Size; i++) { const TextRange& f = Filters[i]; if (f.empty()) continue; if (f.front() == '-') { // Subtract if (ImStristr(text, text_end, f.begin()+1, f.end()) != NULL) return false; } else { // Grep if (ImStristr(text, text_end, f.begin(), f.end()) != NULL) return true; } } // Implicit * grep if (CountGrep == 0) return true; return false; } //----------------------------------------------------------------------------- // ImGuiTextBuffer //----------------------------------------------------------------------------- // On some platform vsnprintf() takes va_list by reference and modifies it. // va_copy is the 'correct' way to copy a va_list but Visual Studio prior to 2013 doesn't have it. #ifndef va_copy #define va_copy(dest, src) (dest = src) #endif // Helper: Text buffer for logging/accumulating text void ImGuiTextBuffer::appendv(const char* fmt, va_list args) { va_list args_copy; va_copy(args_copy, args); int len = vsnprintf(NULL, 0, fmt, args); // FIXME-OPT: could do a first pass write attempt, likely successful on first pass. if (len <= 0) return; const int write_off = Buf.Size; const int needed_sz = write_off + len; if (write_off + len >= Buf.Capacity) { int double_capacity = Buf.Capacity * 2; Buf.reserve(needed_sz > double_capacity ? needed_sz : double_capacity); } Buf.resize(needed_sz); ImFormatStringV(&Buf[write_off] - 1, len+1, fmt, args_copy); } void ImGuiTextBuffer::append(const char* fmt, ...) { va_list args; va_start(args, fmt); appendv(fmt, args); va_end(args); } //----------------------------------------------------------------------------- // ImGuiSimpleColumns //----------------------------------------------------------------------------- ImGuiSimpleColumns::ImGuiSimpleColumns() { Count = 0; Spacing = Width = NextWidth = 0.0f; memset(Pos, 0, sizeof(Pos)); memset(NextWidths, 0, sizeof(NextWidths)); } void ImGuiSimpleColumns::Update(int count, float spacing, bool clear) { IM_ASSERT(Count <= IM_ARRAYSIZE(Pos)); Count = count; Width = NextWidth = 0.0f; Spacing = spacing; if (clear) memset(NextWidths, 0, sizeof(NextWidths)); for (int i = 0; i < Count; i++) { if (i > 0 && NextWidths[i] > 0.0f) Width += Spacing; Pos[i] = (float)(int)Width; Width += NextWidths[i]; NextWidths[i] = 0.0f; } } float ImGuiSimpleColumns::DeclColumns(float w0, float w1, float w2) // not using va_arg because they promote float to double { NextWidth = 0.0f; NextWidths[0] = ImMax(NextWidths[0], w0); NextWidths[1] = ImMax(NextWidths[1], w1); NextWidths[2] = ImMax(NextWidths[2], w2); for (int i = 0; i < 3; i++) NextWidth += NextWidths[i] + ((i > 0 && NextWidths[i] > 0.0f) ? Spacing : 0.0f); return ImMax(Width, NextWidth); } float ImGuiSimpleColumns::CalcExtraSpace(float avail_w) { return ImMax(0.0f, avail_w - Width); } //----------------------------------------------------------------------------- // ImGuiWindow //----------------------------------------------------------------------------- ImGuiWindow::ImGuiWindow(const char* name) { Name = ImStrdup(name); ID = ImHash(name, 0); IDStack.push_back(ID); MoveID = GetID("#MOVE"); Flags = 0; PosFloat = Pos = ImVec2(0.0f, 0.0f); Size = SizeFull = ImVec2(0.0f, 0.0f); SizeContents = SizeContentsExplicit = ImVec2(0.0f, 0.0f); WindowPadding = ImVec2(0.0f, 0.0f); Scroll = ImVec2(0.0f, 0.0f); ScrollTarget = ImVec2(FLT_MAX, FLT_MAX); ScrollTargetCenterRatio = ImVec2(0.5f, 0.5f); ScrollbarX = ScrollbarY = false; ScrollbarSizes = ImVec2(0.0f, 0.0f); Active = WasActive = false; Accessed = false; Collapsed = false; SkipItems = false; BeginCount = 0; PopupID = 0; AutoFitFramesX = AutoFitFramesY = -1; AutoFitOnlyGrows = false; AutoPosLastDirection = -1; HiddenFrames = 0; SetWindowPosAllowFlags = SetWindowSizeAllowFlags = SetWindowCollapsedAllowFlags = ImGuiSetCond_Always | ImGuiSetCond_Once | ImGuiSetCond_FirstUseEver | ImGuiSetCond_Appearing; SetWindowPosCenterWanted = false; LastFrameActive = -1; ItemWidthDefault = 0.0f; FontWindowScale = 1.0f; DrawList = (ImDrawList*)ImGui::MemAlloc(sizeof(ImDrawList)); new(DrawList) ImDrawList(); DrawList->_OwnerName = Name; RootWindow = NULL; RootNonPopupWindow = NULL; FocusIdxAllCounter = FocusIdxTabCounter = -1; FocusIdxAllRequestCurrent = FocusIdxTabRequestCurrent = IM_INT_MAX; FocusIdxAllRequestNext = FocusIdxTabRequestNext = IM_INT_MAX; } ImGuiWindow::~ImGuiWindow() { DrawList->~ImDrawList(); ImGui::MemFree(DrawList); DrawList = NULL; ImGui::MemFree(Name); Name = NULL; } ImGuiID ImGuiWindow::GetID(const char* str, const char* str_end) { ImGuiID seed = IDStack.back(); ImGuiID id = ImHash(str, str_end ? (int)(str_end - str) : 0, seed); ImGui::KeepAliveID(id); return id; } ImGuiID ImGuiWindow::GetID(const void* ptr) { ImGuiID seed = IDStack.back(); ImGuiID id = ImHash(&ptr, sizeof(void*), seed); ImGui::KeepAliveID(id); return id; } //----------------------------------------------------------------------------- // Internal API exposed in imgui_internal.h //----------------------------------------------------------------------------- static void SetCurrentWindow(ImGuiWindow* window) { ImGuiState& g = *GImGui; g.CurrentWindow = window; if (window) g.FontSize = window->CalcFontSize(); } ImGuiWindow* ImGui::GetParentWindow() { ImGuiState& g = *GImGui; IM_ASSERT(g.CurrentWindowStack.Size >= 2); return g.CurrentWindowStack[g.CurrentWindowStack.Size - 2]; } void ImGui::SetActiveID(ImGuiID id, ImGuiWindow* window = NULL) { ImGuiState& g = *GImGui; g.ActiveId = id; g.ActiveIdAllowHoveringOthers = false; g.ActiveIdIsJustActivated = true; g.ActiveIdWindow = window; } void ImGui::SetHoveredID(ImGuiID id) { ImGuiState& g = *GImGui; g.HoveredId = id; g.HoveredIdAllowHoveringOthers = false; } void ImGui::KeepAliveID(ImGuiID id) { ImGuiState& g = *GImGui; if (g.ActiveId == id) g.ActiveIdIsAlive = true; } // Advance cursor given item size for layout. void ImGui::ItemSize(const ImVec2& size, float text_offset_y) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; // Always align ourselves on pixel boundaries ImGuiState& g = *GImGui; const float line_height = ImMax(window->DC.CurrentLineHeight, size.y); const float text_base_offset = ImMax(window->DC.CurrentLineTextBaseOffset, text_offset_y); window->DC.CursorPosPrevLine = ImVec2(window->DC.CursorPos.x + size.x, window->DC.CursorPos.y); window->DC.CursorPos = ImVec2((float)(int)(window->Pos.x + window->DC.ColumnsStartX + window->DC.ColumnsOffsetX), (float)(int)(window->DC.CursorPos.y + line_height + g.Style.ItemSpacing.y)); window->DC.CursorMaxPos.x = ImMax(window->DC.CursorMaxPos.x, window->DC.CursorPosPrevLine.x); window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, window->DC.CursorPos.y); //window->DrawList->AddCircle(window->DC.CursorMaxPos, 3.0f, 0xFF0000FF, 4); // Debug window->DC.PrevLineHeight = line_height; window->DC.PrevLineTextBaseOffset = text_base_offset; window->DC.CurrentLineHeight = window->DC.CurrentLineTextBaseOffset = 0.0f; } void ImGui::ItemSize(const ImRect& bb, float text_offset_y) { ItemSize(bb.GetSize(), text_offset_y); } // Declare item bounding box for clipping and interaction. // Note that the size can be different than the one provided to ItemSize(). Typically, widgets that spread over available surface // declares their minimum size requirement to ItemSize() and then use a larger region for drawing/interaction, which is passed to ItemAdd(). bool ImGui::ItemAdd(const ImRect& bb, const ImGuiID* id) { ImGuiWindow* window = GetCurrentWindow(); window->DC.LastItemID = id ? *id : 0; window->DC.LastItemRect = bb; if (IsClippedEx(bb, id, false)) { window->DC.LastItemHoveredAndUsable = window->DC.LastItemHoveredRect = false; return false; } // This is a sensible default, but widgets are free to override it after calling ItemAdd() ImGuiState& g = *GImGui; if (IsMouseHoveringRect(bb.Min, bb.Max)) { // Matching the behavior of IsHovered() but ignore if ActiveId==window->MoveID (we clicked on the window background) // So that clicking on items with no active id such as Text() still returns true with IsItemHovered() window->DC.LastItemHoveredRect = true; window->DC.LastItemHoveredAndUsable = false; if (g.HoveredRootWindow == window->RootWindow) if (g.ActiveId == 0 || (id && g.ActiveId == *id) || g.ActiveIdAllowHoveringOthers || (g.ActiveId == window->MoveID)) if (IsWindowContentHoverable(window)) window->DC.LastItemHoveredAndUsable = true; } else { window->DC.LastItemHoveredAndUsable = window->DC.LastItemHoveredRect = false; } return true; } bool ImGui::IsClippedEx(const ImRect& bb, const ImGuiID* id, bool clip_even_when_logged) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindowRead(); if (!bb.Overlaps(window->ClipRect)) { if (!id || *id != GImGui->ActiveId) if (clip_even_when_logged || !g.LogEnabled) return true; } return false; } bool ImGui::IsHovered(const ImRect& bb, ImGuiID id, bool flatten_childs) { ImGuiState& g = *GImGui; if (g.HoveredId == 0 || g.HoveredId == id || g.HoveredIdAllowHoveringOthers) { ImGuiWindow* window = GetCurrentWindowRead(); if (g.HoveredWindow == window || (flatten_childs && g.HoveredRootWindow == window->RootWindow)) if ((g.ActiveId == 0 || g.ActiveId == id || g.ActiveIdAllowHoveringOthers) && ImGui::IsMouseHoveringRect(bb.Min, bb.Max)) if (IsWindowContentHoverable(g.HoveredRootWindow)) return true; } return false; } bool ImGui::FocusableItemRegister(ImGuiWindow* window, bool is_active, bool tab_stop) { ImGuiState& g = *GImGui; const bool allow_keyboard_focus = window->DC.AllowKeyboardFocus; window->FocusIdxAllCounter++; if (allow_keyboard_focus) window->FocusIdxTabCounter++; // Process keyboard input at this point: TAB, Shift-TAB switch focus // We can always TAB out of a widget that doesn't allow tabbing in. if (tab_stop && window->FocusIdxAllRequestNext == IM_INT_MAX && window->FocusIdxTabRequestNext == IM_INT_MAX && is_active && IsKeyPressedMap(ImGuiKey_Tab)) { // Modulo on index will be applied at the end of frame once we've got the total counter of items. window->FocusIdxTabRequestNext = window->FocusIdxTabCounter + (g.IO.KeyShift ? (allow_keyboard_focus ? -1 : 0) : +1); } if (window->FocusIdxAllCounter == window->FocusIdxAllRequestCurrent) return true; if (allow_keyboard_focus) if (window->FocusIdxTabCounter == window->FocusIdxTabRequestCurrent) return true; return false; } void ImGui::FocusableItemUnregister(ImGuiWindow* window) { window->FocusIdxAllCounter--; window->FocusIdxTabCounter--; } ImVec2 ImGui::CalcItemSize(ImVec2 size, float default_x, float default_y) { ImGuiState& g = *GImGui; ImVec2 content_max; if (size.x < 0.0f || size.y < 0.0f) content_max = g.CurrentWindow->Pos + ImGui::GetContentRegionMax(); if (size.x <= 0.0f) size.x = (size.x == 0.0f) ? default_x : ImMax(content_max.x - g.CurrentWindow->DC.CursorPos.x, 4.0f) + size.x; if (size.y <= 0.0f) size.y = (size.y == 0.0f) ? default_y : ImMax(content_max.y - g.CurrentWindow->DC.CursorPos.y, 4.0f) + size.y; return size; } float ImGui::CalcWrapWidthForPos(const ImVec2& pos, float wrap_pos_x) { if (wrap_pos_x < 0.0f) return 0.0f; ImGuiWindow* window = GetCurrentWindowRead(); if (wrap_pos_x == 0.0f) wrap_pos_x = ImGui::GetContentRegionMax().x + window->Pos.x; else if (wrap_pos_x > 0.0f) wrap_pos_x += window->Pos.x - window->Scroll.x; // wrap_pos_x is provided is window local space const float wrap_width = wrap_pos_x > 0.0f ? ImMax(wrap_pos_x - pos.x, 0.00001f) : 0.0f; return wrap_width; } //----------------------------------------------------------------------------- void* ImGui::MemAlloc(size_t sz) { GImGui->IO.MetricsAllocs++; return GImGui->IO.MemAllocFn(sz); } void ImGui::MemFree(void* ptr) { if (ptr) GImGui->IO.MetricsAllocs--; return GImGui->IO.MemFreeFn(ptr); } const char* ImGui::GetClipboardText() { return GImGui->IO.GetClipboardTextFn ? GImGui->IO.GetClipboardTextFn() : ""; } void ImGui::SetClipboardText(const char* text) { if (GImGui->IO.SetClipboardTextFn) GImGui->IO.SetClipboardTextFn(text); } const char* ImGui::GetVersion() { return IMGUI_VERSION; } // Internal state access - if you want to share ImGui state between modules (e.g. DLL) or allocate it yourself // Note that we still point to some static data and members (such as GFontAtlas), so the state instance you end up using will point to the static data within its module void* ImGui::GetInternalState() { return GImGui; } size_t ImGui::GetInternalStateSize() { return sizeof(ImGuiState); } void ImGui::SetInternalState(void* state, bool construct) { if (construct) new (state) ImGuiState(); GImGui = (ImGuiState*)state; } ImGuiIO& ImGui::GetIO() { return GImGui->IO; } ImGuiStyle& ImGui::GetStyle() { return GImGui->Style; } // Same value as passed to your RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame() ImDrawData* ImGui::GetDrawData() { return GImGui->RenderDrawData.Valid ? &GImGui->RenderDrawData : NULL; } float ImGui::GetTime() { return GImGui->Time; } int ImGui::GetFrameCount() { return GImGui->FrameCount; } void ImGui::NewFrame() { ImGuiState& g = *GImGui; // Check user data IM_ASSERT(g.IO.DeltaTime >= 0.0f); IM_ASSERT(g.IO.DisplaySize.x >= 0.0f && g.IO.DisplaySize.y >= 0.0f); IM_ASSERT(g.IO.Fonts->Fonts.Size > 0); // Font Atlas not created. Did you call io.Fonts->GetTexDataAsRGBA32 / GetTexDataAsAlpha8 ? IM_ASSERT(g.IO.Fonts->Fonts[0]->IsLoaded()); // Font Atlas not created. Did you call io.Fonts->GetTexDataAsRGBA32 / GetTexDataAsAlpha8 ? IM_ASSERT(g.Style.CurveTessellationTol > 0.0f); // Invalid if (!g.Initialized) { // Initialize on first frame g.LogClipboard = (ImGuiTextBuffer*)ImGui::MemAlloc(sizeof(ImGuiTextBuffer)); new(g.LogClipboard) ImGuiTextBuffer(); IM_ASSERT(g.Settings.empty()); LoadSettings(); g.Initialized = true; } SetCurrentFont(g.IO.Fonts->Fonts[0]); g.Time += g.IO.DeltaTime; g.FrameCount += 1; g.Tooltip[0] = '\0'; g.OverlayDrawList.Clear(); g.OverlayDrawList.PushTextureID(g.IO.Fonts->TexID); g.OverlayDrawList.PushClipRectFullScreen(); g.OverlayDrawList.AddDrawCmd(); // Mark rendering data as invalid to prevent user who may have a handle on it to use it g.RenderDrawData.Valid = false; g.RenderDrawData.CmdLists = NULL; g.RenderDrawData.CmdListsCount = g.RenderDrawData.TotalVtxCount = g.RenderDrawData.TotalIdxCount = 0; // Update inputs state if (g.IO.MousePos.x < 0 && g.IO.MousePos.y < 0) g.IO.MousePos = ImVec2(-9999.0f, -9999.0f); if ((g.IO.MousePos.x < 0 && g.IO.MousePos.y < 0) || (g.IO.MousePosPrev.x < 0 && g.IO.MousePosPrev.y < 0)) // if mouse just appeared or disappeared (negative coordinate) we cancel out movement in MouseDelta g.IO.MouseDelta = ImVec2(0.0f, 0.0f); else g.IO.MouseDelta = g.IO.MousePos - g.IO.MousePosPrev; g.IO.MousePosPrev = g.IO.MousePos; for (int i = 0; i < IM_ARRAYSIZE(g.IO.MouseDown); i++) { g.IO.MouseClicked[i] = g.IO.MouseDown[i] && g.IO.MouseDownDuration[i] < 0.0f; g.IO.MouseReleased[i] = !g.IO.MouseDown[i] && g.IO.MouseDownDuration[i] >= 0.0f; g.IO.MouseDownDurationPrev[i] = g.IO.MouseDownDuration[i]; g.IO.MouseDownDuration[i] = g.IO.MouseDown[i] ? (g.IO.MouseDownDuration[i] < 0.0f ? 0.0f : g.IO.MouseDownDuration[i] + g.IO.DeltaTime) : -1.0f; g.IO.MouseDoubleClicked[i] = false; if (g.IO.MouseClicked[i]) { if (g.Time - g.IO.MouseClickedTime[i] < g.IO.MouseDoubleClickTime) { if (ImLengthSqr(g.IO.MousePos - g.IO.MouseClickedPos[i]) < g.IO.MouseDoubleClickMaxDist * g.IO.MouseDoubleClickMaxDist) g.IO.MouseDoubleClicked[i] = true; g.IO.MouseClickedTime[i] = -FLT_MAX; // so the third click isn't turned into a double-click } else { g.IO.MouseClickedTime[i] = g.Time; } g.IO.MouseClickedPos[i] = g.IO.MousePos; g.IO.MouseDragMaxDistanceSqr[i] = 0.0f; } else if (g.IO.MouseDown[i]) { g.IO.MouseDragMaxDistanceSqr[i] = ImMax(g.IO.MouseDragMaxDistanceSqr[i], ImLengthSqr(g.IO.MousePos - g.IO.MouseClickedPos[i])); } } memcpy(g.IO.KeysDownDurationPrev, g.IO.KeysDownDuration, sizeof(g.IO.KeysDownDuration)); for (int i = 0; i < IM_ARRAYSIZE(g.IO.KeysDown); i++) g.IO.KeysDownDuration[i] = g.IO.KeysDown[i] ? (g.IO.KeysDownDuration[i] < 0.0f ? 0.0f : g.IO.KeysDownDuration[i] + g.IO.DeltaTime) : -1.0f; // Calculate frame-rate for the user, as a purely luxurious feature g.FramerateSecPerFrameAccum += g.IO.DeltaTime - g.FramerateSecPerFrame[g.FramerateSecPerFrameIdx]; g.FramerateSecPerFrame[g.FramerateSecPerFrameIdx] = g.IO.DeltaTime; g.FramerateSecPerFrameIdx = (g.FramerateSecPerFrameIdx + 1) % IM_ARRAYSIZE(g.FramerateSecPerFrame); g.IO.Framerate = 1.0f / (g.FramerateSecPerFrameAccum / (float)IM_ARRAYSIZE(g.FramerateSecPerFrame)); // Clear reference to active widget if the widget isn't alive anymore g.HoveredIdPreviousFrame = g.HoveredId; g.HoveredId = 0; g.HoveredIdAllowHoveringOthers = false; if (!g.ActiveIdIsAlive && g.ActiveIdPreviousFrame == g.ActiveId && g.ActiveId != 0) SetActiveID(0); g.ActiveIdPreviousFrame = g.ActiveId; g.ActiveIdIsAlive = false; g.ActiveIdIsJustActivated = false; if (!g.ActiveId) g.MovedWindow = NULL; // Delay saving settings so we don't spam disk too much if (g.SettingsDirtyTimer > 0.0f) { g.SettingsDirtyTimer -= g.IO.DeltaTime; if (g.SettingsDirtyTimer <= 0.0f) SaveSettings(); } // Find the window we are hovering. Child windows can extend beyond the limit of their parent so we need to derive HoveredRootWindow from HoveredWindow g.HoveredWindow = FindHoveredWindow(g.IO.MousePos, false); if (g.HoveredWindow && (g.HoveredWindow->Flags & ImGuiWindowFlags_ChildWindow)) g.HoveredRootWindow = g.HoveredWindow->RootWindow; else g.HoveredRootWindow = FindHoveredWindow(g.IO.MousePos, true); if (ImGuiWindow* modal_window = GetFrontMostModalRootWindow()) { g.ModalWindowDarkeningRatio = ImMin(g.ModalWindowDarkeningRatio + g.IO.DeltaTime * 6.0f, 1.0f); if (g.HoveredRootWindow != modal_window) g.HoveredRootWindow = g.HoveredWindow = NULL; } else { g.ModalWindowDarkeningRatio = 0.0f; } // Are we using inputs? Tell user so they can capture/discard the inputs away from the rest of their application. // When clicking outside of a window we assume the click is owned by the application and won't request capture. int mouse_earliest_button_down = -1; bool mouse_any_down = false; for (int i = 0; i < IM_ARRAYSIZE(g.IO.MouseDown); i++) { if (g.IO.MouseClicked[i]) g.IO.MouseDownOwned[i] = (g.HoveredWindow != NULL) || (!g.OpenedPopupStack.empty()); mouse_any_down |= g.IO.MouseDown[i]; if (g.IO.MouseDown[i]) if (mouse_earliest_button_down == -1 || g.IO.MouseClickedTime[mouse_earliest_button_down] > g.IO.MouseClickedTime[i]) mouse_earliest_button_down = i; } bool mouse_owned_by_application = mouse_earliest_button_down != -1 && !g.IO.MouseDownOwned[mouse_earliest_button_down]; g.IO.WantCaptureMouse = (!mouse_owned_by_application && g.HoveredWindow != NULL) || (!mouse_owned_by_application && mouse_any_down) || (g.ActiveId != 0) || (!g.OpenedPopupStack.empty()) || (g.CaptureMouseNextFrame); g.IO.WantCaptureKeyboard = (g.ActiveId != 0) || (g.CaptureKeyboardNextFrame); g.IO.WantTextInput = (g.ActiveId != 0 && g.InputTextState.Id == g.ActiveId); g.MouseCursor = ImGuiMouseCursor_Arrow; g.CaptureMouseNextFrame = g.CaptureKeyboardNextFrame = false; // If mouse was first clicked outside of ImGui bounds we also cancel out hovering. if (mouse_owned_by_application) g.HoveredWindow = g.HoveredRootWindow = NULL; // Scale & Scrolling if (g.HoveredWindow && g.IO.MouseWheel != 0.0f && !g.HoveredWindow->Collapsed) { ImGuiWindow* window = g.HoveredWindow; if (g.IO.KeyCtrl) { if (g.IO.FontAllowUserScaling) { // Zoom / Scale window float new_font_scale = ImClamp(window->FontWindowScale + g.IO.MouseWheel * 0.10f, 0.50f, 2.50f); float scale = new_font_scale / window->FontWindowScale; window->FontWindowScale = new_font_scale; const ImVec2 offset = window->Size * (1.0f - scale) * (g.IO.MousePos - window->Pos) / window->Size; window->Pos += offset; window->PosFloat += offset; window->Size *= scale; window->SizeFull *= scale; } } else { // Scroll if (!(window->Flags & ImGuiWindowFlags_NoScrollWithMouse)) { const int scroll_lines = (window->Flags & ImGuiWindowFlags_ComboBox) ? 3 : 5; SetWindowScrollY(window, window->Scroll.y - g.IO.MouseWheel * window->CalcFontSize() * scroll_lines); } } } // Pressing TAB activate widget focus // NB: Don't discard FocusedWindow if it isn't active, so that a window that go on/off programatically won't lose its keyboard focus. if (g.ActiveId == 0 && g.FocusedWindow != NULL && g.FocusedWindow->Active && IsKeyPressedMap(ImGuiKey_Tab, false)) g.FocusedWindow->FocusIdxTabRequestNext = 0; // Mark all windows as not visible for (int i = 0; i != g.Windows.Size; i++) { ImGuiWindow* window = g.Windows[i]; window->WasActive = window->Active; window->Active = false; window->Accessed = false; } // No window should be open at the beginning of the frame. // But in order to allow the user to call NewFrame() multiple times without calling Render(), we are doing an explicit clear. g.CurrentWindowStack.resize(0); g.CurrentPopupStack.resize(0); CloseInactivePopups(); // Create implicit window - we will only render it if the user has added something to it. ImGui::SetNextWindowSize(ImVec2(400,400), ImGuiSetCond_FirstUseEver); ImGui::Begin("Debug"); } // NB: behavior of ImGui after Shutdown() is not tested/guaranteed at the moment. This function is merely here to free heap allocations. void ImGui::Shutdown() { ImGuiState& g = *GImGui; if (!g.Initialized) return; SaveSettings(); for (int i = 0; i < g.Windows.Size; i++) { g.Windows[i]->~ImGuiWindow(); ImGui::MemFree(g.Windows[i]); } g.Windows.clear(); g.WindowsSortBuffer.clear(); g.CurrentWindowStack.clear(); g.FocusedWindow = NULL; g.HoveredWindow = NULL; g.HoveredRootWindow = NULL; for (int i = 0; i < g.Settings.Size; i++) ImGui::MemFree(g.Settings[i].Name); g.Settings.clear(); g.ColorModifiers.clear(); g.StyleModifiers.clear(); g.FontStack.clear(); g.OpenedPopupStack.clear(); g.CurrentPopupStack.clear(); for (int i = 0; i < IM_ARRAYSIZE(g.RenderDrawLists); i++) g.RenderDrawLists[i].clear(); g.OverlayDrawList.ClearFreeMemory(); g.ColorEditModeStorage.Clear(); if (g.PrivateClipboard) { ImGui::MemFree(g.PrivateClipboard); g.PrivateClipboard = NULL; } g.InputTextState.Text.clear(); g.InputTextState.InitialText.clear(); g.InputTextState.TempTextBuffer.clear(); if (g.LogFile && g.LogFile != stdout) { fclose(g.LogFile); g.LogFile = NULL; } if (g.LogClipboard) { g.LogClipboard->~ImGuiTextBuffer(); ImGui::MemFree(g.LogClipboard); } if (g.IO.Fonts) // Testing for NULL to allow user to NULLify in case of running Shutdown() on multiple contexts. Bit hacky. g.IO.Fonts->Clear(); g.Initialized = false; } static ImGuiIniData* FindWindowSettings(const char* name) { ImGuiState& g = *GImGui; ImGuiID id = ImHash(name, 0); for (int i = 0; i != g.Settings.Size; i++) { ImGuiIniData* ini = &g.Settings[i]; if (ini->ID == id) return ini; } return NULL; } static ImGuiIniData* AddWindowSettings(const char* name) { GImGui->Settings.resize(GImGui->Settings.Size + 1); ImGuiIniData* ini = &GImGui->Settings.back(); ini->Name = ImStrdup(name); ini->ID = ImHash(name, 0); ini->Collapsed = false; ini->Pos = ImVec2(FLT_MAX,FLT_MAX); ini->Size = ImVec2(0,0); return ini; } // Zero-tolerance, poor-man .ini parsing // FIXME: Write something less rubbish static void LoadSettings() { ImGuiState& g = *GImGui; const char* filename = g.IO.IniFilename; if (!filename) return; int file_size; char* file_data = (char*)ImLoadFileToMemory(filename, "rb", &file_size, 1); if (!file_data) return; ImGuiIniData* settings = NULL; const char* buf_end = file_data + file_size; for (const char* line_start = file_data; line_start < buf_end; ) { const char* line_end = line_start; while (line_end < buf_end && *line_end != '\n' && *line_end != '\r') line_end++; if (line_start[0] == '[' && line_end > line_start && line_end[-1] == ']') { char name[64]; ImFormatString(name, IM_ARRAYSIZE(name), "%.*s", (int)(line_end-line_start-2), line_start+1); settings = FindWindowSettings(name); if (!settings) settings = AddWindowSettings(name); } else if (settings) { float x, y; int i; if (sscanf(line_start, "Pos=%f,%f", &x, &y) == 2) settings->Pos = ImVec2(x, y); else if (sscanf(line_start, "Size=%f,%f", &x, &y) == 2) settings->Size = ImMax(ImVec2(x, y), g.Style.WindowMinSize); else if (sscanf(line_start, "Collapsed=%d", &i) == 1) settings->Collapsed = (i != 0); } line_start = line_end+1; } ImGui::MemFree(file_data); } static void SaveSettings() { ImGuiState& g = *GImGui; const char* filename = g.IO.IniFilename; if (!filename) return; // Gather data from windows that were active during this session for (int i = 0; i != g.Windows.Size; i++) { ImGuiWindow* window = g.Windows[i]; if (window->Flags & ImGuiWindowFlags_NoSavedSettings) continue; ImGuiIniData* settings = FindWindowSettings(window->Name); settings->Pos = window->Pos; settings->Size = window->SizeFull; settings->Collapsed = window->Collapsed; } // Write .ini file // If a window wasn't opened in this session we preserve its settings FILE* f = fopen(filename, "wt"); if (!f) return; for (int i = 0; i != g.Settings.Size; i++) { const ImGuiIniData* settings = &g.Settings[i]; if (settings->Pos.x == FLT_MAX) continue; const char* name = settings->Name; if (const char* p = strstr(name, "###")) // Skip to the "###" marker if any. We don't skip past to match the behavior of GetID() name = p; fprintf(f, "[%s]\n", name); fprintf(f, "Pos=%d,%d\n", (int)settings->Pos.x, (int)settings->Pos.y); fprintf(f, "Size=%d,%d\n", (int)settings->Size.x, (int)settings->Size.y); fprintf(f, "Collapsed=%d\n", settings->Collapsed); fprintf(f, "\n"); } fclose(f); } static void MarkSettingsDirty() { ImGuiState& g = *GImGui; if (g.SettingsDirtyTimer <= 0.0f) g.SettingsDirtyTimer = g.IO.IniSavingRate; } // FIXME: Add a more explicit sort order in the window structure. static int ChildWindowComparer(const void* lhs, const void* rhs) { const ImGuiWindow* a = *(const ImGuiWindow**)lhs; const ImGuiWindow* b = *(const ImGuiWindow**)rhs; if (int d = (a->Flags & ImGuiWindowFlags_Popup) - (b->Flags & ImGuiWindowFlags_Popup)) return d; if (int d = (a->Flags & ImGuiWindowFlags_Tooltip) - (b->Flags & ImGuiWindowFlags_Tooltip)) return d; if (int d = (a->Flags & ImGuiWindowFlags_ComboBox) - (b->Flags & ImGuiWindowFlags_ComboBox)) return d; return 0; } static void AddWindowToSortedBuffer(ImVector<ImGuiWindow*>& out_sorted_windows, ImGuiWindow* window) { out_sorted_windows.push_back(window); if (window->Active) { int count = window->DC.ChildWindows.Size; if (count > 1) qsort(window->DC.ChildWindows.begin(), (size_t)count, sizeof(ImGuiWindow*), ChildWindowComparer); for (int i = 0; i < count; i++) { ImGuiWindow* child = window->DC.ChildWindows[i]; if (child->Active) AddWindowToSortedBuffer(out_sorted_windows, child); } } } static void AddDrawListToRenderList(ImVector<ImDrawList*>& out_render_list, ImDrawList* draw_list) { if (!draw_list->CmdBuffer.empty() && !draw_list->VtxBuffer.empty()) { if (draw_list->CmdBuffer.back().ElemCount == 0) draw_list->CmdBuffer.pop_back(); out_render_list.push_back(draw_list); // Check that draw_list doesn't use more vertices than indexable (default ImDrawIdx = 2 bytes = 64K vertices) // If this assert triggers because you are drawing lots of stuff manually, A) workaround by calling BeginChild()/EndChild() to put your draw commands in multiple draw lists, B) #define ImDrawIdx to a 'unsigned int' in imconfig.h and render accordingly. const unsigned long long int max_vtx_idx = (unsigned long long int)1L << (sizeof(ImDrawIdx)*8); IM_ASSERT((unsigned long long int)draw_list->_VtxCurrentIdx <= max_vtx_idx); GImGui->IO.MetricsRenderVertices += draw_list->VtxBuffer.Size; GImGui->IO.MetricsRenderIndices += draw_list->IdxBuffer.Size; } } static void AddWindowToRenderList(ImVector<ImDrawList*>& out_render_list, ImGuiWindow* window) { AddDrawListToRenderList(out_render_list, window->DrawList); for (int i = 0; i < window->DC.ChildWindows.Size; i++) { ImGuiWindow* child = window->DC.ChildWindows[i]; if (!child->Active) // clipped children may have been marked not active continue; if ((child->Flags & ImGuiWindowFlags_Popup) && child->HiddenFrames > 0) continue; AddWindowToRenderList(out_render_list, child); } } static void PushClipRect(const ImRect& clip_rect, bool clipped) { ImGuiWindow* window = ImGui::GetCurrentWindow(); ImRect cr = clip_rect; if (clipped) { // Clip our argument with the current clip rect cr.Clip(window->ClipRect); } cr.Max.x = ImMax(cr.Min.x, cr.Max.x); cr.Max.y = ImMax(cr.Min.y, cr.Max.y); IM_ASSERT(cr.Min.x <= cr.Max.x && cr.Min.y <= cr.Max.y); window->ClipRect = cr; window->DrawList->PushClipRect(ImVec4(cr.Min.x, cr.Min.y, cr.Max.x, cr.Max.y)); } static void PopClipRect() { ImGuiWindow* window = ImGui::GetCurrentWindow(); window->DrawList->PopClipRect(); window->ClipRect = window->DrawList->_ClipRectStack.back(); } // This is normally called by Render(). You may want to call it directly if you want to avoid calling Render() but the gain will be very minimal. void ImGui::EndFrame() { ImGuiState& g = *GImGui; IM_ASSERT(g.Initialized); // Forgot to call ImGui::NewFrame() IM_ASSERT(g.FrameCountEnded != g.FrameCount); // ImGui::EndFrame() called multiple times, or forgot to call ImGui::NewFrame() again // Render tooltip if (g.Tooltip[0]) { ImGui::BeginTooltip(); ImGui::TextUnformatted(g.Tooltip); ImGui::EndTooltip(); } // Hide implicit "Debug" window if it hasn't been used IM_ASSERT(g.CurrentWindowStack.Size == 1); // Mismatched Begin/End if (g.CurrentWindow && !g.CurrentWindow->Accessed) g.CurrentWindow->Active = false; ImGui::End(); // Click to focus window and start moving (after we're done with all our widgets) if (!g.ActiveId) g.MovedWindow = NULL; if (g.ActiveId == 0 && g.HoveredId == 0 && g.IO.MouseClicked[0]) { if (!(g.FocusedWindow && !g.FocusedWindow->WasActive && g.FocusedWindow->Active)) // Unless we just made a popup appear { if (g.HoveredRootWindow != NULL) { FocusWindow(g.HoveredWindow); if (!(g.HoveredWindow->Flags & ImGuiWindowFlags_NoMove)) { g.MovedWindow = g.HoveredWindow; SetActiveID(g.HoveredRootWindow->MoveID, g.HoveredRootWindow); } } else if (g.FocusedWindow != NULL && GetFrontMostModalRootWindow() == NULL) { // Clicking on void disable focus FocusWindow(NULL); } } } // Sort the window list so that all child windows are after their parent // We cannot do that on FocusWindow() because childs may not exist yet g.WindowsSortBuffer.resize(0); g.WindowsSortBuffer.reserve(g.Windows.Size); for (int i = 0; i != g.Windows.Size; i++) { ImGuiWindow* window = g.Windows[i]; if (window->Flags & ImGuiWindowFlags_ChildWindow) // if a child is active its parent will add it if (window->Active) continue; AddWindowToSortedBuffer(g.WindowsSortBuffer, window); } IM_ASSERT(g.Windows.Size == g.WindowsSortBuffer.Size); // we done something wrong g.Windows.swap(g.WindowsSortBuffer); // Clear Input data for next frame g.IO.MouseWheel = 0.0f; memset(g.IO.InputCharacters, 0, sizeof(g.IO.InputCharacters)); g.FrameCountEnded = g.FrameCount; } void ImGui::Render() { ImGuiState& g = *GImGui; IM_ASSERT(g.Initialized); // Forgot to call ImGui::NewFrame() if (g.FrameCountEnded != g.FrameCount) ImGui::EndFrame(); g.FrameCountRendered = g.FrameCount; // Skip render altogether if alpha is 0.0 // Note that vertex buffers have been created and are wasted, so it is best practice that you don't create windows in the first place, or consistently respond to Begin() returning false. if (g.Style.Alpha > 0.0f) { // Gather windows to render g.IO.MetricsRenderVertices = g.IO.MetricsRenderIndices = g.IO.MetricsActiveWindows = 0; for (int i = 0; i < IM_ARRAYSIZE(g.RenderDrawLists); i++) g.RenderDrawLists[i].resize(0); for (int i = 0; i != g.Windows.Size; i++) { ImGuiWindow* window = g.Windows[i]; if (window->Active && window->HiddenFrames <= 0 && (window->Flags & (ImGuiWindowFlags_ChildWindow)) == 0) { // FIXME: Generalize this with a proper layering system so e.g. user can draw in specific layers, below text, .. g.IO.MetricsActiveWindows++; if (window->Flags & ImGuiWindowFlags_Popup) AddWindowToRenderList(g.RenderDrawLists[1], window); else if (window->Flags & ImGuiWindowFlags_Tooltip) AddWindowToRenderList(g.RenderDrawLists[2], window); else AddWindowToRenderList(g.RenderDrawLists[0], window); } } // Flatten layers int n = g.RenderDrawLists[0].Size; int flattened_size = n; for (int i = 1; i < IM_ARRAYSIZE(g.RenderDrawLists); i++) flattened_size += g.RenderDrawLists[i].Size; g.RenderDrawLists[0].resize(flattened_size); for (int i = 1; i < IM_ARRAYSIZE(g.RenderDrawLists); i++) { ImVector<ImDrawList*>& layer = g.RenderDrawLists[i]; if (layer.empty()) continue; memcpy(&g.RenderDrawLists[0][n], &layer[0], layer.Size * sizeof(ImDrawList*)); n += layer.Size; } // Draw software mouse cursor if requested if (g.IO.MouseDrawCursor) { const ImGuiMouseCursorData& cursor_data = g.MouseCursorData[g.MouseCursor]; const ImVec2 pos = g.IO.MousePos - cursor_data.HotOffset; const ImVec2 size = cursor_data.Size; const ImTextureID tex_id = g.IO.Fonts->TexID; g.OverlayDrawList.PushTextureID(tex_id); g.OverlayDrawList.AddImage(tex_id, pos+ImVec2(1,0), pos+ImVec2(1,0) + size, cursor_data.TexUvMin[1], cursor_data.TexUvMax[1], 0x30000000); // Shadow g.OverlayDrawList.AddImage(tex_id, pos+ImVec2(2,0), pos+ImVec2(2,0) + size, cursor_data.TexUvMin[1], cursor_data.TexUvMax[1], 0x30000000); // Shadow g.OverlayDrawList.AddImage(tex_id, pos, pos + size, cursor_data.TexUvMin[1], cursor_data.TexUvMax[1], 0xFF000000); // Black border g.OverlayDrawList.AddImage(tex_id, pos, pos + size, cursor_data.TexUvMin[0], cursor_data.TexUvMax[0], 0xFFFFFFFF); // White fill g.OverlayDrawList.PopTextureID(); } if (!g.OverlayDrawList.VtxBuffer.empty()) AddDrawListToRenderList(g.RenderDrawLists[0], &g.OverlayDrawList); // Setup draw data g.RenderDrawData.Valid = true; g.RenderDrawData.CmdLists = (g.RenderDrawLists[0].Size > 0) ? &g.RenderDrawLists[0][0] : NULL; g.RenderDrawData.CmdListsCount = g.RenderDrawLists[0].Size; g.RenderDrawData.TotalVtxCount = g.IO.MetricsRenderVertices; g.RenderDrawData.TotalIdxCount = g.IO.MetricsRenderIndices; // Render. If user hasn't set a callback then they may retrieve the draw data via GetDrawData() if (g.RenderDrawData.CmdListsCount > 0 && g.IO.RenderDrawListsFn != NULL) g.IO.RenderDrawListsFn(&g.RenderDrawData); } } // Find the optional ## from which we stop displaying text. static const char* FindTextDisplayEnd(const char* text, const char* text_end) { const char* text_display_end = text; if (!text_end) text_end = (const char*)-1; ImGuiState& g = *GImGui; if (g.DisableHideTextAfterDoubleHash > 0) { while (text_display_end < text_end && *text_display_end != '\0') text_display_end++; } else { while (text_display_end < text_end && *text_display_end != '\0' && (text_display_end[0] != '#' || text_display_end[1] != '#')) text_display_end++; } return text_display_end; } // Pass text data straight to log (without being displayed) void ImGui::LogText(const char* fmt, ...) { ImGuiState& g = *GImGui; if (!g.LogEnabled) return; va_list args; va_start(args, fmt); if (g.LogFile) { vfprintf(g.LogFile, fmt, args); } else { g.LogClipboard->appendv(fmt, args); } va_end(args); } // Internal version that takes a position to decide on newline placement and pad items according to their depth. // We split text into individual lines to add current tree level padding static void LogRenderedText(const ImVec2& ref_pos, const char* text, const char* text_end) { ImGuiState& g = *GImGui; ImGuiWindow* window = ImGui::GetCurrentWindowRead(); if (!text_end) text_end = FindTextDisplayEnd(text, text_end); const bool log_new_line = ref_pos.y > window->DC.LogLinePosY+1; window->DC.LogLinePosY = ref_pos.y; const char* text_remaining = text; if (g.LogStartDepth > window->DC.TreeDepth) // Re-adjust padding if we have popped out of our starting depth g.LogStartDepth = window->DC.TreeDepth; const int tree_depth = (window->DC.TreeDepth - g.LogStartDepth); for (;;) { // Split the string. Each new line (after a '\n') is followed by spacing corresponding to the current depth of our log entry. const char* line_end = text_remaining; while (line_end < text_end) if (*line_end == '\n') break; else line_end++; if (line_end >= text_end) line_end = NULL; const bool is_first_line = (text == text_remaining); bool is_last_line = false; if (line_end == NULL) { is_last_line = true; line_end = text_end; } if (line_end != NULL && !(is_last_line && (line_end - text_remaining)==0)) { const int char_count = (int)(line_end - text_remaining); if (log_new_line || !is_first_line) ImGui::LogText(IM_NEWLINE "%*s%.*s", tree_depth*4, "", char_count, text_remaining); else ImGui::LogText(" %.*s", char_count, text_remaining); } if (is_last_line) break; text_remaining = line_end + 1; } } // Internal ImGui functions to render text // RenderText***() functions calls ImDrawList::AddText() calls ImBitmapFont::RenderText() void ImGui::RenderText(ImVec2 pos, const char* text, const char* text_end, bool hide_text_after_hash) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); // Hide anything after a '##' string const char* text_display_end; if (hide_text_after_hash) { text_display_end = FindTextDisplayEnd(text, text_end); } else { if (!text_end) text_end = text + strlen(text); // FIXME-OPT text_display_end = text_end; } const int text_len = (int)(text_display_end - text); if (text_len > 0) { // Render window->DrawList->AddText(g.Font, g.FontSize, pos, window->Color(ImGuiCol_Text), text, text_display_end); // Log as text if (g.LogEnabled) LogRenderedText(pos, text, text_display_end); } } void ImGui::RenderTextWrapped(ImVec2 pos, const char* text, const char* text_end, float wrap_width) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); if (!text_end) text_end = text + strlen(text); // FIXME-OPT const int text_len = (int)(text_end - text); if (text_len > 0) { window->DrawList->AddText(g.Font, g.FontSize, pos, window->Color(ImGuiCol_Text), text, text_end, wrap_width); if (g.LogEnabled) LogRenderedText(pos, text, text_end); } } void ImGui::RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, ImGuiAlign align, const ImVec2* clip_min, const ImVec2* clip_max) { // Hide anything after a '##' string const char* text_display_end = FindTextDisplayEnd(text, text_end); const int text_len = (int)(text_display_end - text); if (text_len == 0) return; ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); // Perform CPU side clipping for single clipped element to avoid using scissor state ImVec2 pos = pos_min; const ImVec2 text_size = text_size_if_known ? *text_size_if_known : ImGui::CalcTextSize(text, text_display_end, false, 0.0f); if (!clip_max) clip_max = &pos_max; bool need_clipping = (pos.x + text_size.x >= clip_max->x) || (pos.y + text_size.y >= clip_max->y); if (!clip_min) clip_min = &pos_min; else need_clipping |= (pos.x < clip_min->x) || (pos.y < clip_min->y); // Align if (align & ImGuiAlign_Center) pos.x = ImMax(pos.x, (pos.x + pos_max.x - text_size.x) * 0.5f); else if (align & ImGuiAlign_Right) pos.x = ImMax(pos.x, pos_max.x - text_size.x); if (align & ImGuiAlign_VCenter) pos.y = ImMax(pos.y, (pos.y + pos_max.y - text_size.y) * 0.5f); // Render if (need_clipping) { ImVec4 fine_clip_rect(clip_min->x, clip_min->y, clip_max->x, clip_max->y); window->DrawList->AddText(g.Font, g.FontSize, pos, window->Color(ImGuiCol_Text), text, text_display_end, 0.0f, &fine_clip_rect); } else { window->DrawList->AddText(g.Font, g.FontSize, pos, window->Color(ImGuiCol_Text), text, text_display_end, 0.0f, NULL); } if (g.LogEnabled) LogRenderedText(pos, text, text_display_end); } // Render a rectangle shaped with optional rounding and borders void ImGui::RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool border, float rounding) { ImGuiWindow* window = GetCurrentWindow(); window->DrawList->AddRectFilled(p_min, p_max, fill_col, rounding); if (border && (window->Flags & ImGuiWindowFlags_ShowBorders)) { window->DrawList->AddRect(p_min+ImVec2(1,1), p_max, window->Color(ImGuiCol_BorderShadow), rounding); window->DrawList->AddRect(p_min, p_max-ImVec2(1,1), window->Color(ImGuiCol_Border), rounding); } } // Render a triangle to denote expanded/collapsed state void ImGui::RenderCollapseTriangle(ImVec2 p_min, bool opened, float scale, bool shadow) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); const float h = g.FontSize * 1.00f; const float r = h * 0.40f * scale; ImVec2 center = p_min + ImVec2(h*0.50f, h*0.50f*scale); ImVec2 a, b, c; if (opened) { center.y -= r*0.25f; a = center + ImVec2(0,1)*r; b = center + ImVec2(-0.866f,-0.5f)*r; c = center + ImVec2(0.866f,-0.5f)*r; } else { a = center + ImVec2(1,0)*r; b = center + ImVec2(-0.500f,0.866f)*r; c = center + ImVec2(-0.500f,-0.866f)*r; } if (shadow && (window->Flags & ImGuiWindowFlags_ShowBorders) != 0) window->DrawList->AddTriangleFilled(a+ImVec2(2,2), b+ImVec2(2,2), c+ImVec2(2,2), window->Color(ImGuiCol_BorderShadow)); window->DrawList->AddTriangleFilled(a, b, c, window->Color(ImGuiCol_Text)); } void ImGui::RenderCheckMark(ImVec2 pos, ImU32 col) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); ImVec2 a, b, c; float start_x = (float)(int)(g.FontSize * 0.307f + 0.5f); float rem_third = (float)(int)((g.FontSize - start_x) / 3.0f); a.x = pos.x + 0.5f + start_x; b.x = a.x + rem_third; c.x = a.x + rem_third * 3.0f; b.y = pos.y - 1.0f + (float)(int)(g.Font->Ascent * (g.FontSize / g.Font->FontSize) + 0.5f) + (float)(int)(g.Font->DisplayOffset.y); a.y = b.y - rem_third; c.y = b.y - rem_third * 2.0f; window->DrawList->PathLineTo(a); window->DrawList->PathLineTo(b); window->DrawList->PathLineTo(c); window->DrawList->PathStroke(col, false); } // Calculate text size. Text can be multi-line. Optionally ignore text after a ## marker. // CalcTextSize("") should return ImVec2(0.0f, GImGui->FontSize) ImVec2 ImGui::CalcTextSize(const char* text, const char* text_end, bool hide_text_after_double_hash, float wrap_width) { ImGuiState& g = *GImGui; const char* text_display_end; if (hide_text_after_double_hash) text_display_end = FindTextDisplayEnd(text, text_end); // Hide anything after a '##' string else text_display_end = text_end; ImFont* font = g.Font; const float font_size = g.FontSize; ImVec2 text_size = font->CalcTextSizeA(font_size, FLT_MAX, wrap_width, text, text_display_end, NULL); // Cancel out character spacing for the last character of a line (it is baked into glyph->XAdvance field) const float font_scale = font_size / font->FontSize; const float character_spacing_x = 1.0f * font_scale; if (text_size.x > 0.0f) text_size.x -= character_spacing_x; return text_size; } // Helper to calculate coarse clipping of large list of evenly sized items. // NB: Prefer using the ImGuiListClipper higher-level helper if you can! // NB: 'items_count' is only used to clamp the result, if you don't know your count you can use INT_MAX // If you are displaying thousands of items and you have a random access to the list, you can perform clipping yourself to save on CPU. // { // float item_height = ImGui::GetTextLineHeightWithSpacing(); // int display_start, display_end; // ImGui::CalcListClipping(count, item_height, &display_start, &display_end); // calculate how many to clip/display // ImGui::SetCursorPosY(ImGui::GetCursorPosY() + (display_start) * item_height); // advance cursor // for (int i = display_start; i < display_end; i++) // display only visible items // // TODO: display visible item // ImGui::SetCursorPosY(ImGui::GetCursorPosY() + (count - display_end) * item_height); // advance cursor // } void ImGui::CalcListClipping(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindowRead(); if (g.LogEnabled) { // If logging is active, do not perform any clipping *out_items_display_start = 0; *out_items_display_end = items_count; return; } const ImVec2 pos = window->DC.CursorPos; int start = (int)((window->ClipRect.Min.y - pos.y) / items_height); int end = (int)((window->ClipRect.Max.y - pos.y) / items_height); start = ImClamp(start, 0, items_count); end = ImClamp(end + 1, start, items_count); *out_items_display_start = start; *out_items_display_end = end; } // Find window given position, search front-to-back static ImGuiWindow* FindHoveredWindow(ImVec2 pos, bool excluding_childs) { ImGuiState& g = *GImGui; for (int i = g.Windows.Size-1; i >= 0; i--) { ImGuiWindow* window = g.Windows[i]; if (!window->Active) continue; if (window->Flags & ImGuiWindowFlags_NoInputs) continue; if (excluding_childs && (window->Flags & ImGuiWindowFlags_ChildWindow) != 0) continue; // Using the clipped AABB so a child window will typically be clipped by its parent. ImRect bb(window->ClippedWindowRect.Min - g.Style.TouchExtraPadding, window->ClippedWindowRect.Max + g.Style.TouchExtraPadding); if (bb.Contains(pos)) return window; } return NULL; } // Test if mouse cursor is hovering given rectangle // NB- Rectangle is clipped by our current clip setting // NB- Expand the rectangle to be generous on imprecise inputs systems (g.Style.TouchExtraPadding) bool ImGui::IsMouseHoveringRect(const ImVec2& pos_min, const ImVec2& pos_max, bool clip) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindowRead(); // Clip ImRect rect_clipped(pos_min, pos_max); if (clip) rect_clipped.Clip(window->ClipRect); // Expand for touch input const ImRect rect_for_touch(rect_clipped.Min - g.Style.TouchExtraPadding, rect_clipped.Max + g.Style.TouchExtraPadding); return rect_for_touch.Contains(g.IO.MousePos); } bool ImGui::IsMouseHoveringWindow() { ImGuiState& g = *GImGui; return g.HoveredWindow == g.CurrentWindow; } bool ImGui::IsMouseHoveringAnyWindow() { ImGuiState& g = *GImGui; return g.HoveredWindow != NULL; } bool ImGui::IsPosHoveringAnyWindow(const ImVec2& pos) { return FindHoveredWindow(pos, false) != NULL; } static bool IsKeyPressedMap(ImGuiKey key, bool repeat) { const int key_index = GImGui->IO.KeyMap[key]; return ImGui::IsKeyPressed(key_index, repeat); } int ImGui::GetKeyIndex(ImGuiKey key) { IM_ASSERT(key >= 0 && key < ImGuiKey_COUNT); return GImGui->IO.KeyMap[key]; } bool ImGui::IsKeyDown(int key_index) { if (key_index < 0) return false; IM_ASSERT(key_index >= 0 && key_index < IM_ARRAYSIZE(GImGui->IO.KeysDown)); return GImGui->IO.KeysDown[key_index]; } bool ImGui::IsKeyPressed(int key_index, bool repeat) { ImGuiState& g = *GImGui; if (key_index < 0) return false; IM_ASSERT(key_index >= 0 && key_index < IM_ARRAYSIZE(g.IO.KeysDown)); const float t = g.IO.KeysDownDuration[key_index]; if (t == 0.0f) return true; if (repeat && t > g.IO.KeyRepeatDelay) { float delay = g.IO.KeyRepeatDelay, rate = g.IO.KeyRepeatRate; if ((fmodf(t - delay, rate) > rate*0.5f) != (fmodf(t - delay - g.IO.DeltaTime, rate) > rate*0.5f)) return true; } return false; } bool ImGui::IsKeyReleased(int key_index) { ImGuiState& g = *GImGui; if (key_index < 0) return false; IM_ASSERT(key_index >= 0 && key_index < IM_ARRAYSIZE(g.IO.KeysDown)); if (g.IO.KeysDownDurationPrev[key_index] >= 0.0f && !g.IO.KeysDown[key_index]) return true; return false; } bool ImGui::IsMouseDown(int button) { ImGuiState& g = *GImGui; IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); return g.IO.MouseDown[button]; } bool ImGui::IsMouseClicked(int button, bool repeat) { ImGuiState& g = *GImGui; IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); const float t = g.IO.MouseDownDuration[button]; if (t == 0.0f) return true; if (repeat && t > g.IO.KeyRepeatDelay) { float delay = g.IO.KeyRepeatDelay, rate = g.IO.KeyRepeatRate; if ((fmodf(t - delay, rate) > rate*0.5f) != (fmodf(t - delay - g.IO.DeltaTime, rate) > rate*0.5f)) return true; } return false; } bool ImGui::IsMouseReleased(int button) { ImGuiState& g = *GImGui; IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); return g.IO.MouseReleased[button]; } bool ImGui::IsMouseDoubleClicked(int button) { ImGuiState& g = *GImGui; IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); return g.IO.MouseDoubleClicked[button]; } bool ImGui::IsMouseDragging(int button, float lock_threshold) { ImGuiState& g = *GImGui; IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); if (!g.IO.MouseDown[button]) return false; if (lock_threshold < 0.0f) lock_threshold = g.IO.MouseDragThreshold; return g.IO.MouseDragMaxDistanceSqr[button] >= lock_threshold * lock_threshold; } ImVec2 ImGui::GetMousePos() { return GImGui->IO.MousePos; } // NB: prefer to call right after BeginPopup(). At the time Selectable/MenuItem is activated, the popup is already closed! ImVec2 ImGui::GetMousePosOnOpeningCurrentPopup() { ImGuiState& g = *GImGui; if (g.CurrentPopupStack.Size > 0) return g.OpenedPopupStack[g.CurrentPopupStack.Size-1].MousePosOnOpen; return g.IO.MousePos; } ImVec2 ImGui::GetMouseDragDelta(int button, float lock_threshold) { ImGuiState& g = *GImGui; IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); if (lock_threshold < 0.0f) lock_threshold = g.IO.MouseDragThreshold; if (g.IO.MouseDown[button]) if (g.IO.MouseDragMaxDistanceSqr[button] >= lock_threshold * lock_threshold) return g.IO.MousePos - g.IO.MouseClickedPos[button]; // Assume we can only get active with left-mouse button (at the moment). return ImVec2(0.0f, 0.0f); } void ImGui::ResetMouseDragDelta(int button) { ImGuiState& g = *GImGui; IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); // NB: We don't need to reset g.IO.MouseDragMaxDistanceSqr g.IO.MouseClickedPos[button] = g.IO.MousePos; } ImGuiMouseCursor ImGui::GetMouseCursor() { return GImGui->MouseCursor; } void ImGui::SetMouseCursor(ImGuiMouseCursor cursor_type) { GImGui->MouseCursor = cursor_type; } void ImGui::CaptureKeyboardFromApp() { GImGui->CaptureKeyboardNextFrame = true; } void ImGui::CaptureMouseFromApp() { GImGui->CaptureMouseNextFrame = true; } bool ImGui::IsItemHovered() { ImGuiWindow* window = GetCurrentWindowRead(); return window->DC.LastItemHoveredAndUsable; } bool ImGui::IsItemHoveredRect() { ImGuiWindow* window = GetCurrentWindowRead(); return window->DC.LastItemHoveredRect; } bool ImGui::IsItemActive() { ImGuiState& g = *GImGui; if (g.ActiveId) { ImGuiWindow* window = GetCurrentWindowRead(); return g.ActiveId == window->DC.LastItemID; } return false; } bool ImGui::IsAnyItemHovered() { return GImGui->HoveredId != 0 || GImGui->HoveredIdPreviousFrame != 0; } bool ImGui::IsAnyItemActive() { return GImGui->ActiveId != 0; } bool ImGui::IsItemVisible() { ImGuiWindow* window = GetCurrentWindowRead(); ImRect r(window->ClipRect); return r.Overlaps(window->DC.LastItemRect); } ImVec2 ImGui::GetItemRectMin() { ImGuiWindow* window = GetCurrentWindowRead(); return window->DC.LastItemRect.Min; } ImVec2 ImGui::GetItemRectMax() { ImGuiWindow* window = GetCurrentWindowRead(); return window->DC.LastItemRect.Max; } ImVec2 ImGui::GetItemRectSize() { ImGuiWindow* window = GetCurrentWindowRead(); return window->DC.LastItemRect.GetSize(); } ImVec2 ImGui::CalcItemRectClosestPoint(const ImVec2& pos, bool on_edge, float outward) { ImGuiWindow* window = GetCurrentWindowRead(); ImRect rect = window->DC.LastItemRect; rect.Expand(outward); return rect.GetClosestPoint(pos, on_edge); } // Tooltip is stored and turned into a BeginTooltip()/EndTooltip() sequence at the end of the frame. Each call override previous value. void ImGui::SetTooltipV(const char* fmt, va_list args) { ImGuiState& g = *GImGui; ImFormatStringV(g.Tooltip, IM_ARRAYSIZE(g.Tooltip), fmt, args); } void ImGui::SetTooltip(const char* fmt, ...) { va_list args; va_start(args, fmt); SetTooltipV(fmt, args); va_end(args); } static ImRect GetVisibleRect() { ImGuiState& g = *GImGui; if (g.IO.DisplayVisibleMin.x != g.IO.DisplayVisibleMax.x && g.IO.DisplayVisibleMin.y != g.IO.DisplayVisibleMax.y) return ImRect(g.IO.DisplayVisibleMin, g.IO.DisplayVisibleMax); return ImRect(0.0f, 0.0f, g.IO.DisplaySize.x, g.IO.DisplaySize.y); } void ImGui::BeginTooltip() { ImGuiState& g = *GImGui; ImGuiWindowFlags flags = ImGuiWindowFlags_Tooltip|ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoMove|ImGuiWindowFlags_NoResize|ImGuiWindowFlags_NoSavedSettings|ImGuiWindowFlags_AlwaysAutoResize; ImGui::Begin("##Tooltip", NULL, ImVec2(0,0), g.Style.Colors[ImGuiCol_TooltipBg].w, flags); } void ImGui::EndTooltip() { IM_ASSERT(GetCurrentWindowRead()->Flags & ImGuiWindowFlags_Tooltip); ImGui::End(); } static bool IsPopupOpen(ImGuiID id) { ImGuiState& g = *GImGui; const bool opened = g.OpenedPopupStack.Size > g.CurrentPopupStack.Size && g.OpenedPopupStack[g.CurrentPopupStack.Size].PopupID == id; return opened; } // One open popup per level of the popup hierarchy (NB: when assigning we reset the Window member of ImGuiPopupRef to NULL) void ImGui::OpenPopup(const char* str_id) { ImGuiState& g = *GImGui; ImGuiWindow* window = g.CurrentWindow; ImGuiID id = window->GetID(str_id); int current_stack_size = g.CurrentPopupStack.Size; ImGuiPopupRef popup_ref = ImGuiPopupRef(id, window, window->GetID("##menus"), g.IO.MousePos); // Tagged as new ref because constructor sets Window to NULL (we are passing the ParentWindow info here) if (g.OpenedPopupStack.Size < current_stack_size + 1) g.OpenedPopupStack.push_back(popup_ref); else if (g.OpenedPopupStack[current_stack_size].PopupID != id) { g.OpenedPopupStack.resize(current_stack_size+1); g.OpenedPopupStack[current_stack_size] = popup_ref; } } static void CloseInactivePopups() { ImGuiState& g = *GImGui; if (g.OpenedPopupStack.empty()) return; // When popups are stacked, clicking on a lower level popups puts focus back to it and close popups above it. // Don't close our own child popup windows int n = 0; if (g.FocusedWindow) { for (n = 0; n < g.OpenedPopupStack.Size; n++) { ImGuiPopupRef& popup = g.OpenedPopupStack[n]; if (!popup.Window) continue; IM_ASSERT((popup.Window->Flags & ImGuiWindowFlags_Popup) != 0); if (popup.Window->Flags & ImGuiWindowFlags_ChildWindow) continue; bool has_focus = false; for (int m = n; m < g.OpenedPopupStack.Size && !has_focus; m++) has_focus = (g.OpenedPopupStack[m].Window && g.OpenedPopupStack[m].Window->RootWindow == g.FocusedWindow->RootWindow); if (!has_focus) break; } } if (n < g.OpenedPopupStack.Size) // This test is not required but it allows to set a useful breakpoint on the line below g.OpenedPopupStack.resize(n); } static ImGuiWindow* GetFrontMostModalRootWindow() { ImGuiState& g = *GImGui; if (!g.OpenedPopupStack.empty()) if (ImGuiWindow* front_most_popup = g.OpenedPopupStack.back().Window) if (front_most_popup->Flags & ImGuiWindowFlags_Modal) return front_most_popup; return NULL; } static void ClosePopupToLevel(int remaining) { ImGuiState& g = *GImGui; if (remaining > 0) ImGui::FocusWindow(g.OpenedPopupStack[remaining-1].Window); else ImGui::FocusWindow(g.OpenedPopupStack[0].ParentWindow); g.OpenedPopupStack.resize(remaining); } static void ClosePopup(ImGuiID id) { if (!IsPopupOpen(id)) return; ImGuiState& g = *GImGui; ClosePopupToLevel(g.OpenedPopupStack.Size - 1); } // Close the popup we have begin-ed into. void ImGui::CloseCurrentPopup() { ImGuiState& g = *GImGui; int popup_idx = g.CurrentPopupStack.Size - 1; if (popup_idx < 0 || popup_idx > g.OpenedPopupStack.Size || g.CurrentPopupStack[popup_idx].PopupID != g.OpenedPopupStack[popup_idx].PopupID) return; while (popup_idx > 0 && g.OpenedPopupStack[popup_idx].Window && (g.OpenedPopupStack[popup_idx].Window->Flags & ImGuiWindowFlags_ChildMenu)) popup_idx--; ClosePopupToLevel(popup_idx); } static void ClearSetNextWindowData() { ImGuiState& g = *GImGui; g.SetNextWindowPosCond = g.SetNextWindowSizeCond = g.SetNextWindowContentSizeCond = g.SetNextWindowCollapsedCond = g.SetNextWindowFocus = 0; } static bool BeginPopupEx(const char* str_id, ImGuiWindowFlags extra_flags) { ImGuiState& g = *GImGui; ImGuiWindow* window = g.CurrentWindow; const ImGuiID id = window->GetID(str_id); if (!IsPopupOpen(id)) { ClearSetNextWindowData(); // We behave like Begin() and need to consume those values return false; } ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, 0.0f); ImGuiWindowFlags flags = extra_flags|ImGuiWindowFlags_Popup|ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoMove|ImGuiWindowFlags_NoResize|ImGuiWindowFlags_NoSavedSettings|ImGuiWindowFlags_AlwaysAutoResize; char name[32]; if (flags & ImGuiWindowFlags_ChildMenu) ImFormatString(name, 20, "##menu_%d", g.CurrentPopupStack.Size); // Recycle windows based on depth else ImFormatString(name, 20, "##popup_%08x", id); // Not recycling, so we can close/open during the same frame float alpha = 1.0f; bool opened = ImGui::Begin(name, NULL, ImVec2(0.0f, 0.0f), alpha, flags); if (!(window->Flags & ImGuiWindowFlags_ShowBorders)) g.CurrentWindow->Flags &= ~ImGuiWindowFlags_ShowBorders; if (!opened) // opened can be 'false' when the popup is completely clipped (e.g. zero size display) ImGui::EndPopup(); return opened; } bool ImGui::BeginPopup(const char* str_id) { return BeginPopupEx(str_id, ImGuiWindowFlags_ShowBorders); } bool ImGui::BeginPopupModal(const char* name, bool* p_opened, ImGuiWindowFlags extra_flags) { ImGuiState& g = *GImGui; ImGuiWindow* window = g.CurrentWindow; const ImGuiID id = window->GetID(name); if (!IsPopupOpen(id)) { ClearSetNextWindowData(); // We behave like Begin() and need to consume those values return false; } ImGuiWindowFlags flags = extra_flags|ImGuiWindowFlags_Popup|ImGuiWindowFlags_Modal|ImGuiWindowFlags_NoCollapse|ImGuiWindowFlags_NoSavedSettings; bool opened = ImGui::Begin(name, p_opened, ImVec2(0.0f, 0.0f), -1.0f, flags); if (!opened || (p_opened && !*p_opened)) // Opened can be 'false' when the popup is completely clipped (e.g. zero size display) { ImGui::EndPopup(); if (opened) ClosePopup(id); return false; } return opened; } void ImGui::EndPopup() { ImGuiWindow* window = GetCurrentWindow(); IM_ASSERT(window->Flags & ImGuiWindowFlags_Popup); IM_ASSERT(GImGui->CurrentPopupStack.Size > 0); ImGui::End(); if (!(window->Flags & ImGuiWindowFlags_Modal)) ImGui::PopStyleVar(); } bool ImGui::BeginPopupContextItem(const char* str_id, int mouse_button) { if (ImGui::IsItemHovered() && ImGui::IsMouseClicked(mouse_button)) ImGui::OpenPopup(str_id); return ImGui::BeginPopup(str_id); } bool ImGui::BeginPopupContextWindow(bool also_over_items, const char* str_id, int mouse_button) { if (!str_id) str_id = "window_context_menu"; if (ImGui::IsMouseHoveringWindow() && ImGui::IsMouseClicked(mouse_button)) if (also_over_items || !ImGui::IsAnyItemHovered()) ImGui::OpenPopup(str_id); return ImGui::BeginPopup(str_id); } bool ImGui::BeginPopupContextVoid(const char* str_id, int mouse_button) { if (!str_id) str_id = "void_context_menu"; if (!ImGui::IsMouseHoveringAnyWindow() && ImGui::IsMouseClicked(mouse_button)) ImGui::OpenPopup(str_id); return ImGui::BeginPopup(str_id); } bool ImGui::BeginChild(const char* str_id, const ImVec2& size_arg, bool border, ImGuiWindowFlags extra_flags) { ImGuiWindow* window = GetCurrentWindow(); ImGuiWindowFlags flags = ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoResize|ImGuiWindowFlags_NoSavedSettings|ImGuiWindowFlags_ChildWindow; const ImVec2 content_avail = ImGui::GetContentRegionAvail(); ImVec2 size = ImRound(size_arg); if (size.x <= 0.0f) { if (size.x == 0.0f) flags |= ImGuiWindowFlags_ChildWindowAutoFitX; size.x = ImMax(content_avail.x, 4.0f) - fabsf(size.x); // Arbitrary minimum zero-ish child size of 4.0f (0.0f causing too much issues) } if (size.y <= 0.0f) { if (size.y == 0.0f) flags |= ImGuiWindowFlags_ChildWindowAutoFitY; size.y = ImMax(content_avail.y, 4.0f) - fabsf(size.y); } if (border) flags |= ImGuiWindowFlags_ShowBorders; flags |= extra_flags; char title[256]; ImFormatString(title, IM_ARRAYSIZE(title), "%s.%s", window->Name, str_id); const float alpha = 1.0f; bool ret = ImGui::Begin(title, NULL, size, alpha, flags); if (!(window->Flags & ImGuiWindowFlags_ShowBorders)) GetCurrentWindow()->Flags &= ~ImGuiWindowFlags_ShowBorders; return ret; } bool ImGui::BeginChild(ImGuiID id, const ImVec2& size, bool border, ImGuiWindowFlags extra_flags) { char str_id[32]; ImFormatString(str_id, IM_ARRAYSIZE(str_id), "child_%08x", id); bool ret = ImGui::BeginChild(str_id, size, border, extra_flags); return ret; } void ImGui::EndChild() { ImGuiWindow* window = GetCurrentWindow(); IM_ASSERT(window->Flags & ImGuiWindowFlags_ChildWindow); if ((window->Flags & ImGuiWindowFlags_ComboBox) || window->BeginCount > 1) { ImGui::End(); } else { // When using auto-filling child window, we don't provide full width/height to ItemSize so that it doesn't feed back into automatic size-fitting. ImGuiState& g = *GImGui; ImVec2 sz = ImGui::GetWindowSize(); if (window->Flags & ImGuiWindowFlags_ChildWindowAutoFitX) // Arbitrary minimum zeroish child size of 4.0f sz.x = ImMax(4.0f, sz.x - g.Style.WindowPadding.x); if (window->Flags & ImGuiWindowFlags_ChildWindowAutoFitY) sz.y = ImMax(4.0f, sz.y - g.Style.WindowPadding.y); ImGui::End(); window = GetCurrentWindow(); ImRect bb(window->DC.CursorPos, window->DC.CursorPos + sz); ItemSize(sz); ItemAdd(bb, NULL); } } // Helper to create a child window / scrolling region that looks like a normal widget frame. bool ImGui::BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags extra_flags) { ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; ImGui::PushStyleColor(ImGuiCol_ChildWindowBg, style.Colors[ImGuiCol_FrameBg]); ImGui::PushStyleVar(ImGuiStyleVar_ChildWindowRounding, style.FrameRounding); return ImGui::BeginChild(id, size, false, ImGuiWindowFlags_NoMove | extra_flags); } void ImGui::EndChildFrame() { ImGui::EndChild(); ImGui::PopStyleVar(); ImGui::PopStyleColor(); } // Save and compare stack sizes on Begin()/End() to detect usage errors static void CheckStacksSize(ImGuiWindow* window, bool write) { // NOT checking: DC.ItemWidth, DC.AllowKeyboardFocus, DC.ButtonRepeat, DC.TextWrapPos (per window) to allow user to conveniently push once and not pop (they are cleared on Begin) ImGuiState& g = *GImGui; int* p_backup = &window->DC.StackSizesBackup[0]; { int current = window->IDStack.Size; if (write) *p_backup = current; else IM_ASSERT(*p_backup == current); p_backup++; } // User forgot PopID() { int current = window->DC.GroupStack.Size; if (write) *p_backup = current; else IM_ASSERT(*p_backup == current); p_backup++; } // User forgot EndGroup() { int current = g.CurrentPopupStack.Size; if (write) *p_backup = current; else IM_ASSERT(*p_backup == current); p_backup++; } // User forgot EndPopup()/EndMenu() { int current = g.ColorModifiers.Size; if (write) *p_backup = current; else IM_ASSERT(*p_backup == current); p_backup++; } // User forgot PopStyleColor() { int current = g.StyleModifiers.Size; if (write) *p_backup = current; else IM_ASSERT(*p_backup == current); p_backup++; } // User forgot PopStyleVar() { int current = g.FontStack.Size; if (write) *p_backup = current; else IM_ASSERT(*p_backup == current); p_backup++; } // User forgot PopFont() IM_ASSERT(p_backup == window->DC.StackSizesBackup + IM_ARRAYSIZE(window->DC.StackSizesBackup)); } static ImVec2 FindBestPopupWindowPos(const ImVec2& base_pos, const ImVec2& size, ImGuiWindowFlags flags, int* last_dir, const ImRect& r_inner) { const ImGuiStyle& style = GImGui->Style; // Clamp into visible area while not overlapping the cursor ImRect r_outer(GetVisibleRect()); r_outer.Reduce(style.DisplaySafeAreaPadding); ImVec2 base_pos_clamped = ImClamp(base_pos, r_outer.Min, r_outer.Max - size); for (int n = (*last_dir != -1) ? -1 : 0; n < 4; n++) // Right, down, up, left. Favor last used direction. { const int dir = (n == -1) ? *last_dir : n; ImRect rect(dir == 0 ? r_inner.Max.x : r_outer.Min.x, dir == 1 ? r_inner.Max.y : r_outer.Min.y, dir == 3 ? r_inner.Min.x : r_outer.Max.x, dir == 2 ? r_inner.Min.y : r_outer.Max.y); if (rect.GetWidth() < size.x || rect.GetHeight() < size.y) continue; *last_dir = dir; return ImVec2(dir == 0 ? r_inner.Max.x : dir == 3 ? r_inner.Min.x - size.x : base_pos_clamped.x, dir == 1 ? r_inner.Max.y : dir == 2 ? r_inner.Min.y - size.y : base_pos_clamped.y); } // Fallback *last_dir = -1; if (flags & ImGuiWindowFlags_Tooltip) // For tooltip we prefer avoiding the cursor at all cost even if it means that part of the tooltip won't be visible. return base_pos + ImVec2(2,2); // Otherwise try to keep within display ImVec2 pos = base_pos; pos.x = ImMax(ImMin(pos.x + size.x, r_outer.Max.x) - size.x, r_outer.Min.x); pos.y = ImMax(ImMin(pos.y + size.y, r_outer.Max.y) - size.y, r_outer.Min.y); return pos; } static ImGuiWindow* FindWindowByName(const char* name) { // FIXME-OPT: Store sorted hashes -> pointers. ImGuiState& g = *GImGui; ImGuiID id = ImHash(name, 0); for (int i = 0; i < g.Windows.Size; i++) if (g.Windows[i]->ID == id) return g.Windows[i]; return NULL; } static ImGuiWindow* CreateNewWindow(const char* name, ImVec2 size, ImGuiWindowFlags flags) { ImGuiState& g = *GImGui; // Create window the first time ImGuiWindow* window = (ImGuiWindow*)ImGui::MemAlloc(sizeof(ImGuiWindow)); new(window) ImGuiWindow(name); window->Flags = flags; if (flags & ImGuiWindowFlags_NoSavedSettings) { // User can disable loading and saving of settings. Tooltip and child windows also don't store settings. window->Size = window->SizeFull = size; } else { // Retrieve settings from .ini file // Use SetWindowPos() or SetNextWindowPos() with the appropriate condition flag to change the initial position of a window. window->PosFloat = ImVec2(60, 60); window->Pos = ImVec2((float)(int)window->PosFloat.x, (float)(int)window->PosFloat.y); ImGuiIniData* settings = FindWindowSettings(name); if (!settings) { settings = AddWindowSettings(name); } else { window->SetWindowPosAllowFlags &= ~ImGuiSetCond_FirstUseEver; window->SetWindowSizeAllowFlags &= ~ImGuiSetCond_FirstUseEver; window->SetWindowCollapsedAllowFlags &= ~ImGuiSetCond_FirstUseEver; } if (settings->Pos.x != FLT_MAX) { window->PosFloat = settings->Pos; window->Pos = ImVec2((float)(int)window->PosFloat.x, (float)(int)window->PosFloat.y); window->Collapsed = settings->Collapsed; } if (ImLengthSqr(settings->Size) > 0.00001f && !(flags & ImGuiWindowFlags_NoResize)) size = settings->Size; window->Size = window->SizeFull = size; } if ((flags & ImGuiWindowFlags_AlwaysAutoResize) != 0) { window->AutoFitFramesX = window->AutoFitFramesY = 2; window->AutoFitOnlyGrows = false; } else { if (window->Size.x <= 0.0f) window->AutoFitFramesX = 2; if (window->Size.y <= 0.0f) window->AutoFitFramesY = 2; window->AutoFitOnlyGrows = (window->AutoFitFramesX > 0) || (window->AutoFitFramesY > 0); } g.Windows.push_back(window); return window; } // Push a new ImGui window to add widgets to. // - A default window called "Debug" is automatically stacked at the beginning of every frame so you can use widgets without explicitly calling a Begin/End pair. // - Begin/End can be called multiple times during the frame with the same window name to append content. // - 'size_on_first_use' for a regular window denote the initial size for first-time creation (no saved data) and isn't that useful. Use SetNextWindowSize() prior to calling Begin() for more flexible window manipulation. // - The window name is used as a unique identifier to preserve window information across frames (and save rudimentary information to the .ini file). // You can use the "##" or "###" markers to use the same label with different id, or same id with different label. See documentation at the top of this file. // - Return false when window is collapsed, so you can early out in your code. You always need to call ImGui::End() even if false is returned. // - Passing 'bool* p_opened' displays a Close button on the upper-right corner of the window, the pointed value will be set to false when the button is pressed. // - Passing non-zero 'size' is roughly equivalent to calling SetNextWindowSize(size, ImGuiSetCond_FirstUseEver) prior to calling Begin(). bool ImGui::Begin(const char* name, bool* p_opened, ImGuiWindowFlags flags) { return ImGui::Begin(name, p_opened, ImVec2(0.f, 0.f), -1.0f, flags); } bool ImGui::Begin(const char* name, bool* p_opened, const ImVec2& size_on_first_use, float bg_alpha, ImGuiWindowFlags flags) { ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; IM_ASSERT(name != NULL); // Window name required IM_ASSERT(g.Initialized); // Forgot to call ImGui::NewFrame() IM_ASSERT(g.FrameCountEnded != g.FrameCount); // Called ImGui::Render() or ImGui::EndFrame() and haven't called ImGui::NewFrame() again yet if (flags & ImGuiWindowFlags_NoInputs) flags |= ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize; // Find or create bool window_is_new = false; ImGuiWindow* window = FindWindowByName(name); if (!window) { window = CreateNewWindow(name, size_on_first_use, flags); window_is_new = true; } const int current_frame = ImGui::GetFrameCount(); const bool first_begin_of_the_frame = (window->LastFrameActive != current_frame); if (first_begin_of_the_frame) window->Flags = (ImGuiWindowFlags)flags; else flags = window->Flags; // Add to stack ImGuiWindow* parent_window = !g.CurrentWindowStack.empty() ? g.CurrentWindowStack.back() : NULL; g.CurrentWindowStack.push_back(window); SetCurrentWindow(window); CheckStacksSize(window, true); IM_ASSERT(parent_window != NULL || !(flags & ImGuiWindowFlags_ChildWindow)); bool window_was_active = (window->LastFrameActive == current_frame - 1); // Not using !WasActive because the implicit "Debug" window would always toggle off->on if (flags & ImGuiWindowFlags_Popup) { ImGuiPopupRef& popup_ref = g.OpenedPopupStack[g.CurrentPopupStack.Size]; window_was_active &= (window->PopupID == popup_ref.PopupID); window_was_active &= (window == popup_ref.Window); popup_ref.Window = window; g.CurrentPopupStack.push_back(popup_ref); window->PopupID = popup_ref.PopupID; } const bool window_appearing_after_being_hidden = (window->HiddenFrames == 1); // Process SetNextWindow***() calls bool window_pos_set_by_api = false, window_size_set_by_api = false; if (g.SetNextWindowPosCond) { const ImVec2 backup_cursor_pos = window->DC.CursorPos; // FIXME: not sure of the exact reason of this anymore :( need to look into that. if (!window_was_active || window_appearing_after_being_hidden) window->SetWindowPosAllowFlags |= ImGuiSetCond_Appearing; window_pos_set_by_api = (window->SetWindowPosAllowFlags & g.SetNextWindowPosCond) != 0; if (window_pos_set_by_api && ImLengthSqr(g.SetNextWindowPosVal - ImVec2(-FLT_MAX,-FLT_MAX)) < 0.001f) { window->SetWindowPosCenterWanted = true; // May be processed on the next frame if this is our first frame and we are measuring size window->SetWindowPosAllowFlags &= ~(ImGuiSetCond_Once | ImGuiSetCond_FirstUseEver | ImGuiSetCond_Appearing); } else { SetWindowPos(window, g.SetNextWindowPosVal, g.SetNextWindowPosCond); } window->DC.CursorPos = backup_cursor_pos; g.SetNextWindowPosCond = 0; } if (g.SetNextWindowSizeCond) { if (!window_was_active || window_appearing_after_being_hidden) window->SetWindowSizeAllowFlags |= ImGuiSetCond_Appearing; window_size_set_by_api = (window->SetWindowSizeAllowFlags & g.SetNextWindowSizeCond) != 0; SetWindowSize(window, g.SetNextWindowSizeVal, g.SetNextWindowSizeCond); g.SetNextWindowSizeCond = 0; } if (g.SetNextWindowContentSizeCond) { window->SizeContentsExplicit = g.SetNextWindowContentSizeVal; g.SetNextWindowContentSizeCond = 0; } else if (first_begin_of_the_frame) { window->SizeContentsExplicit = ImVec2(0.0f, 0.0f); } if (g.SetNextWindowCollapsedCond) { if (!window_was_active || window_appearing_after_being_hidden) window->SetWindowCollapsedAllowFlags |= ImGuiSetCond_Appearing; SetWindowCollapsed(window, g.SetNextWindowCollapsedVal, g.SetNextWindowCollapsedCond); g.SetNextWindowCollapsedCond = 0; } if (g.SetNextWindowFocus) { ImGui::SetWindowFocus(); g.SetNextWindowFocus = false; } // Update known root window (if we are a child window, otherwise window == window->RootWindow) int root_idx, root_non_popup_idx; for (root_idx = g.CurrentWindowStack.Size - 1; root_idx > 0; root_idx--) if (!(g.CurrentWindowStack[root_idx]->Flags & ImGuiWindowFlags_ChildWindow)) break; for (root_non_popup_idx = root_idx; root_non_popup_idx > 0; root_non_popup_idx--) if (!(g.CurrentWindowStack[root_non_popup_idx]->Flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_Popup))) break; window->RootWindow = g.CurrentWindowStack[root_idx]; window->RootNonPopupWindow = g.CurrentWindowStack[root_non_popup_idx]; // This is merely for displaying the TitleBgActive color. // Default alpha if (bg_alpha < 0.0f) bg_alpha = style.WindowFillAlphaDefault; // When reusing window again multiple times a frame, just append content (don't need to setup again) if (first_begin_of_the_frame) { window->Active = true; window->BeginCount = 0; window->DrawList->Clear(); window->ClipRect = ImVec4(-FLT_MAX,-FLT_MAX,+FLT_MAX,+FLT_MAX); window->LastFrameActive = current_frame; window->IDStack.resize(1); // Setup texture, outer clipping rectangle window->DrawList->PushTextureID(g.Font->ContainerAtlas->TexID); if ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & (ImGuiWindowFlags_ComboBox|ImGuiWindowFlags_Popup))) PushClipRect(parent_window->ClipRect); else PushClipRect(GetVisibleRect()); // New windows appears in front if (!window_was_active) { window->AutoPosLastDirection = -1; if (!(flags & ImGuiWindowFlags_NoFocusOnAppearing)) if (!(flags & (ImGuiWindowFlags_ChildWindow|ImGuiWindowFlags_Tooltip)) || (flags & ImGuiWindowFlags_Popup)) FocusWindow(window); // Popup first latch mouse position, will position itself when it appears next frame if ((flags & ImGuiWindowFlags_Popup) != 0 && !window_pos_set_by_api) window->PosFloat = g.IO.MousePos; } // Collapse window by double-clicking on title bar // At this point we don't have a clipping rectangle setup yet, so we can use the title bar area for hit detection and drawing if (!(flags & ImGuiWindowFlags_NoTitleBar) && !(flags & ImGuiWindowFlags_NoCollapse)) { ImRect title_bar_rect = window->TitleBarRect(); if (g.HoveredWindow == window && IsMouseHoveringRect(title_bar_rect.Min, title_bar_rect.Max) && g.IO.MouseDoubleClicked[0]) { window->Collapsed = !window->Collapsed; if (!(flags & ImGuiWindowFlags_NoSavedSettings)) MarkSettingsDirty(); FocusWindow(window); } } else { window->Collapsed = false; } // SIZE // Save contents size from last frame for auto-fitting (unless explicitly specified) window->SizeContents.x = (window->SizeContentsExplicit.x != 0.0f) ? window->SizeContentsExplicit.x : ((window_is_new ? 0.0f : window->DC.CursorMaxPos.x - window->Pos.x) + window->Scroll.x); window->SizeContents.y = (window->SizeContentsExplicit.y != 0.0f) ? window->SizeContentsExplicit.y : ((window_is_new ? 0.0f : window->DC.CursorMaxPos.y - window->Pos.y) + window->Scroll.y); // Hide popup/tooltip window when first appearing while we measure size (because we recycle them) if (window->HiddenFrames > 0) window->HiddenFrames--; if ((flags & (ImGuiWindowFlags_Popup | ImGuiWindowFlags_Tooltip)) != 0 && !window_was_active) { window->HiddenFrames = 1; if (flags & ImGuiWindowFlags_AlwaysAutoResize) { if (!window_size_set_by_api) window->Size = window->SizeFull = ImVec2(0.f, 0.f); window->SizeContents = ImVec2(0.f, 0.f); } } // Lock window padding so that altering the ShowBorders flag for children doesn't have side-effects. window->WindowPadding = ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & (ImGuiWindowFlags_ShowBorders | ImGuiWindowFlags_ComboBox | ImGuiWindowFlags_Popup))) ? ImVec2(0,0) : style.WindowPadding; // Calculate auto-fit size ImVec2 size_auto_fit; if ((flags & ImGuiWindowFlags_Tooltip) != 0) { // Tooltip always resize. We keep the spacing symmetric on both axises for aesthetic purpose. size_auto_fit = window->SizeContents + window->WindowPadding - ImVec2(0.0f, style.ItemSpacing.y); } else { size_auto_fit = ImClamp(window->SizeContents + window->WindowPadding, style.WindowMinSize, ImMax(style.WindowMinSize, g.IO.DisplaySize - window->WindowPadding)); // Handling case of auto fit window not fitting in screen on one axis, we are growing auto fit size on the other axis to compensate for expected scrollbar. FIXME: Might turn bigger than DisplaySize-WindowPadding. if (size_auto_fit.x < window->SizeContents.x && !(flags & ImGuiWindowFlags_NoScrollbar) && (flags & ImGuiWindowFlags_HorizontalScrollbar)) size_auto_fit.y += style.ScrollbarSize; if (size_auto_fit.y < window->SizeContents.y && !(flags & ImGuiWindowFlags_NoScrollbar)) size_auto_fit.x += style.ScrollbarSize; size_auto_fit.y = ImMax(size_auto_fit.y - style.ItemSpacing.y, 0.0f); } // Handle automatic resize if (window->Collapsed) { // We still process initial auto-fit on collapsed windows to get a window width, // But otherwise we don't honor ImGuiWindowFlags_AlwaysAutoResize when collapsed. if (window->AutoFitFramesX > 0) window->SizeFull.x = window->AutoFitOnlyGrows ? ImMax(window->SizeFull.x, size_auto_fit.x) : size_auto_fit.x; if (window->AutoFitFramesY > 0) window->SizeFull.y = window->AutoFitOnlyGrows ? ImMax(window->SizeFull.y, size_auto_fit.y) : size_auto_fit.y; window->Size = window->TitleBarRect().GetSize(); } else { if ((flags & ImGuiWindowFlags_AlwaysAutoResize) && !window_size_set_by_api) { window->SizeFull = size_auto_fit; } else if ((window->AutoFitFramesX > 0 || window->AutoFitFramesY > 0) && !window_size_set_by_api) { // Auto-fit only grows during the first few frames if (window->AutoFitFramesX > 0) window->SizeFull.x = window->AutoFitOnlyGrows ? ImMax(window->SizeFull.x, size_auto_fit.x) : size_auto_fit.x; if (window->AutoFitFramesY > 0) window->SizeFull.y = window->AutoFitOnlyGrows ? ImMax(window->SizeFull.y, size_auto_fit.y) : size_auto_fit.y; if (!(flags & ImGuiWindowFlags_NoSavedSettings)) MarkSettingsDirty(); } window->Size = window->SizeFull; } // Minimum window size if (!(flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_AlwaysAutoResize))) { window->SizeFull = ImMax(window->SizeFull, style.WindowMinSize); if (!window->Collapsed) window->Size = window->SizeFull; } // POSITION // Position child window if (flags & ImGuiWindowFlags_ChildWindow) parent_window->DC.ChildWindows.push_back(window); if ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_Popup)) { window->Pos = window->PosFloat = parent_window->DC.CursorPos; window->Size = window->SizeFull = size_on_first_use; // NB: argument name 'size_on_first_use' misleading here, it's really just 'size' as provided by user. } bool window_pos_center = false; window_pos_center |= (window->SetWindowPosCenterWanted && window->HiddenFrames == 0); window_pos_center |= ((flags & ImGuiWindowFlags_Modal) && !window_pos_set_by_api && window_appearing_after_being_hidden); if (window_pos_center) { // Center (any sort of window) ImRect fullscreen_rect(GetVisibleRect()); SetWindowPos(ImMax(style.DisplaySafeAreaPadding, fullscreen_rect.GetCenter() - window->SizeFull * 0.5f)); } else if (flags & ImGuiWindowFlags_ChildMenu) { IM_ASSERT(window_pos_set_by_api); ImRect rect_to_avoid; if (parent_window->DC.MenuBarAppending) rect_to_avoid = ImRect(-FLT_MAX, parent_window->Pos.y + parent_window->TitleBarHeight(), FLT_MAX, parent_window->Pos.y + parent_window->TitleBarHeight() + parent_window->MenuBarHeight()); else rect_to_avoid = ImRect(parent_window->Pos.x + style.ItemSpacing.x, -FLT_MAX, parent_window->Pos.x + parent_window->Size.x - style.ItemSpacing.x - parent_window->ScrollbarSizes.x, FLT_MAX); // We want some overlap to convey the relative depth of each popup (here hard-coded to 4) window->PosFloat = FindBestPopupWindowPos(window->PosFloat, window->Size, flags, &window->AutoPosLastDirection, rect_to_avoid); } else if ((flags & ImGuiWindowFlags_Popup) != 0 && !window_pos_set_by_api && window_appearing_after_being_hidden) { ImRect rect_to_avoid(window->PosFloat.x - 1, window->PosFloat.y - 1, window->PosFloat.x + 1, window->PosFloat.y + 1); window->PosFloat = FindBestPopupWindowPos(window->PosFloat, window->Size, flags, &window->AutoPosLastDirection, rect_to_avoid); } // Position tooltip (always follows mouse) if ((flags & ImGuiWindowFlags_Tooltip) != 0 && !window_pos_set_by_api) { ImRect rect_to_avoid(g.IO.MousePos.x - 16, g.IO.MousePos.y - 8, g.IO.MousePos.x + 24, g.IO.MousePos.y + 24); // FIXME: Completely hard-coded. Perhaps center on cursor hit-point instead? window->PosFloat = FindBestPopupWindowPos(g.IO.MousePos, window->Size, flags, &window->AutoPosLastDirection, rect_to_avoid); } // User moving window (at the beginning of the frame to avoid input lag or sheering). Only valid for root windows. KeepAliveID(window->MoveID); if (g.ActiveId == window->MoveID) { if (g.IO.MouseDown[0]) { if (!(flags & ImGuiWindowFlags_NoMove)) { window->PosFloat += g.IO.MouseDelta; if (!(flags & ImGuiWindowFlags_NoSavedSettings)) MarkSettingsDirty(); } IM_ASSERT(g.MovedWindow != NULL); FocusWindow(g.MovedWindow); } else { SetActiveID(0); g.MovedWindow = NULL; // Not strictly necessary but doing it for sanity. } } // Clamp position so it stays visible if (!(flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_Tooltip)) { if (!window_pos_set_by_api && window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0 && g.IO.DisplaySize.x > 0.0f && g.IO.DisplaySize.y > 0.0f) // Ignore zero-sized display explicitly to avoid losing positions if a window manager reports zero-sized window when initializing or minimizing. { ImVec2 padding = ImMax(style.DisplayWindowPadding, style.DisplaySafeAreaPadding); window->PosFloat = ImMax(window->PosFloat + window->Size, padding) - window->Size; window->PosFloat = ImMin(window->PosFloat, g.IO.DisplaySize - padding); } } window->Pos = ImVec2((float)(int)window->PosFloat.x, (float)(int)window->PosFloat.y); // Default item width. Make it proportional to window size if window manually resizes if (window->Size.x > 0.0f && !(flags & ImGuiWindowFlags_Tooltip) && !(flags & ImGuiWindowFlags_AlwaysAutoResize)) window->ItemWidthDefault = (float)(int)(window->Size.x * 0.65f); else window->ItemWidthDefault = (float)(int)(g.FontSize * 16.0f); // Prepare for focus requests window->FocusIdxAllRequestCurrent = (window->FocusIdxAllRequestNext == IM_INT_MAX || window->FocusIdxAllCounter == -1) ? IM_INT_MAX : (window->FocusIdxAllRequestNext + (window->FocusIdxAllCounter+1)) % (window->FocusIdxAllCounter+1); window->FocusIdxTabRequestCurrent = (window->FocusIdxTabRequestNext == IM_INT_MAX || window->FocusIdxTabCounter == -1) ? IM_INT_MAX : (window->FocusIdxTabRequestNext + (window->FocusIdxTabCounter+1)) % (window->FocusIdxTabCounter+1); window->FocusIdxAllCounter = window->FocusIdxTabCounter = -1; window->FocusIdxAllRequestNext = window->FocusIdxTabRequestNext = IM_INT_MAX; // Apply scrolling if (window->ScrollTarget.x < FLT_MAX) { window->Scroll.x = window->ScrollTarget.x; window->ScrollTarget.x = FLT_MAX; } if (window->ScrollTarget.y < FLT_MAX) { float center_ratio = window->ScrollTargetCenterRatio.y; window->Scroll.y = window->ScrollTarget.y - ((1.0f - center_ratio) * window->TitleBarHeight()) - (center_ratio * window->SizeFull.y); window->ScrollTarget.y = FLT_MAX; } window->Scroll = ImMax(window->Scroll, ImVec2(0.0f, 0.0f)); if (!window->Collapsed && !window->SkipItems) window->Scroll = ImMin(window->Scroll, ImMax(ImVec2(0.0f, 0.0f), window->SizeContents - window->SizeFull + window->ScrollbarSizes)); // Modal window darkens what is behind them if ((flags & ImGuiWindowFlags_Modal) != 0 && window == GetFrontMostModalRootWindow()) { ImRect fullscreen_rect = GetVisibleRect(); window->DrawList->AddRectFilled(fullscreen_rect.Min, fullscreen_rect.Max, window->Color(ImGuiCol_ModalWindowDarkening, g.ModalWindowDarkeningRatio)); } // Draw window + handle manual resize ImRect title_bar_rect = window->TitleBarRect(); const float window_rounding = (flags & ImGuiWindowFlags_ChildWindow) ? style.ChildWindowRounding : style.WindowRounding; if (window->Collapsed) { // Draw title bar only window->DrawList->AddRectFilled(title_bar_rect.GetTL(), title_bar_rect.GetBR(), window->Color(ImGuiCol_TitleBgCollapsed), window_rounding); if (flags & ImGuiWindowFlags_ShowBorders) { window->DrawList->AddRect(title_bar_rect.GetTL()+ImVec2(1,1), title_bar_rect.GetBR()+ImVec2(1,1), window->Color(ImGuiCol_BorderShadow), window_rounding); window->DrawList->AddRect(title_bar_rect.GetTL(), title_bar_rect.GetBR(), window->Color(ImGuiCol_Border), window_rounding); } } else { ImU32 resize_col = 0; const float resize_corner_size = ImMax(g.FontSize * 1.35f, window_rounding + 1.0f + g.FontSize * 0.2f); if (!(flags & ImGuiWindowFlags_AlwaysAutoResize) && window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0 && !(flags & ImGuiWindowFlags_NoResize)) { // Manual resize const ImVec2 br = window->Rect().GetBR(); const ImRect resize_rect(br - ImVec2(resize_corner_size * 0.75f, resize_corner_size * 0.75f), br); const ImGuiID resize_id = window->GetID("#RESIZE"); bool hovered, held; ButtonBehavior(resize_rect, resize_id, &hovered, &held, true, ImGuiButtonFlags_FlattenChilds); resize_col = window->Color(held ? ImGuiCol_ResizeGripActive : hovered ? ImGuiCol_ResizeGripHovered : ImGuiCol_ResizeGrip); if (hovered || held) g.MouseCursor = ImGuiMouseCursor_ResizeNWSE; if (g.HoveredWindow == window && held && g.IO.MouseDoubleClicked[0]) { // Manual auto-fit when double-clicking window->SizeFull = size_auto_fit; if (!(flags & ImGuiWindowFlags_NoSavedSettings)) MarkSettingsDirty(); SetActiveID(0); } else if (held) { window->SizeFull = ImMax(window->SizeFull + g.IO.MouseDelta, style.WindowMinSize); if (!(flags & ImGuiWindowFlags_NoSavedSettings)) MarkSettingsDirty(); } window->Size = window->SizeFull; title_bar_rect = window->TitleBarRect(); } // Scrollbars window->ScrollbarY = (window->SizeContents.y > window->Size.y + style.ItemSpacing.y) && !(flags & ImGuiWindowFlags_NoScrollbar); window->ScrollbarX = (window->SizeContents.x > window->Size.x - (window->ScrollbarY ? style.ScrollbarSize : 0.0f) - window->WindowPadding.x) && !(flags & ImGuiWindowFlags_NoScrollbar) && (flags & ImGuiWindowFlags_HorizontalScrollbar); window->ScrollbarSizes = ImVec2(window->ScrollbarY ? style.ScrollbarSize : 0.0f, window->ScrollbarX ? style.ScrollbarSize : 0.0f); // Window background if (bg_alpha > 0.0f) { if ((flags & ImGuiWindowFlags_ComboBox) != 0) window->DrawList->AddRectFilled(window->Pos, window->Pos+window->Size, window->Color(ImGuiCol_ComboBg, bg_alpha), window_rounding); else if ((flags & ImGuiWindowFlags_Tooltip) != 0) window->DrawList->AddRectFilled(window->Pos, window->Pos+window->Size, window->Color(ImGuiCol_TooltipBg, bg_alpha), window_rounding); else if ((flags & ImGuiWindowFlags_Popup) != 0) window->DrawList->AddRectFilled(window->Pos, window->Pos+window->Size, window->Color(ImGuiCol_WindowBg, bg_alpha), window_rounding); else if ((flags & ImGuiWindowFlags_ChildWindow) != 0) window->DrawList->AddRectFilled(window->Pos, window->Pos+window->Size, window->Color(ImGuiCol_ChildWindowBg, bg_alpha), window_rounding); else window->DrawList->AddRectFilled(window->Pos, window->Pos+window->Size, window->Color(ImGuiCol_WindowBg, bg_alpha), window_rounding); } // Title bar if (!(flags & ImGuiWindowFlags_NoTitleBar)) window->DrawList->AddRectFilled(title_bar_rect.GetTL(), title_bar_rect.GetBR(), window->Color((g.FocusedWindow && window->RootNonPopupWindow == g.FocusedWindow->RootNonPopupWindow) ? ImGuiCol_TitleBgActive : ImGuiCol_TitleBg), window_rounding, 1|2); // Menu bar if (flags & ImGuiWindowFlags_MenuBar) { ImRect menu_bar_rect = window->MenuBarRect(); window->DrawList->AddRectFilled(menu_bar_rect.GetTL(), menu_bar_rect.GetBR(), window->Color(ImGuiCol_MenuBarBg), (flags & ImGuiWindowFlags_NoTitleBar) ? window_rounding : 0.0f, 1|2); } // Borders if (flags & ImGuiWindowFlags_ShowBorders) { window->DrawList->AddRect(window->Pos+ImVec2(1,1), window->Pos+window->Size+ImVec2(1,1), window->Color(ImGuiCol_BorderShadow), window_rounding); window->DrawList->AddRect(window->Pos, window->Pos+window->Size, window->Color(ImGuiCol_Border), window_rounding); if (!(flags & ImGuiWindowFlags_NoTitleBar)) window->DrawList->AddLine(title_bar_rect.GetBL(), title_bar_rect.GetBR(), window->Color(ImGuiCol_Border)); } // Scrollbars if (window->ScrollbarX) Scrollbar(window, true); if (window->ScrollbarY) Scrollbar(window, false); // Render resize grip // (after the input handling so we don't have a frame of latency) if (!(flags & ImGuiWindowFlags_NoResize)) { const ImVec2 br = window->Rect().GetBR(); window->DrawList->PathLineTo(br + ImVec2(-resize_corner_size, 0.0f)); window->DrawList->PathLineTo(br + ImVec2(0.0f, -resize_corner_size)); window->DrawList->PathArcToFast(ImVec2(br.x - window_rounding, br.y - window_rounding), window_rounding, 0, 3); window->DrawList->PathFill(resize_col); } } // Setup drawing context window->DC.ColumnsStartX = 0.0f + window->WindowPadding.x - window->Scroll.x; window->DC.ColumnsOffsetX = 0.0f; window->DC.CursorStartPos = window->Pos + ImVec2(window->DC.ColumnsStartX + window->DC.ColumnsOffsetX, window->TitleBarHeight() + window->MenuBarHeight() + window->WindowPadding.y - window->Scroll.y); window->DC.CursorPos = window->DC.CursorStartPos; window->DC.CursorPosPrevLine = window->DC.CursorPos; window->DC.CursorMaxPos = window->DC.CursorStartPos; window->DC.CurrentLineHeight = window->DC.PrevLineHeight = 0.0f; window->DC.CurrentLineTextBaseOffset = window->DC.PrevLineTextBaseOffset = 0.0f; window->DC.MenuBarAppending = false; window->DC.MenuBarOffsetX = ImMax(window->WindowPadding.x, style.ItemSpacing.x); window->DC.LogLinePosY = window->DC.CursorPos.y - 9999.0f; window->DC.ChildWindows.resize(0); window->DC.LayoutType = ImGuiLayoutType_Vertical; window->DC.ItemWidth = window->ItemWidthDefault; window->DC.TextWrapPos = -1.0f; // disabled window->DC.AllowKeyboardFocus = true; window->DC.ButtonRepeat = false; window->DC.ItemWidthStack.resize(0); window->DC.TextWrapPosStack.resize(0); window->DC.AllowKeyboardFocusStack.resize(0); window->DC.ButtonRepeatStack.resize(0); window->DC.ColorEditMode = ImGuiColorEditMode_UserSelect; window->DC.ColumnsCurrent = 0; window->DC.ColumnsCount = 1; window->DC.ColumnsStartPos = window->DC.CursorPos; window->DC.ColumnsCellMinY = window->DC.ColumnsCellMaxY = window->DC.ColumnsStartPos.y; window->DC.TreeDepth = 0; window->DC.StateStorage = &window->StateStorage; window->DC.GroupStack.resize(0); window->MenuColumns.Update(3, style.ItemSpacing.x, !window_was_active); if (window->AutoFitFramesX > 0) window->AutoFitFramesX--; if (window->AutoFitFramesY > 0) window->AutoFitFramesY--; // Title bar if (!(flags & ImGuiWindowFlags_NoTitleBar)) { if (p_opened != NULL) CloseWindowButton(p_opened); const ImVec2 text_size = CalcTextSize(name, NULL, true); if (!(flags & ImGuiWindowFlags_NoCollapse)) RenderCollapseTriangle(window->Pos + style.FramePadding, !window->Collapsed, 1.0f, true); ImVec2 text_min = window->Pos + style.FramePadding; ImVec2 text_max = window->Pos + ImVec2(window->Size.x - style.FramePadding.x, style.FramePadding.y*2 + text_size.y); ImVec2 clip_max = ImVec2(window->Pos.x + window->Size.x - (p_opened ? title_bar_rect.GetHeight() - 3 : style.FramePadding.x), text_max.y); // Match the size of CloseWindowButton() bool pad_left = (flags & ImGuiWindowFlags_NoCollapse) == 0; bool pad_right = (p_opened != NULL); if (style.WindowTitleAlign & ImGuiAlign_Center) pad_right = pad_left; if (pad_left) text_min.x += g.FontSize + style.ItemInnerSpacing.x; if (pad_right) text_max.x -= g.FontSize + style.ItemInnerSpacing.x; RenderTextClipped(text_min, text_max, name, NULL, &text_size, style.WindowTitleAlign, NULL, &clip_max); } // Save clipped aabb so we can access it in constant-time in FindHoveredWindow() window->ClippedWindowRect = window->Rect(); window->ClippedWindowRect.Clip(window->ClipRect); // Pressing CTRL+C while holding on a window copy its content to the clipboard // This works but 1. doesn't handle multiple Begin/End pairs, 2. recursing into another Begin/End pair - so we need to work that out and add better logging scope. // Maybe we can support CTRL+C on every element? /* if (g.ActiveId == move_id) if (g.IO.KeyCtrl && IsKeyPressedMap(ImGuiKey_C)) ImGui::LogToClipboard(); */ } // Inner clipping rectangle // We set this up after processing the resize grip so that our clip rectangle doesn't lag by a frame // Note that if our window is collapsed we will end up with a null clipping rectangle which is the correct behavior. const ImRect title_bar_rect = window->TitleBarRect(); ImRect clip_rect(title_bar_rect.Min.x+0.5f+window->WindowPadding.x*0.5f, title_bar_rect.Max.y+window->MenuBarHeight()+0.5f, window->Pos.x+window->Size.x-window->WindowPadding.x*0.5f, window->Pos.y+window->Size.y); if ((flags & ImGuiWindowFlags_ChildWindow) && (flags & ImGuiWindowFlags_ShowBorders)) clip_rect.Min += ImVec2(1.0f,1.0f); clip_rect.Max.x -= window->ScrollbarY ? style.ScrollbarSize : 0.0f; clip_rect.Max.y -= window->ScrollbarX ? style.ScrollbarSize : 0.0f; PushClipRect(clip_rect); // Clear 'accessed' flag last thing if (first_begin_of_the_frame) window->Accessed = false; window->BeginCount++; // Child window can be out of sight and have "negative" clip windows. // Mark them as collapsed so commands are skipped earlier (we can't manually collapse because they have no title bar). if (flags & ImGuiWindowFlags_ChildWindow) { IM_ASSERT((flags & ImGuiWindowFlags_NoTitleBar) != 0); window->Collapsed = parent_window && parent_window->Collapsed; if (!(flags & ImGuiWindowFlags_AlwaysAutoResize) && window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0) window->Collapsed |= (window->ClipRect.Min.x >= window->ClipRect.Max.x || window->ClipRect.Min.y >= window->ClipRect.Max.y); // We also hide the window from rendering because we've already added its border to the command list. // (we could perform the check earlier in the function but it is simpler at this point) if (window->Collapsed) window->Active = false; } if (style.Alpha <= 0.0f) window->Active = false; // Return false if we don't intend to display anything to allow user to perform an early out optimization window->SkipItems = (window->Collapsed || !window->Active) && window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0; return !window->SkipItems; } void ImGui::End() { ImGuiState& g = *GImGui; ImGuiWindow* window = g.CurrentWindow; ImGui::Columns(1, "#CloseColumns"); PopClipRect(); // inner window clip rectangle // Stop logging if (!(window->Flags & ImGuiWindowFlags_ChildWindow)) // FIXME: add more options for scope of logging ImGui::LogFinish(); // Pop // NB: we don't clear 'window->RootWindow'. The pointer is allowed to live until the next call to Begin(). g.CurrentWindowStack.pop_back(); if (window->Flags & ImGuiWindowFlags_Popup) g.CurrentPopupStack.pop_back(); CheckStacksSize(window, false); SetCurrentWindow(g.CurrentWindowStack.empty() ? NULL : g.CurrentWindowStack.back()); } // Vertical scrollbar // The entire piece of code below is rather confusing because: // - We handle absolute seeking (when first clicking outside the grab) and relative manipulation (afterward or when clicking inside the grab) // - We store values as normalized ratio and in a form that allows the window content to change while we are holding on a scrollbar // - We handle both horizontal and vertical scrollbars, which makes the terminology not ideal. static void Scrollbar(ImGuiWindow* window, bool horizontal) { ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const ImGuiID id = window->GetID(horizontal ? "#SCROLLX" : "#SCROLLY"); // Render background bool other_scrollbar = (horizontal ? window->ScrollbarY : window->ScrollbarX); float other_scrollbar_size_w = other_scrollbar ? style.ScrollbarSize : 0.0f; const ImRect window_rect = window->Rect(); const float border_offset = (window->Flags & ImGuiWindowFlags_ShowBorders) ? 1.0f : 0.0f; ImRect bb = horizontal ? ImRect(window->Pos.x + border_offset, window_rect.Max.y - style.ScrollbarSize, window_rect.Max.x - other_scrollbar_size_w, window_rect.Max.y) : ImRect(window_rect.Max.x - style.ScrollbarSize, window->Pos.y + border_offset, window_rect.Max.x, window_rect.Max.y - other_scrollbar_size_w); if (!horizontal) bb.Min.y += window->TitleBarHeight() + ((window->Flags & ImGuiWindowFlags_MenuBar) ? window->MenuBarHeight() - border_offset : 0.0f); float window_rounding = (window->Flags & ImGuiWindowFlags_ChildWindow) ? style.ChildWindowRounding : style.WindowRounding; int window_rounding_corners; if (horizontal) window_rounding_corners = 8 | (other_scrollbar ? 0 : 4); else window_rounding_corners = ((window->Flags & ImGuiWindowFlags_NoTitleBar) ? 2 : 0) | (other_scrollbar ? 0 : 4); window->DrawList->AddRectFilled(bb.Min, bb.Max, window->Color(ImGuiCol_ScrollbarBg), window_rounding, window_rounding_corners); bb.Reduce(ImVec2(ImClamp((float)(int)((bb.Max.x - bb.Min.x - 2.0f) * 0.5f), 0.0f, 3.0f), ImClamp((float)(int)((bb.Max.y - bb.Min.y - 2.0f) * 0.5f), 0.0f, 3.0f))); // V denote the main axis of the scrollbar float scrollbar_size_v = horizontal ? bb.GetWidth() : bb.GetHeight(); float scroll_v = horizontal ? window->Scroll.x : window->Scroll.y; float win_size_avail_v = (horizontal ? window->Size.x : window->Size.y) - other_scrollbar_size_w; float win_size_contents_v = horizontal ? window->SizeContents.x : window->SizeContents.y; // The grabable box size generally represent the amount visible (vs the total scrollable amount) // But we maintain a minimum size in pixel to allow for the user to still aim inside. const float grab_h_pixels = ImMin(ImMax(scrollbar_size_v * ImSaturate(win_size_avail_v / ImMax(win_size_contents_v, win_size_avail_v)), style.GrabMinSize), scrollbar_size_v); const float grab_h_norm = grab_h_pixels / scrollbar_size_v; // Handle input right away. None of the code of Begin() is relying on scrolling position before calling Scrollbar(). bool held = false; bool hovered = false; const bool previously_held = (g.ActiveId == id); ImGui::ButtonBehavior(bb, id, &hovered, &held, true); float scroll_max = ImMax(1.0f, win_size_contents_v - win_size_avail_v); float scroll_ratio = ImSaturate(scroll_v / scroll_max); float grab_v_norm = scroll_ratio * (scrollbar_size_v - grab_h_pixels) / scrollbar_size_v; if (held && grab_h_norm < 1.0f) { float scrollbar_pos_v = horizontal ? bb.Min.x : bb.Min.y; float mouse_pos_v = horizontal ? g.IO.MousePos.x : g.IO.MousePos.y; float* click_delta_to_grab_center_v = horizontal ? &g.ScrollbarClickDeltaToGrabCenter.x : &g.ScrollbarClickDeltaToGrabCenter.y; // Click position in scrollbar normalized space (0.0f->1.0f) const float clicked_v_norm = ImSaturate((mouse_pos_v - scrollbar_pos_v) / scrollbar_size_v); ImGui::SetHoveredID(id); bool seek_absolute = false; if (!previously_held) { // On initial click calculate the distance between mouse and the center of the grab if (clicked_v_norm >= grab_v_norm && clicked_v_norm <= grab_v_norm + grab_h_norm) { *click_delta_to_grab_center_v = clicked_v_norm - grab_v_norm - grab_h_norm*0.5f; } else { seek_absolute = true; *click_delta_to_grab_center_v = 0.0f; } } // Apply scroll // It is ok to modify Scroll here because we are being called in Begin() after the calculation of SizeContents and before setting up our starting position const float scroll_v_norm = ImSaturate((clicked_v_norm - *click_delta_to_grab_center_v - grab_h_norm*0.5f) / (1.0f - grab_h_norm)); scroll_v = (float)(int)(0.5f + scroll_v_norm * scroll_max);//(win_size_contents_v - win_size_v)); if (horizontal) window->Scroll.x = scroll_v; else window->Scroll.y = scroll_v; // Update values for rendering scroll_ratio = ImSaturate(scroll_v / scroll_max); grab_v_norm = scroll_ratio * (scrollbar_size_v - grab_h_pixels) / scrollbar_size_v; // Update distance to grab now that we have seeked and saturated if (seek_absolute) *click_delta_to_grab_center_v = clicked_v_norm - grab_v_norm - grab_h_norm*0.5f; } // Render const ImU32 grab_col = window->Color(held ? ImGuiCol_ScrollbarGrabActive : hovered ? ImGuiCol_ScrollbarGrabHovered : ImGuiCol_ScrollbarGrab); if (horizontal) window->DrawList->AddRectFilled(ImVec2(ImLerp(bb.Min.x, bb.Max.x, grab_v_norm), bb.Min.y), ImVec2(ImLerp(bb.Min.x, bb.Max.x, grab_v_norm) + grab_h_pixels, bb.Max.y), grab_col, style.ScrollbarRounding); else window->DrawList->AddRectFilled(ImVec2(bb.Min.x, ImLerp(bb.Min.y, bb.Max.y, grab_v_norm)), ImVec2(bb.Max.x, ImLerp(bb.Min.y, bb.Max.y, grab_v_norm) + grab_h_pixels), grab_col, style.ScrollbarRounding); } // Moving window to front of display (which happens to be back of our sorted list) void ImGui::FocusWindow(ImGuiWindow* window) { ImGuiState& g = *GImGui; // Always mark the window we passed as focused. This is used for keyboard interactions such as tabbing. g.FocusedWindow = window; // Passing NULL allow to disable keyboard focus if (!window) return; // And move its root window to the top of the pile if (window->RootWindow) window = window->RootWindow; // Steal focus on active widgets if (window->Flags & ImGuiWindowFlags_Popup) // FIXME: This statement should be unnecessary. Need further testing before removing it.. if (g.ActiveId != 0 && g.ActiveIdWindow && g.ActiveIdWindow->RootWindow != window) ImGui::SetActiveID(0); // Bring to front if ((window->Flags & ImGuiWindowFlags_NoBringToFrontOnFocus) || g.Windows.back() == window) return; for (int i = 0; i < g.Windows.Size; i++) if (g.Windows[i] == window) { g.Windows.erase(g.Windows.begin() + i); break; } g.Windows.push_back(window); } void ImGui::PushItemWidth(float item_width) { ImGuiWindow* window = GetCurrentWindow(); window->DC.ItemWidth = (item_width == 0.0f ? window->ItemWidthDefault : item_width); window->DC.ItemWidthStack.push_back(window->DC.ItemWidth); } static void PushMultiItemsWidths(int components, float w_full) { ImGuiWindow* window = ImGui::GetCurrentWindow(); const ImGuiStyle& style = GImGui->Style; if (w_full <= 0.0f) w_full = ImGui::CalcItemWidth(); const float w_item_one = ImMax(1.0f, (float)(int)((w_full - (style.FramePadding.x*2.0f + style.ItemInnerSpacing.x) * (components-1)) / (float)components)); const float w_item_last = ImMax(1.0f, (float)(int)(w_full - (w_item_one + style.FramePadding.x*2.0f + style.ItemInnerSpacing.x) * (components-1))); window->DC.ItemWidthStack.push_back(w_item_last); for (int i = 0; i < components-1; i++) window->DC.ItemWidthStack.push_back(w_item_one); window->DC.ItemWidth = window->DC.ItemWidthStack.back(); } void ImGui::PopItemWidth() { ImGuiWindow* window = GetCurrentWindow(); window->DC.ItemWidthStack.pop_back(); window->DC.ItemWidth = window->DC.ItemWidthStack.empty() ? window->ItemWidthDefault : window->DC.ItemWidthStack.back(); } float ImGui::CalcItemWidth() { ImGuiWindow* window = GetCurrentWindowRead(); float w = window->DC.ItemWidth; if (w < 0.0f) { // Align to a right-side limit. We include 1 frame padding in the calculation because this is how the width is always used (we add 2 frame padding to it), but we could move that responsibility to the widget as well. ImGuiState& g = *GImGui; float width_to_right_edge = ImGui::GetContentRegionAvail().x; w = ImMax(1.0f, width_to_right_edge + w - g.Style.FramePadding.x * 2.0f); } w = (float)(int)w; return w; } static void SetCurrentFont(ImFont* font) { ImGuiState& g = *GImGui; IM_ASSERT(font && font->IsLoaded()); IM_ASSERT(font->Scale > 0.0f); g.Font = font; g.FontBaseSize = g.IO.FontGlobalScale * g.Font->FontSize * g.Font->Scale; g.FontSize = g.CurrentWindow ? g.CurrentWindow->CalcFontSize() : 0.0f; g.FontTexUvWhitePixel = g.Font->ContainerAtlas->TexUvWhitePixel; } void ImGui::PushFont(ImFont* font) { ImGuiState& g = *GImGui; if (!font) font = g.IO.Fonts->Fonts[0]; SetCurrentFont(font); g.FontStack.push_back(font); g.CurrentWindow->DrawList->PushTextureID(font->ContainerAtlas->TexID); } void ImGui::PopFont() { ImGuiState& g = *GImGui; g.CurrentWindow->DrawList->PopTextureID(); g.FontStack.pop_back(); SetCurrentFont(g.FontStack.empty() ? g.IO.Fonts->Fonts[0] : g.FontStack.back()); } void ImGui::PushAllowKeyboardFocus(bool allow_keyboard_focus) { ImGuiWindow* window = GetCurrentWindow(); window->DC.AllowKeyboardFocus = allow_keyboard_focus; window->DC.AllowKeyboardFocusStack.push_back(allow_keyboard_focus); } void ImGui::PopAllowKeyboardFocus() { ImGuiWindow* window = GetCurrentWindow(); window->DC.AllowKeyboardFocusStack.pop_back(); window->DC.AllowKeyboardFocus = window->DC.AllowKeyboardFocusStack.empty() ? true : window->DC.AllowKeyboardFocusStack.back(); } void ImGui::PushButtonRepeat(bool repeat) { ImGuiWindow* window = GetCurrentWindow(); window->DC.ButtonRepeat = repeat; window->DC.ButtonRepeatStack.push_back(repeat); } void ImGui::PopButtonRepeat() { ImGuiWindow* window = GetCurrentWindow(); window->DC.ButtonRepeatStack.pop_back(); window->DC.ButtonRepeat = window->DC.ButtonRepeatStack.empty() ? false : window->DC.ButtonRepeatStack.back(); } void ImGui::PushTextWrapPos(float wrap_pos_x) { ImGuiWindow* window = GetCurrentWindow(); window->DC.TextWrapPos = wrap_pos_x; window->DC.TextWrapPosStack.push_back(wrap_pos_x); } void ImGui::PopTextWrapPos() { ImGuiWindow* window = GetCurrentWindow(); window->DC.TextWrapPosStack.pop_back(); window->DC.TextWrapPos = window->DC.TextWrapPosStack.empty() ? -1.0f : window->DC.TextWrapPosStack.back(); } void ImGui::PushStyleColor(ImGuiCol idx, const ImVec4& col) { ImGuiState& g = *GImGui; ImGuiColMod backup; backup.Col = idx; backup.PreviousValue = g.Style.Colors[idx]; g.ColorModifiers.push_back(backup); g.Style.Colors[idx] = col; } void ImGui::PopStyleColor(int count) { ImGuiState& g = *GImGui; while (count > 0) { ImGuiColMod& backup = g.ColorModifiers.back(); g.Style.Colors[backup.Col] = backup.PreviousValue; g.ColorModifiers.pop_back(); count--; } } static float* GetStyleVarFloatAddr(ImGuiStyleVar idx) { ImGuiState& g = *GImGui; switch (idx) { case ImGuiStyleVar_Alpha: return &g.Style.Alpha; case ImGuiStyleVar_WindowRounding: return &g.Style.WindowRounding; case ImGuiStyleVar_ChildWindowRounding: return &g.Style.ChildWindowRounding; case ImGuiStyleVar_FrameRounding: return &g.Style.FrameRounding; case ImGuiStyleVar_IndentSpacing: return &g.Style.IndentSpacing; case ImGuiStyleVar_GrabMinSize: return &g.Style.GrabMinSize; } return NULL; } static ImVec2* GetStyleVarVec2Addr(ImGuiStyleVar idx) { ImGuiState& g = *GImGui; switch (idx) { case ImGuiStyleVar_WindowPadding: return &g.Style.WindowPadding; case ImGuiStyleVar_WindowMinSize: return &g.Style.WindowMinSize; case ImGuiStyleVar_FramePadding: return &g.Style.FramePadding; case ImGuiStyleVar_ItemSpacing: return &g.Style.ItemSpacing; case ImGuiStyleVar_ItemInnerSpacing: return &g.Style.ItemInnerSpacing; } return NULL; } void ImGui::PushStyleVar(ImGuiStyleVar idx, float val) { ImGuiState& g = *GImGui; float* pvar = GetStyleVarFloatAddr(idx); IM_ASSERT(pvar != NULL); // Called function with wrong-type? Variable is not a float. ImGuiStyleMod backup; backup.Var = idx; backup.PreviousValue = ImVec2(*pvar, 0.0f); g.StyleModifiers.push_back(backup); *pvar = val; } void ImGui::PushStyleVar(ImGuiStyleVar idx, const ImVec2& val) { ImGuiState& g = *GImGui; ImVec2* pvar = GetStyleVarVec2Addr(idx); IM_ASSERT(pvar != NULL); // Called function with wrong-type? Variable is not a ImVec2. ImGuiStyleMod backup; backup.Var = idx; backup.PreviousValue = *pvar; g.StyleModifiers.push_back(backup); *pvar = val; } void ImGui::PopStyleVar(int count) { ImGuiState& g = *GImGui; while (count > 0) { ImGuiStyleMod& backup = g.StyleModifiers.back(); if (float* pvar_f = GetStyleVarFloatAddr(backup.Var)) *pvar_f = backup.PreviousValue.x; else if (ImVec2* pvar_v = GetStyleVarVec2Addr(backup.Var)) *pvar_v = backup.PreviousValue; g.StyleModifiers.pop_back(); count--; } } const char* ImGui::GetStyleColName(ImGuiCol idx) { // Create switch-case from enum with regexp: ImGuiCol_{.*}, --> case ImGuiCol_\1: return "\1"; switch (idx) { case ImGuiCol_Text: return "Text"; case ImGuiCol_TextDisabled: return "TextDisabled"; case ImGuiCol_WindowBg: return "WindowBg"; case ImGuiCol_ChildWindowBg: return "ChildWindowBg"; case ImGuiCol_Border: return "Border"; case ImGuiCol_BorderShadow: return "BorderShadow"; case ImGuiCol_FrameBg: return "FrameBg"; case ImGuiCol_FrameBgHovered: return "FrameBgHovered"; case ImGuiCol_FrameBgActive: return "FrameBgActive"; case ImGuiCol_TitleBg: return "TitleBg"; case ImGuiCol_TitleBgCollapsed: return "TitleBgCollapsed"; case ImGuiCol_TitleBgActive: return "TitleBgActive"; case ImGuiCol_MenuBarBg: return "MenuBarBg"; case ImGuiCol_ScrollbarBg: return "ScrollbarBg"; case ImGuiCol_ScrollbarGrab: return "ScrollbarGrab"; case ImGuiCol_ScrollbarGrabHovered: return "ScrollbarGrabHovered"; case ImGuiCol_ScrollbarGrabActive: return "ScrollbarGrabActive"; case ImGuiCol_ComboBg: return "ComboBg"; case ImGuiCol_CheckMark: return "CheckMark"; case ImGuiCol_SliderGrab: return "SliderGrab"; case ImGuiCol_SliderGrabActive: return "SliderGrabActive"; case ImGuiCol_Button: return "Button"; case ImGuiCol_ButtonHovered: return "ButtonHovered"; case ImGuiCol_ButtonActive: return "ButtonActive"; case ImGuiCol_Header: return "Header"; case ImGuiCol_HeaderHovered: return "HeaderHovered"; case ImGuiCol_HeaderActive: return "HeaderActive"; case ImGuiCol_Column: return "Column"; case ImGuiCol_ColumnHovered: return "ColumnHovered"; case ImGuiCol_ColumnActive: return "ColumnActive"; case ImGuiCol_ResizeGrip: return "ResizeGrip"; case ImGuiCol_ResizeGripHovered: return "ResizeGripHovered"; case ImGuiCol_ResizeGripActive: return "ResizeGripActive"; case ImGuiCol_CloseButton: return "CloseButton"; case ImGuiCol_CloseButtonHovered: return "CloseButtonHovered"; case ImGuiCol_CloseButtonActive: return "CloseButtonActive"; case ImGuiCol_PlotLines: return "PlotLines"; case ImGuiCol_PlotLinesHovered: return "PlotLinesHovered"; case ImGuiCol_PlotHistogram: return "PlotHistogram"; case ImGuiCol_PlotHistogramHovered: return "PlotHistogramHovered"; case ImGuiCol_TextSelectedBg: return "TextSelectedBg"; case ImGuiCol_TooltipBg: return "TooltipBg"; case ImGuiCol_ModalWindowDarkening: return "ModalWindowDarkening"; } IM_ASSERT(0); return "Unknown"; } bool ImGui::IsWindowHovered() { ImGuiState& g = *GImGui; return g.HoveredWindow == g.CurrentWindow && IsWindowContentHoverable(g.HoveredRootWindow); } bool ImGui::IsWindowFocused() { ImGuiState& g = *GImGui; return g.FocusedWindow == g.CurrentWindow; } bool ImGui::IsRootWindowFocused() { ImGuiState& g = *GImGui; ImGuiWindow* root_window = g.CurrentWindow->RootWindow; return g.FocusedWindow == root_window; } bool ImGui::IsRootWindowOrAnyChildFocused() { ImGuiState& g = *GImGui; ImGuiWindow* root_window = g.CurrentWindow->RootWindow; return g.FocusedWindow && g.FocusedWindow->RootWindow == root_window; } float ImGui::GetWindowWidth() { ImGuiWindow* window = GImGui->CurrentWindow; return window->Size.x; } float ImGui::GetWindowHeight() { ImGuiWindow* window = GImGui->CurrentWindow; return window->Size.y; } ImVec2 ImGui::GetWindowPos() { ImGuiState& g = *GImGui; ImGuiWindow* window = g.CurrentWindow; return window->Pos; } static void SetWindowScrollY(ImGuiWindow* window, float new_scroll_y) { window->DC.CursorMaxPos.y += window->Scroll.y; window->Scroll.y = new_scroll_y; window->DC.CursorMaxPos.y -= window->Scroll.y; } static void SetWindowPos(ImGuiWindow* window, const ImVec2& pos, ImGuiSetCond cond) { // Test condition (NB: bit 0 is always true) and clear flags for next time if (cond && (window->SetWindowPosAllowFlags & cond) == 0) return; window->SetWindowPosAllowFlags &= ~(ImGuiSetCond_Once | ImGuiSetCond_FirstUseEver | ImGuiSetCond_Appearing); window->SetWindowPosCenterWanted = false; // Set const ImVec2 old_pos = window->Pos; window->PosFloat = pos; window->Pos = ImVec2((float)(int)window->PosFloat.x, (float)(int)window->PosFloat.y); window->DC.CursorPos += (window->Pos - old_pos); // As we happen to move the window while it is being appended to (which is a bad idea - will smear) let's at least offset the cursor window->DC.CursorMaxPos += (window->Pos - old_pos); // And more importantly we need to adjust this so size calculation doesn't get affected. } void ImGui::SetWindowPos(const ImVec2& pos, ImGuiSetCond cond) { ImGuiWindow* window = GetCurrentWindow(); SetWindowPos(window, pos, cond); } void ImGui::SetWindowPos(const char* name, const ImVec2& pos, ImGuiSetCond cond) { ImGuiWindow* window = FindWindowByName(name); if (window) SetWindowPos(window, pos, cond); } ImVec2 ImGui::GetWindowSize() { ImGuiWindow* window = GetCurrentWindowRead(); return window->Size; } static void SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiSetCond cond) { // Test condition (NB: bit 0 is always true) and clear flags for next time if (cond && (window->SetWindowSizeAllowFlags & cond) == 0) return; window->SetWindowSizeAllowFlags &= ~(ImGuiSetCond_Once | ImGuiSetCond_FirstUseEver | ImGuiSetCond_Appearing); // Set if (size.x > 0.0f) { window->AutoFitFramesX = 0; window->SizeFull.x = size.x; } else { window->AutoFitFramesX = 2; window->AutoFitOnlyGrows = false; } if (size.y > 0.0f) { window->AutoFitFramesY = 0; window->SizeFull.y = size.y; } else { window->AutoFitFramesY = 2; window->AutoFitOnlyGrows = false; } } void ImGui::SetWindowSize(const ImVec2& size, ImGuiSetCond cond) { SetWindowSize(GImGui->CurrentWindow, size, cond); } void ImGui::SetWindowSize(const char* name, const ImVec2& size, ImGuiSetCond cond) { ImGuiWindow* window = FindWindowByName(name); if (window) SetWindowSize(window, size, cond); } static void SetWindowCollapsed(ImGuiWindow* window, bool collapsed, ImGuiSetCond cond) { // Test condition (NB: bit 0 is always true) and clear flags for next time if (cond && (window->SetWindowCollapsedAllowFlags & cond) == 0) return; window->SetWindowCollapsedAllowFlags &= ~(ImGuiSetCond_Once | ImGuiSetCond_FirstUseEver | ImGuiSetCond_Appearing); // Set window->Collapsed = collapsed; } void ImGui::SetWindowCollapsed(bool collapsed, ImGuiSetCond cond) { SetWindowCollapsed(GImGui->CurrentWindow, collapsed, cond); } bool ImGui::IsWindowCollapsed() { return GImGui->CurrentWindow->Collapsed; } void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiSetCond cond) { ImGuiWindow* window = FindWindowByName(name); if (window) SetWindowCollapsed(window, collapsed, cond); } void ImGui::SetWindowFocus() { FocusWindow(GImGui->CurrentWindow); } void ImGui::SetWindowFocus(const char* name) { if (name) { ImGuiWindow* window = FindWindowByName(name); if (window) FocusWindow(window); } else { FocusWindow(NULL); } } void ImGui::SetNextWindowPos(const ImVec2& pos, ImGuiSetCond cond) { ImGuiState& g = *GImGui; g.SetNextWindowPosVal = pos; g.SetNextWindowPosCond = cond ? cond : ImGuiSetCond_Always; } void ImGui::SetNextWindowPosCenter(ImGuiSetCond cond) { ImGuiState& g = *GImGui; g.SetNextWindowPosVal = ImVec2(-FLT_MAX, -FLT_MAX); g.SetNextWindowPosCond = cond ? cond : ImGuiSetCond_Always; } void ImGui::SetNextWindowSize(const ImVec2& size, ImGuiSetCond cond) { ImGuiState& g = *GImGui; g.SetNextWindowSizeVal = size; g.SetNextWindowSizeCond = cond ? cond : ImGuiSetCond_Always; } void ImGui::SetNextWindowContentSize(const ImVec2& size) { ImGuiState& g = *GImGui; g.SetNextWindowContentSizeVal = size; g.SetNextWindowContentSizeCond = ImGuiSetCond_Always; } void ImGui::SetNextWindowContentWidth(float width) { ImGuiState& g = *GImGui; g.SetNextWindowContentSizeVal = ImVec2(width, g.SetNextWindowContentSizeCond ? g.SetNextWindowContentSizeVal.y : 0.0f); g.SetNextWindowContentSizeCond = ImGuiSetCond_Always; } void ImGui::SetNextWindowCollapsed(bool collapsed, ImGuiSetCond cond) { ImGuiState& g = *GImGui; g.SetNextWindowCollapsedVal = collapsed; g.SetNextWindowCollapsedCond = cond ? cond : ImGuiSetCond_Always; } void ImGui::SetNextWindowFocus() { ImGuiState& g = *GImGui; g.SetNextWindowFocus = true; } // In window space (not screen space!) ImVec2 ImGui::GetContentRegionMax() { ImGuiWindow* window = GetCurrentWindowRead(); ImVec2 content_region_size = ImVec2(window->SizeContentsExplicit.x ? window->SizeContentsExplicit.x : window->Size.x - window->ScrollbarSizes.x, window->SizeContentsExplicit.y ? window->SizeContentsExplicit.y : window->Size.y - window->ScrollbarSizes.y); ImVec2 mx = content_region_size - window->Scroll - window->WindowPadding; if (window->DC.ColumnsCount != 1) mx.x = ImGui::GetColumnOffset(window->DC.ColumnsCurrent + 1) - window->WindowPadding.x; return mx; } ImVec2 ImGui::GetContentRegionAvail() { ImGuiWindow* window = GetCurrentWindowRead(); return GetContentRegionMax() - (window->DC.CursorPos - window->Pos); } float ImGui::GetContentRegionAvailWidth() { return GetContentRegionAvail().x; } // In window space (not screen space!) ImVec2 ImGui::GetWindowContentRegionMin() { ImGuiWindow* window = GetCurrentWindowRead(); return ImVec2(-window->Scroll.x, -window->Scroll.y + window->TitleBarHeight() + window->MenuBarHeight()) + window->WindowPadding; } ImVec2 ImGui::GetWindowContentRegionMax() { ImGuiWindow* window = GetCurrentWindowRead(); ImVec2 content_region_size = ImVec2(window->SizeContentsExplicit.x ? window->SizeContentsExplicit.x : window->Size.x, window->SizeContentsExplicit.y ? window->SizeContentsExplicit.y : window->Size.y); ImVec2 m = content_region_size - window->Scroll - window->WindowPadding - window->ScrollbarSizes; return m; } float ImGui::GetWindowContentRegionWidth() { return GetWindowContentRegionMax().x - GetWindowContentRegionMin().x; } float ImGui::GetTextLineHeight() { ImGuiState& g = *GImGui; return g.FontSize; } float ImGui::GetTextLineHeightWithSpacing() { ImGuiState& g = *GImGui; return g.FontSize + g.Style.ItemSpacing.y; } float ImGui::GetItemsLineHeightWithSpacing() { ImGuiState& g = *GImGui; return g.FontSize + g.Style.FramePadding.y * 2.0f + g.Style.ItemSpacing.y; } ImDrawList* ImGui::GetWindowDrawList() { ImGuiWindow* window = GetCurrentWindow(); return window->DrawList; } ImFont* ImGui::GetWindowFont() { ImGuiState& g = *GImGui; return g.Font; } float ImGui::GetWindowFontSize() { ImGuiState& g = *GImGui; return g.FontSize; } void ImGui::SetWindowFontScale(float scale) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); window->FontWindowScale = scale; g.FontSize = window->CalcFontSize(); } // User generally sees positions in window coordinates. Internally we store CursorPos in absolute screen coordinates because it is more convenient. // Conversion happens as we pass the value to user, but it makes our naming convention confusing because GetCursorPos() == (DC.CursorPos - window.Pos). May want to rename 'DC.CursorPos'. ImVec2 ImGui::GetCursorPos() { ImGuiWindow* window = GetCurrentWindowRead(); return window->DC.CursorPos - window->Pos + window->Scroll; } float ImGui::GetCursorPosX() { ImGuiWindow* window = GetCurrentWindow(); return window->DC.CursorPos.x - window->Pos.x + window->Scroll.x; } float ImGui::GetCursorPosY() { ImGuiWindow* window = GetCurrentWindow(); return window->DC.CursorPos.y - window->Pos.y + window->Scroll.y; } void ImGui::SetCursorPos(const ImVec2& local_pos) { ImGuiWindow* window = GetCurrentWindow(); window->DC.CursorPos = window->Pos - window->Scroll + local_pos; window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, window->DC.CursorPos); } void ImGui::SetCursorPosX(float x) { ImGuiWindow* window = GetCurrentWindow(); window->DC.CursorPos.x = window->Pos.x - window->Scroll.x + x; window->DC.CursorMaxPos.x = ImMax(window->DC.CursorMaxPos.x, window->DC.CursorPos.x); } void ImGui::SetCursorPosY(float y) { ImGuiWindow* window = GetCurrentWindow(); window->DC.CursorPos.y = window->Pos.y - window->Scroll.y + y; window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, window->DC.CursorPos.y); } ImVec2 ImGui::GetCursorStartPos() { ImGuiWindow* window = GetCurrentWindowRead(); return window->DC.CursorStartPos - window->Pos; } ImVec2 ImGui::GetCursorScreenPos() { ImGuiWindow* window = GetCurrentWindowRead(); return window->DC.CursorPos; } void ImGui::SetCursorScreenPos(const ImVec2& screen_pos) { ImGuiWindow* window = GetCurrentWindow(); window->DC.CursorPos = screen_pos; } float ImGui::GetScrollX() { return GImGui->CurrentWindow->Scroll.x; } float ImGui::GetScrollY() { return GImGui->CurrentWindow->Scroll.y; } float ImGui::GetScrollMaxX() { ImGuiWindow* window = GetCurrentWindowRead(); return window->SizeContents.x - window->SizeFull.x - window->ScrollbarSizes.x; } float ImGui::GetScrollMaxY() { ImGuiWindow* window = GetCurrentWindowRead(); return window->SizeContents.y - window->SizeFull.y - window->ScrollbarSizes.y; } void ImGui::SetScrollX(float scroll_x) { ImGuiWindow* window = GetCurrentWindow(); window->ScrollTarget.x = scroll_x; window->ScrollTargetCenterRatio.x = 0.0f; } void ImGui::SetScrollY(float scroll_y) { ImGuiWindow* window = GetCurrentWindow(); window->ScrollTarget.y = scroll_y + window->TitleBarHeight(); // title bar height canceled out when using ScrollTargetRelY window->ScrollTargetCenterRatio.y = 0.0f; } void ImGui::SetScrollFromPosY(float pos_y, float center_y_ratio) { // We store a target position so centering can occur on the next frame when we are guaranteed to have a known window size ImGuiWindow* window = GetCurrentWindow(); IM_ASSERT(center_y_ratio >= 0.0f && center_y_ratio <= 1.0f); window->ScrollTarget.y = (float)(int)(pos_y + window->Scroll.y); if (center_y_ratio <= 0.0f && window->ScrollTarget.y <= window->WindowPadding.y) // Minor hack to make "scroll to top" take account of WindowPadding, else it would scroll to (WindowPadding.y - ItemSpacing.y) window->ScrollTarget.y = 0.0f; window->ScrollTargetCenterRatio.y = center_y_ratio; } // center_y_ratio: 0.0f top of last item, 0.5f vertical center of last item, 1.0f bottom of last item. void ImGui::SetScrollHere(float center_y_ratio) { ImGuiWindow* window = GetCurrentWindow(); float target_y = window->DC.CursorPosPrevLine.y + (window->DC.PrevLineHeight * center_y_ratio) + (GImGui->Style.ItemSpacing.y * (center_y_ratio - 0.5f) * 2.0f); // Precisely aim above, in the middle or below the last line. ImGui::SetScrollFromPosY(target_y - window->Pos.y, center_y_ratio); } void ImGui::SetKeyboardFocusHere(int offset) { ImGuiWindow* window = GetCurrentWindow(); window->FocusIdxAllRequestNext = window->FocusIdxAllCounter + 1 + offset; window->FocusIdxTabRequestNext = IM_INT_MAX; } void ImGui::SetStateStorage(ImGuiStorage* tree) { ImGuiWindow* window = GetCurrentWindow(); window->DC.StateStorage = tree ? tree : &window->StateStorage; } ImGuiStorage* ImGui::GetStateStorage() { ImGuiWindow* window = GetCurrentWindowRead(); return window->DC.StateStorage; } void ImGui::TextV(const char* fmt, va_list args) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; ImGuiState& g = *GImGui; const char* text_end = g.TempBuffer + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args); TextUnformatted(g.TempBuffer, text_end); } void ImGui::Text(const char* fmt, ...) { va_list args; va_start(args, fmt); TextV(fmt, args); va_end(args); } void ImGui::TextColoredV(const ImVec4& col, const char* fmt, va_list args) { ImGui::PushStyleColor(ImGuiCol_Text, col); TextV(fmt, args); ImGui::PopStyleColor(); } void ImGui::TextColored(const ImVec4& col, const char* fmt, ...) { va_list args; va_start(args, fmt); TextColoredV(col, fmt, args); va_end(args); } void ImGui::TextDisabledV(const char* fmt, va_list args) { ImGui::PushStyleColor(ImGuiCol_Text, GImGui->Style.Colors[ImGuiCol_TextDisabled]); TextV(fmt, args); ImGui::PopStyleColor(); } void ImGui::TextDisabled(const char* fmt, ...) { va_list args; va_start(args, fmt); TextDisabledV(fmt, args); va_end(args); } void ImGui::TextWrappedV(const char* fmt, va_list args) { ImGui::PushTextWrapPos(0.0f); TextV(fmt, args); ImGui::PopTextWrapPos(); } void ImGui::TextWrapped(const char* fmt, ...) { va_list args; va_start(args, fmt); TextWrappedV(fmt, args); va_end(args); } void ImGui::TextUnformatted(const char* text, const char* text_end) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; ImGuiState& g = *GImGui; IM_ASSERT(text != NULL); const char* text_begin = text; if (text_end == NULL) text_end = text + strlen(text); // FIXME-OPT const float wrap_pos_x = window->DC.TextWrapPos; const bool wrap_enabled = wrap_pos_x >= 0.0f; if (text_end - text > 2000 && !wrap_enabled) { // Long text! // Perform manual coarse clipping to optimize for long multi-line text // From this point we will only compute the width of lines that are visible. Optimization only available when word-wrapping is disabled. // We also don't vertically center the text within the line full height, which is unlikely to matter because we are likely the biggest and only item on the line. const char* line = text; const float line_height = ImGui::GetTextLineHeight(); const ImVec2 text_pos = window->DC.CursorPos + ImVec2(0.0f, window->DC.CurrentLineTextBaseOffset); const ImRect clip_rect = window->ClipRect; ImVec2 text_size(0,0); if (text_pos.y <= clip_rect.Max.y) { ImVec2 pos = text_pos; // Lines to skip (can't skip when logging text) if (!g.LogEnabled) { int lines_skippable = (int)((clip_rect.Min.y - text_pos.y) / line_height); if (lines_skippable > 0) { int lines_skipped = 0; while (line < text_end && lines_skipped < lines_skippable) { const char* line_end = strchr(line, '\n'); line = line_end + 1; lines_skipped++; } pos.y += lines_skipped * line_height; } } // Lines to render if (line < text_end) { ImRect line_rect(pos, pos + ImVec2(ImGui::GetWindowWidth(), line_height)); while (line < text_end) { const char* line_end = strchr(line, '\n'); if (IsClippedEx(line_rect, NULL, false)) break; const ImVec2 line_size = CalcTextSize(line, line_end, false); text_size.x = ImMax(text_size.x, line_size.x); RenderText(pos, line, line_end, false); if (!line_end) line_end = text_end; line = line_end + 1; line_rect.Min.y += line_height; line_rect.Max.y += line_height; pos.y += line_height; } // Count remaining lines int lines_skipped = 0; while (line < text_end) { const char* line_end = strchr(line, '\n'); if (!line_end) line_end = text_end; line = line_end + 1; lines_skipped++; } pos.y += lines_skipped * line_height; } text_size.y += (pos - text_pos).y; } ImRect bb(text_pos, text_pos + text_size); ItemSize(bb); ItemAdd(bb, NULL); } else { const float wrap_width = wrap_enabled ? CalcWrapWidthForPos(window->DC.CursorPos, wrap_pos_x) : 0.0f; const ImVec2 text_size = CalcTextSize(text_begin, text_end, false, wrap_width); // Account of baseline offset ImVec2 text_pos = window->DC.CursorPos; text_pos.y += window->DC.CurrentLineTextBaseOffset; ImRect bb(text_pos, text_pos + text_size); ItemSize(text_size); if (!ItemAdd(bb, NULL)) return; // Render (we don't hide text after ## in this end-user function) RenderTextWrapped(bb.Min, text_begin, text_end, wrap_width); } } void ImGui::AlignFirstTextHeightToWidgets() { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; // Declare a dummy item size to that upcoming items that are smaller will center-align on the newly expanded line height. ImGuiState& g = *GImGui; ItemSize(ImVec2(0, g.FontSize + g.Style.FramePadding.y*2), g.Style.FramePadding.y); ImGui::SameLine(0, 0); } // Add a label+text combo aligned to other label+value widgets void ImGui::LabelTextV(const char* label, const char* fmt, va_list args) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const float w = CalcItemWidth(); const ImVec2 label_size = CalcTextSize(label, NULL, true); const ImRect value_bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(w + style.FramePadding.x*2, label_size.y + style.FramePadding.y*2)); const ImRect total_bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(w + style.FramePadding.x*2 + (label_size.x > 0.0f ? style.ItemInnerSpacing.x : 0.0f), style.FramePadding.y*2) + label_size); ItemSize(total_bb, style.FramePadding.y); if (!ItemAdd(total_bb, NULL)) return; // Render const char* value_text_begin = &g.TempBuffer[0]; const char* value_text_end = value_text_begin + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args); RenderTextClipped(value_bb.Min, value_bb.Max, value_text_begin, value_text_end, NULL, ImGuiAlign_VCenter); RenderText(ImVec2(value_bb.Max.x + style.ItemInnerSpacing.x, value_bb.Min.y + style.FramePadding.y), label); } void ImGui::LabelText(const char* label, const char* fmt, ...) { va_list args; va_start(args, fmt); LabelTextV(label, fmt, args); va_end(args); } static inline bool IsWindowContentHoverable(ImGuiWindow* window) { // An active popup disable hovering on other windows (apart from its own children) ImGuiState& g = *GImGui; if (ImGuiWindow* focused_window = g.FocusedWindow) if (ImGuiWindow* focused_root_window = focused_window->RootWindow) if ((focused_root_window->Flags & ImGuiWindowFlags_Popup) != 0 && focused_root_window->WasActive && focused_root_window != window->RootWindow) return false; return true; } bool ImGui::ButtonBehavior(const ImRect& bb, ImGuiID id, bool* out_hovered, bool* out_held, bool allow_key_modifiers, ImGuiButtonFlags flags) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); if (flags & ImGuiButtonFlags_Disabled) { if (out_hovered) *out_hovered = false; if (out_held) *out_held = false; if (g.ActiveId == id) SetActiveID(0); return false; } bool pressed = false; const bool hovered = IsHovered(bb, id, (flags & ImGuiButtonFlags_FlattenChilds) != 0); if (hovered) { SetHoveredID(id); if (allow_key_modifiers || (!g.IO.KeyCtrl && !g.IO.KeyShift && !g.IO.KeyAlt)) { if (g.IO.MouseClicked[0]) { if (flags & ImGuiButtonFlags_PressedOnClick) { pressed = true; SetActiveID(0); } else { SetActiveID(id, window); } FocusWindow(window); } else if (g.IO.MouseReleased[0] && (flags & ImGuiButtonFlags_PressedOnRelease)) { pressed = true; SetActiveID(0); } else if ((flags & ImGuiButtonFlags_Repeat) && g.ActiveId == id && ImGui::IsMouseClicked(0, true)) { pressed = true; } } } bool held = false; if (g.ActiveId == id) { if (g.IO.MouseDown[0]) { held = true; } else { if (hovered) pressed = true; SetActiveID(0); } } if (out_hovered) *out_hovered = hovered; if (out_held) *out_held = held; return pressed; } bool ImGui::ButtonEx(const char* label, const ImVec2& size_arg, ImGuiButtonFlags flags) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const ImGuiID id = window->GetID(label); const ImVec2 label_size = ImGui::CalcTextSize(label, NULL, true); ImVec2 pos = window->DC.CursorPos; if ((flags & ImGuiButtonFlags_AlignTextBaseLine) && style.FramePadding.y < window->DC.CurrentLineTextBaseOffset) pos.y += window->DC.CurrentLineTextBaseOffset - style.FramePadding.y; ImVec2 size = CalcItemSize(size_arg, label_size.x + style.FramePadding.x * 2.0f, label_size.y + style.FramePadding.y * 2.0f); const ImRect bb(pos, pos + size); ItemSize(bb, style.FramePadding.y); if (!ItemAdd(bb, &id)) return false; if (window->DC.ButtonRepeat) flags |= ImGuiButtonFlags_Repeat; bool hovered, held; bool pressed = ButtonBehavior(bb, id, &hovered, &held, true, flags); // Render const ImU32 col = window->Color((hovered && held) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); RenderFrame(bb.Min, bb.Max, col, true, style.FrameRounding); RenderTextClipped(bb.Min, bb.Max, label, NULL, &label_size, ImGuiAlign_Center | ImGuiAlign_VCenter); // Automatically close popups //if (pressed && !(flags & ImGuiButtonFlags_DontClosePopups) && (window->Flags & ImGuiWindowFlags_Popup)) // ImGui::CloseCurrentPopup(); return pressed; } bool ImGui::Button(const char* label, const ImVec2& size_arg) { return ButtonEx(label, size_arg, 0); } // Small buttons fits within text without additional vertical spacing. bool ImGui::SmallButton(const char* label) { ImGuiState& g = *GImGui; float backup_padding_y = g.Style.FramePadding.y; g.Style.FramePadding.y = 0.0f; bool pressed = ButtonEx(label, ImVec2(0,0), ImGuiButtonFlags_AlignTextBaseLine); g.Style.FramePadding.y = backup_padding_y; return pressed; } // Tip: use ImGui::PushID()/PopID() to push indices or pointers in the ID stack. // Then you can keep 'str_id' empty or the same for all your buttons (instead of creating a string based on a non-string id) bool ImGui::InvisibleButton(const char* str_id, const ImVec2& size_arg) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; const ImGuiID id = window->GetID(str_id); ImVec2 size = CalcItemSize(size_arg, 0.0f, 0.0f); const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); ItemSize(bb); if (!ItemAdd(bb, &id)) return false; bool hovered, held; bool pressed = ButtonBehavior(bb, id, &hovered, &held, true); return pressed; } // Upper-right button to close a window. static bool CloseWindowButton(bool* p_opened) { ImGuiWindow* window = ImGui::GetCurrentWindow(); const ImGuiID id = window->GetID("#CLOSE"); const float size = window->TitleBarHeight() - 4.0f; const ImRect bb(window->Rect().GetTR() + ImVec2(-2.0f-size,2.0f), window->Rect().GetTR() + ImVec2(-2.0f,2.0f+size)); bool hovered, held; bool pressed = ImGui::ButtonBehavior(bb, id, &hovered, &held, true); // Render const ImU32 col = window->Color((held && hovered) ? ImGuiCol_CloseButtonActive : hovered ? ImGuiCol_CloseButtonHovered : ImGuiCol_CloseButton); const ImVec2 center = bb.GetCenter(); window->DrawList->AddCircleFilled(center, ImMax(2.0f,size*0.5f), col, 16); const float cross_extent = (size * 0.5f * 0.7071f) - 1.0f; if (hovered) { window->DrawList->AddLine(center + ImVec2(+cross_extent,+cross_extent), center + ImVec2(-cross_extent,-cross_extent), window->Color(ImGuiCol_Text)); window->DrawList->AddLine(center + ImVec2(+cross_extent,-cross_extent), center + ImVec2(-cross_extent,+cross_extent), window->Color(ImGuiCol_Text)); } if (p_opened != NULL && pressed) *p_opened = !*p_opened; return pressed; } void ImGui::Image(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0, const ImVec2& uv1, const ImVec4& tint_col, const ImVec4& border_col) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); if (border_col.w > 0.0f) bb.Max += ImVec2(2,2); ItemSize(bb); if (!ItemAdd(bb, NULL)) return; if (border_col.w > 0.0f) { window->DrawList->AddRect(bb.Min, bb.Max, window->Color(border_col), 0.0f); window->DrawList->AddImage(user_texture_id, bb.Min+ImVec2(1,1), bb.Max-ImVec2(1,1), uv0, uv1, window->Color(tint_col)); } else { window->DrawList->AddImage(user_texture_id, bb.Min, bb.Max, uv0, uv1, window->Color(tint_col)); } } // frame_padding < 0: uses FramePadding from style (default) // frame_padding = 0: no framing // frame_padding > 0: set framing size // The color used are the button colors. bool ImGui::ImageButton(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0, const ImVec2& uv1, int frame_padding, const ImVec4& bg_col, const ImVec4& tint_col) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; // Default to using texture ID as ID. User can still push string/integer prefixes. // We could hash the size/uv to create a unique ID but that would prevent the user from animating UV. ImGui::PushID((void *)user_texture_id); const ImGuiID id = window->GetID("#image"); ImGui::PopID(); const ImVec2 padding = (frame_padding >= 0) ? ImVec2((float)frame_padding, (float)frame_padding) : style.FramePadding; const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size + padding*2); const ImRect image_bb(window->DC.CursorPos + padding, window->DC.CursorPos + padding + size); ItemSize(bb); if (!ItemAdd(bb, &id)) return false; bool hovered, held; bool pressed = ButtonBehavior(bb, id, &hovered, &held, true); // Render const ImU32 col = window->Color((hovered && held) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); RenderFrame(bb.Min, bb.Max, col); if (bg_col.w > 0.0f) window->DrawList->AddRectFilled(image_bb.Min, image_bb.Max, window->Color(bg_col)); window->DrawList->AddImage(user_texture_id, image_bb.Min, image_bb.Max, uv0, uv1, window->Color(tint_col)); return pressed; } // Start logging ImGui output to TTY void ImGui::LogToTTY(int max_depth) { ImGuiState& g = *GImGui; if (g.LogEnabled) return; ImGuiWindow* window = GetCurrentWindowRead(); g.LogEnabled = true; g.LogFile = stdout; g.LogStartDepth = window->DC.TreeDepth; if (max_depth >= 0) g.LogAutoExpandMaxDepth = max_depth; } // Start logging ImGui output to given file void ImGui::LogToFile(int max_depth, const char* filename) { ImGuiState& g = *GImGui; if (g.LogEnabled) return; ImGuiWindow* window = GetCurrentWindowRead(); if (!filename) { filename = g.IO.LogFilename; if (!filename) return; } g.LogFile = fopen(filename, "ab"); if (!g.LogFile) { IM_ASSERT(g.LogFile != NULL); // Consider this an error return; } g.LogEnabled = true; g.LogStartDepth = window->DC.TreeDepth; if (max_depth >= 0) g.LogAutoExpandMaxDepth = max_depth; } // Start logging ImGui output to clipboard void ImGui::LogToClipboard(int max_depth) { ImGuiState& g = *GImGui; if (g.LogEnabled) return; ImGuiWindow* window = GetCurrentWindowRead(); g.LogEnabled = true; g.LogFile = NULL; g.LogStartDepth = window->DC.TreeDepth; if (max_depth >= 0) g.LogAutoExpandMaxDepth = max_depth; } void ImGui::LogFinish() { ImGuiState& g = *GImGui; if (!g.LogEnabled) return; ImGui::LogText(IM_NEWLINE); g.LogEnabled = false; if (g.LogFile != NULL) { if (g.LogFile == stdout) fflush(g.LogFile); else fclose(g.LogFile); g.LogFile = NULL; } if (g.LogClipboard->size() > 1) { if (g.IO.SetClipboardTextFn) g.IO.SetClipboardTextFn(g.LogClipboard->begin()); g.LogClipboard->clear(); } } // Helper to display logging buttons void ImGui::LogButtons() { ImGuiState& g = *GImGui; ImGui::PushID("LogButtons"); const bool log_to_tty = ImGui::Button("Log To TTY"); ImGui::SameLine(); const bool log_to_file = ImGui::Button("Log To File"); ImGui::SameLine(); const bool log_to_clipboard = ImGui::Button("Log To Clipboard"); ImGui::SameLine(); ImGui::PushItemWidth(80.0f); ImGui::PushAllowKeyboardFocus(false); ImGui::SliderInt("Depth", &g.LogAutoExpandMaxDepth, 0, 9, NULL); ImGui::PopAllowKeyboardFocus(); ImGui::PopItemWidth(); ImGui::PopID(); // Start logging at the end of the function so that the buttons don't appear in the log if (log_to_tty) LogToTTY(g.LogAutoExpandMaxDepth); if (log_to_file) LogToFile(g.LogAutoExpandMaxDepth, g.IO.LogFilename); if (log_to_clipboard) LogToClipboard(g.LogAutoExpandMaxDepth); } bool ImGui::TreeNodeBehaviorIsOpened(ImGuiID id, ImGuiTreeNodeFlags flags) { // We only write to the tree storage if the user clicks (or explicitely use SetNextTreeNode*** functions) ImGuiState& g = *GImGui; ImGuiWindow* window = g.CurrentWindow; ImGuiStorage* storage = window->DC.StateStorage; bool opened; if (g.SetNextTreeNodeOpenedCond != 0) { if (g.SetNextTreeNodeOpenedCond & ImGuiSetCond_Always) { opened = g.SetNextTreeNodeOpenedVal; storage->SetInt(id, opened); } else { // We treat ImGuiSetCondition_Once and ImGuiSetCondition_FirstUseEver the same because tree node state are not saved persistently. const int stored_value = storage->GetInt(id, -1); if (stored_value == -1) { opened = g.SetNextTreeNodeOpenedVal; storage->SetInt(id, opened); } else { opened = stored_value != 0; } } g.SetNextTreeNodeOpenedCond = 0; } else { opened = storage->GetInt(id, (flags & ImGuiTreeNodeFlags_DefaultOpen) ? 1 : 0) != 0; } // When logging is enabled, we automatically expand tree nodes (but *NOT* collapsing headers.. seems like sensible behavior). // NB- If we are above max depth we still allow manually opened nodes to be logged. if (g.LogEnabled && !(flags & ImGuiTreeNodeFlags_NoAutoExpandOnLog) && window->DC.TreeDepth < g.LogAutoExpandMaxDepth) opened = true; return opened; } bool ImGui::CollapsingHeader(const char* label, const char* str_id, bool display_frame, bool default_open) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; IM_ASSERT(str_id != NULL || label != NULL); if (str_id == NULL) str_id = label; if (label == NULL) label = str_id; const ImGuiID id = window->GetID(str_id); // Framed header expand a little outside the default padding const ImVec2 window_padding = window->WindowPadding; const ImVec2 label_size = CalcTextSize(label, NULL, true); const ImVec2 pos_min = window->DC.CursorPos; const ImVec2 pos_max = window->Pos + GetContentRegionMax(); ImRect bb = ImRect(pos_min, ImVec2(pos_max.x, pos_min.y + label_size.y)); if (display_frame) { bb.Min.x -= (float)(int)(window_padding.x*0.5f) - 1; bb.Max.x += (float)(int)(window_padding.x*0.5f) - 1; bb.Max.y += style.FramePadding.y * 2; } const float collapser_width = g.FontSize + style.FramePadding.x*2; const ImRect text_bb(bb.Min, bb.Min + ImVec2(collapser_width + style.FramePadding.x*2*0 + (label_size.x > 0.0f ? label_size.x : 0.0f), label_size.y)); ItemSize(ImVec2(text_bb.GetSize().x, bb.GetSize().y), display_frame ? style.FramePadding.y : 0.0f); const ImRect interact_bb = display_frame ? bb : ImRect(text_bb.Min, text_bb.Max + ImVec2(style.FramePadding.x*2,0.0f)); // FIXME bool opened = TreeNodeBehaviorIsOpened(id, (default_open ? ImGuiTreeNodeFlags_DefaultOpen : 0) | (display_frame ? ImGuiTreeNodeFlags_NoAutoExpandOnLog : 0)); if (!ItemAdd(interact_bb, &id)) return opened; bool hovered, held; bool pressed = ButtonBehavior(interact_bb, id, &hovered, &held, false); if (pressed) { opened = !opened; window->DC.StateStorage->SetInt(id, opened); } // Render const ImU32 col = window->Color((held && hovered) ? ImGuiCol_HeaderActive : hovered ? ImGuiCol_HeaderHovered : ImGuiCol_Header); if (display_frame) { // Framed type RenderFrame(bb.Min, bb.Max, col, true, style.FrameRounding); RenderCollapseTriangle(bb.Min + style.FramePadding, opened, 1.0f, true); if (g.LogEnabled) { // NB: '##' is normally used to hide text (as a library-wide feature), so we need to specify the text range to make sure the ## aren't stripped out here. const char log_prefix[] = "\n##"; LogRenderedText(bb.Min + style.FramePadding, log_prefix, log_prefix+3); } RenderTextClipped(bb.Min + style.FramePadding + ImVec2(collapser_width,0), bb.Max, label, NULL, &label_size); if (g.LogEnabled) { const char log_suffix[] = "##"; LogRenderedText(bb.Min + style.FramePadding, log_suffix, log_suffix+2); } } else { // Unframed typed for tree nodes if ((held && hovered) || hovered) RenderFrame(bb.Min, bb.Max, col, false); RenderCollapseTriangle(bb.Min + ImVec2(style.FramePadding.x, g.FontSize*0.15f), opened, 0.70f, false); if (g.LogEnabled) LogRenderedText(bb.Min, ">"); RenderText(bb.Min + ImVec2(collapser_width,0), label); } return opened; } void ImGui::Bullet() { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const float line_height = g.FontSize; const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(line_height, line_height)); ItemSize(bb); if (!ItemAdd(bb, NULL)) { ImGui::SameLine(0, -1); return; } // Render const float bullet_size = line_height*0.15f; window->DrawList->AddCircleFilled(bb.Min + ImVec2(style.FramePadding.x + line_height*0.5f, line_height*0.5f), bullet_size, window->Color(ImGuiCol_Text)); // Stay on same line ImGui::SameLine(0, -1); } // Text with a little bullet aligned to the typical tree node. void ImGui::BulletTextV(const char* fmt, va_list args) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const char* text_begin = g.TempBuffer; const char* text_end = text_begin + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args); const float line_height = g.FontSize; const ImVec2 label_size = CalcTextSize(text_begin, text_end, true); const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(line_height + (label_size.x > 0.0f ? (style.FramePadding.x*2) : 0.0f),0) + label_size); // Empty text doesn't add padding ItemSize(bb); if (!ItemAdd(bb, NULL)) return; // Render const float bullet_size = line_height*0.15f; window->DrawList->AddCircleFilled(bb.Min + ImVec2(style.FramePadding.x + line_height*0.5f, line_height*0.5f), bullet_size, window->Color(ImGuiCol_Text)); RenderText(bb.Min+ImVec2(g.FontSize + style.FramePadding.x*2,0), text_begin, text_end); } void ImGui::BulletText(const char* fmt, ...) { va_list args; va_start(args, fmt); BulletTextV(fmt, args); va_end(args); } // If returning 'true' the node is open and the user is responsible for calling TreePop bool ImGui::TreeNodeV(const char* str_id, const char* fmt, va_list args) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args); if (!str_id || !str_id[0]) str_id = fmt; ImGui::PushID(str_id); const bool opened = ImGui::CollapsingHeader(g.TempBuffer, "", false); ImGui::PopID(); if (opened) ImGui::TreePush(str_id); return opened; } bool ImGui::TreeNode(const char* str_id, const char* fmt, ...) { va_list args; va_start(args, fmt); bool s = TreeNodeV(str_id, fmt, args); va_end(args); return s; } // If returning 'true' the node is open and the user is responsible for calling TreePop bool ImGui::TreeNodeV(const void* ptr_id, const char* fmt, va_list args) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args); if (!ptr_id) ptr_id = fmt; ImGui::PushID(ptr_id); const bool opened = ImGui::CollapsingHeader(g.TempBuffer, "", false); ImGui::PopID(); if (opened) ImGui::TreePush(ptr_id); return opened; } bool ImGui::TreeNode(const void* ptr_id, const char* fmt, ...) { va_list args; va_start(args, fmt); bool s = TreeNodeV(ptr_id, fmt, args); va_end(args); return s; } bool ImGui::TreeNode(const char* str_label_id) { return TreeNode(str_label_id, "%s", str_label_id); } void ImGui::SetNextTreeNodeOpened(bool opened, ImGuiSetCond cond) { ImGuiState& g = *GImGui; g.SetNextTreeNodeOpenedVal = opened; g.SetNextTreeNodeOpenedCond = cond ? cond : ImGuiSetCond_Always; } void ImGui::PushID(const char* str_id) { ImGuiWindow* window = GetCurrentWindow(); window->IDStack.push_back(window->GetID(str_id)); } void ImGui::PushID(const char* str_id_begin, const char* str_id_end) { ImGuiWindow* window = GetCurrentWindow(); window->IDStack.push_back(window->GetID(str_id_begin, str_id_end)); } void ImGui::PushID(const void* ptr_id) { ImGuiWindow* window = GetCurrentWindow(); window->IDStack.push_back(window->GetID(ptr_id)); } void ImGui::PushID(int int_id) { const void* ptr_id = (void*)(intptr_t)int_id; ImGuiWindow* window = GetCurrentWindow(); window->IDStack.push_back(window->GetID(ptr_id)); } void ImGui::PopID() { ImGuiWindow* window = GetCurrentWindow(); window->IDStack.pop_back(); } ImGuiID ImGui::GetID(const char* str_id) { return GImGui->CurrentWindow->GetID(str_id); } ImGuiID ImGui::GetID(const char* str_id_begin, const char* str_id_end) { return GImGui->CurrentWindow->GetID(str_id_begin, str_id_end); } ImGuiID ImGui::GetID(const void* ptr_id) { return GImGui->CurrentWindow->GetID(ptr_id); } static inline void DataTypeFormatString(ImGuiDataType data_type, void* data_ptr, const char* display_format, char* buf, int buf_size) { if (data_type == ImGuiDataType_Int) ImFormatString(buf, buf_size, display_format, *(int*)data_ptr); else if (data_type == ImGuiDataType_Float) ImFormatString(buf, buf_size, display_format, *(float*)data_ptr); } static inline void DataTypeFormatString(ImGuiDataType data_type, void* data_ptr, int decimal_precision, char* buf, int buf_size) { if (data_type == ImGuiDataType_Int) { if (decimal_precision < 0) ImFormatString(buf, buf_size, "%d", *(int*)data_ptr); else ImFormatString(buf, buf_size, "%.*d", decimal_precision, *(int*)data_ptr); } else if (data_type == ImGuiDataType_Float) { if (decimal_precision < 0) ImFormatString(buf, buf_size, "%f", *(float*)data_ptr); // Ideally we'd have a minimum decimal precision of 1 to visually denote that it is a float, while hiding non-significant digits? else ImFormatString(buf, buf_size, "%.*f", decimal_precision, *(float*)data_ptr); } } static void DataTypeApplyOp(ImGuiDataType data_type, int op, void* value1, const void* value2)// Store into value1 { if (data_type == ImGuiDataType_Int) { if (op == '+') *(int*)value1 = *(int*)value1 + *(const int*)value2; else if (op == '-') *(int*)value1 = *(int*)value1 - *(const int*)value2; } else if (data_type == ImGuiDataType_Float) { if (op == '+') *(float*)value1 = *(float*)value1 + *(const float*)value2; else if (op == '-') *(float*)value1 = *(float*)value1 - *(const float*)value2; } } // User can input math operators (e.g. +100) to edit a numerical values. static void DataTypeApplyOpFromText(const char* buf, const char* initial_value_buf, ImGuiDataType data_type, void* data_ptr, const char* scalar_format) { while (ImCharIsSpace(*buf)) buf++; // We don't support '-' op because it would conflict with inputing negative value. // Instead you can use +-100 to subtract from an existing value char op = buf[0]; if (op == '+' || op == '*' || op == '/') { buf++; while (ImCharIsSpace(*buf)) buf++; } else { op = 0; } if (!buf[0]) return; if (data_type == ImGuiDataType_Int) { if (!scalar_format) scalar_format = "%d"; int* v = (int*)data_ptr; int ref_v = *v; if (op && sscanf(initial_value_buf, scalar_format, &ref_v) < 1) return; // Store operand in a float so we can use fractional value for multipliers (*1.1), but constant always parsed as integer so we can fit big integers (e.g. 2000000003) past float precision float op_v = 0.0f; if (op == '+') { if (sscanf(buf, "%f", &op_v) == 1) *v = (int)(ref_v + op_v); } // Add (use "+-" to subtract) else if (op == '*') { if (sscanf(buf, "%f", &op_v) == 1) *v = (int)(ref_v * op_v); } // Multiply else if (op == '/') { if (sscanf(buf, "%f", &op_v) == 1 && op_v != 0.0f) *v = (int)(ref_v / op_v); }// Divide else { if (sscanf(buf, scalar_format, &ref_v) == 1) *v = ref_v; } // Assign constant } else if (data_type == ImGuiDataType_Float) { // For floats we have to ignore format with precision (e.g. "%.2f") because sscanf doesn't take them in scalar_format = "%f"; float* v = (float*)data_ptr; float ref_v = *v; if (op && sscanf(initial_value_buf, scalar_format, &ref_v) < 1) return; float op_v = 0.0f; if (sscanf(buf, scalar_format, &op_v) < 1) return; if (op == '+') { *v = ref_v + op_v; } // Add (use "+-" to subtract) else if (op == '*') { *v = ref_v * op_v; } // Multiply else if (op == '/') { if (op_v != 0.0f) *v = ref_v / op_v; } // Divide else { *v = op_v; } // Assign constant } } // Create text input in place of a slider (when CTRL+Clicking on slider) bool ImGui::InputScalarAsWidgetReplacement(const ImRect& aabb, const char* label, ImGuiDataType data_type, void* data_ptr, ImGuiID id, int decimal_precision) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); // Our replacement widget will override the focus ID (registered previously to allow for a TAB focus to happen) SetActiveID(g.ScalarAsInputTextId, window); SetHoveredID(0); FocusableItemUnregister(window); char buf[32]; DataTypeFormatString(data_type, data_ptr, decimal_precision, buf, IM_ARRAYSIZE(buf)); bool value_changed = InputTextEx(label, buf, IM_ARRAYSIZE(buf), aabb.GetSize() - g.Style.FramePadding*2.0f, ImGuiInputTextFlags_CharsDecimal | ImGuiInputTextFlags_AutoSelectAll); if (g.ScalarAsInputTextId == 0) { // First frame IM_ASSERT(g.ActiveId == id); // InputText ID expected to match the Slider ID (else we'd need to store them both, which is also possible) g.ScalarAsInputTextId = g.ActiveId; SetHoveredID(id); } else if (g.ActiveId != g.ScalarAsInputTextId) { // Release g.ScalarAsInputTextId = 0; } if (value_changed) DataTypeApplyOpFromText(buf, GImGui->InputTextState.InitialText.begin(), data_type, data_ptr, NULL); return value_changed; } // Parse display precision back from the display format string int ImGui::ParseFormatPrecision(const char* fmt, int default_precision) { int precision = default_precision; while ((fmt = strchr(fmt, '%')) != NULL) { fmt++; if (fmt[0] == '%') { fmt++; continue; } // Ignore "%%" while (*fmt >= '0' && *fmt <= '9') fmt++; if (*fmt == '.') { precision = atoi(fmt + 1); if (precision < 0 || precision > 10) precision = default_precision; } break; } return precision; } float ImGui::RoundScalar(float value, int decimal_precision) { // Round past decimal precision // So when our value is 1.99999 with a precision of 0.001 we'll end up rounding to 2.0 // FIXME: Investigate better rounding methods static const float min_steps[10] = { 1.0f, 0.1f, 0.01f, 0.001f, 0.0001f, 0.00001f, 0.000001f, 0.0000001f, 0.00000001f, 0.000000001f }; float min_step = (decimal_precision >= 0 && decimal_precision < 10) ? min_steps[decimal_precision] : powf(10.0f, (float)-decimal_precision); bool negative = value < 0.0f; value = fabsf(value); float remainder = fmodf(value, min_step); if (remainder <= min_step*0.5f) value -= remainder; else value += (min_step - remainder); return negative ? -value : value; } bool ImGui::SliderBehavior(const ImRect& frame_bb, ImGuiID id, float* v, float v_min, float v_max, float power, int decimal_precision, bool horizontal) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); const ImGuiStyle& style = g.Style; // Draw frame RenderFrame(frame_bb.Min, frame_bb.Max, window->Color(ImGuiCol_FrameBg), true, style.FrameRounding); const bool is_non_linear = fabsf(power - 1.0f) > 0.0001f; const float grab_padding = 2.0f; const float slider_sz = horizontal ? (frame_bb.GetWidth() - grab_padding * 2.0f) : (frame_bb.GetHeight() - grab_padding * 2.0f); float grab_sz; if (decimal_precision > 0) grab_sz = ImMin(style.GrabMinSize, slider_sz); else grab_sz = ImMin(ImMax(1.0f * (slider_sz / (v_max-v_min+1.0f)), style.GrabMinSize), slider_sz); // Integer sliders, if possible have the grab size represent 1 unit const float slider_usable_sz = slider_sz - grab_sz; const float slider_usable_pos_min = (horizontal ? frame_bb.Min.x : frame_bb.Min.y) + grab_padding + grab_sz*0.5f; const float slider_usable_pos_max = (horizontal ? frame_bb.Max.x : frame_bb.Max.y) - grab_padding - grab_sz*0.5f; // For logarithmic sliders that cross over sign boundary we want the exponential increase to be symmetric around 0.0f float linear_zero_pos = 0.0f; // 0.0->1.0f if (v_min * v_max < 0.0f) { // Different sign const float linear_dist_min_to_0 = powf(fabsf(0.0f - v_min), 1.0f/power); const float linear_dist_max_to_0 = powf(fabsf(v_max - 0.0f), 1.0f/power); linear_zero_pos = linear_dist_min_to_0 / (linear_dist_min_to_0+linear_dist_max_to_0); } else { // Same sign linear_zero_pos = v_min < 0.0f ? 1.0f : 0.0f; } // Process clicking on the slider bool value_changed = false; if (g.ActiveId == id) { if (g.IO.MouseDown[0]) { const float mouse_abs_pos = horizontal ? g.IO.MousePos.x : g.IO.MousePos.y; float normalized_pos = ImClamp((mouse_abs_pos - slider_usable_pos_min) / slider_usable_sz, 0.0f, 1.0f); if (!horizontal) normalized_pos = 1.0f - normalized_pos; float new_value; if (is_non_linear) { // Account for logarithmic scale on both sides of the zero if (normalized_pos < linear_zero_pos) { // Negative: rescale to the negative range before powering float a = 1.0f - (normalized_pos / linear_zero_pos); a = powf(a, power); new_value = ImLerp(ImMin(v_max,0.0f), v_min, a); } else { // Positive: rescale to the positive range before powering float a; if (fabsf(linear_zero_pos - 1.0f) > 1.e-6) a = (normalized_pos - linear_zero_pos) / (1.0f - linear_zero_pos); else a = normalized_pos; a = powf(a, power); new_value = ImLerp(ImMax(v_min,0.0f), v_max, a); } } else { // Linear slider new_value = ImLerp(v_min, v_max, normalized_pos); } // Round past decimal precision new_value = RoundScalar(new_value, decimal_precision); if (*v != new_value) { *v = new_value; value_changed = true; } } else { SetActiveID(0); } } // Calculate slider grab positioning float grab_t; if (is_non_linear) { float v_clamped = ImClamp(*v, v_min, v_max); if (v_clamped < 0.0f) { const float f = 1.0f - (v_clamped - v_min) / (ImMin(0.0f,v_max) - v_min); grab_t = (1.0f - powf(f, 1.0f/power)) * linear_zero_pos; } else { const float f = (v_clamped - ImMax(0.0f,v_min)) / (v_max - ImMax(0.0f,v_min)); grab_t = linear_zero_pos + powf(f, 1.0f/power) * (1.0f - linear_zero_pos); } } else { // Linear slider grab_t = (ImClamp(*v, v_min, v_max) - v_min) / (v_max - v_min); } // Draw if (!horizontal) grab_t = 1.0f - grab_t; const float grab_pos = ImLerp(slider_usable_pos_min, slider_usable_pos_max, grab_t); ImRect grab_bb; if (horizontal) grab_bb = ImRect(ImVec2(grab_pos - grab_sz*0.5f, frame_bb.Min.y + grab_padding), ImVec2(grab_pos + grab_sz*0.5f, frame_bb.Max.y - grab_padding)); else grab_bb = ImRect(ImVec2(frame_bb.Min.x + grab_padding, grab_pos - grab_sz*0.5f), ImVec2(frame_bb.Max.x - grab_padding, grab_pos + grab_sz*0.5f)); window->DrawList->AddRectFilled(grab_bb.Min, grab_bb.Max, window->Color(g.ActiveId == id ? ImGuiCol_SliderGrabActive : ImGuiCol_SliderGrab), style.GrabRounding); return value_changed; } // Use power!=1.0 for logarithmic sliders. // Adjust display_format to decorate the value with a prefix or a suffix. // "%.3f" 1.234 // "%5.2f secs" 01.23 secs // "Gold: %.0f" Gold: 1 bool ImGui::SliderFloat(const char* label, float* v, float v_min, float v_max, const char* display_format, float power) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const ImGuiID id = window->GetID(label); const float w = CalcItemWidth(); const ImVec2 label_size = CalcTextSize(label, NULL, true); const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(w, label_size.y) + style.FramePadding*2.0f); const ImRect total_bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0.0f)); // NB- we don't call ItemSize() yet because we may turn into a text edit box below if (!ItemAdd(total_bb, &id)) { ItemSize(total_bb, style.FramePadding.y); return false; } const bool hovered = IsHovered(frame_bb, id); if (hovered) SetHoveredID(id); if (!display_format) display_format = "%.3f"; int decimal_precision = ParseFormatPrecision(display_format, 3); // Tabbing or CTRL-clicking on Slider turns it into an input box bool start_text_input = false; const bool tab_focus_requested = FocusableItemRegister(window, g.ActiveId == id); if (tab_focus_requested || (hovered && g.IO.MouseClicked[0])) { SetActiveID(id, window); FocusWindow(window); if (tab_focus_requested || g.IO.KeyCtrl) { start_text_input = true; g.ScalarAsInputTextId = 0; } } if (start_text_input || (g.ActiveId == id && g.ScalarAsInputTextId == id)) return InputScalarAsWidgetReplacement(frame_bb, label, ImGuiDataType_Float, v, id, decimal_precision); ItemSize(total_bb, style.FramePadding.y); // Actual slider behavior + render grab const bool value_changed = SliderBehavior(frame_bb, id, v, v_min, v_max, power, decimal_precision, true); // Display value using user-provided display format so user can add prefix/suffix/decorations to the value. char value_buf[64]; const char* value_buf_end = value_buf + ImFormatString(value_buf, IM_ARRAYSIZE(value_buf), display_format, *v); RenderTextClipped(frame_bb.Min, frame_bb.Max, value_buf, value_buf_end, NULL, ImGuiAlign_Center|ImGuiAlign_VCenter); if (label_size.x > 0.0f) RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y), label); return value_changed; } bool ImGui::VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* display_format, float power) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const ImGuiID id = window->GetID(label); const ImVec2 label_size = CalcTextSize(label, NULL, true); const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + size); const ImRect bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0.0f)); ItemSize(bb, style.FramePadding.y); if (!ItemAdd(frame_bb, &id)) return false; const bool hovered = IsHovered(frame_bb, id); if (hovered) SetHoveredID(id); if (!display_format) display_format = "%.3f"; int decimal_precision = ParseFormatPrecision(display_format, 3); if (hovered && g.IO.MouseClicked[0]) { SetActiveID(id, window); FocusWindow(window); } // Actual slider behavior + render grab bool value_changed = SliderBehavior(frame_bb, id, v, v_min, v_max, power, decimal_precision, false); // Display value using user-provided display format so user can add prefix/suffix/decorations to the value. // For the vertical slider we allow centered text to overlap the frame padding char value_buf[64]; char* value_buf_end = value_buf + ImFormatString(value_buf, IM_ARRAYSIZE(value_buf), display_format, *v); RenderTextClipped(ImVec2(frame_bb.Min.x, frame_bb.Min.y + style.FramePadding.y), frame_bb.Max, value_buf, value_buf_end, NULL, ImGuiAlign_Center); if (label_size.x > 0.0f) RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y), label); return value_changed; } bool ImGui::SliderAngle(const char* label, float* v_rad, float v_degrees_min, float v_degrees_max) { float v_deg = (*v_rad) * 360.0f / (2*IM_PI); bool value_changed = ImGui::SliderFloat(label, &v_deg, v_degrees_min, v_degrees_max, "%.0f deg", 1.0f); *v_rad = v_deg * (2*IM_PI) / 360.0f; return value_changed; } bool ImGui::SliderInt(const char* label, int* v, int v_min, int v_max, const char* display_format) { if (!display_format) display_format = "%.0f"; float v_f = (float)*v; bool value_changed = ImGui::SliderFloat(label, &v_f, (float)v_min, (float)v_max, display_format, 1.0f); *v = (int)v_f; return value_changed; } bool ImGui::VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* display_format) { if (!display_format) display_format = "%.0f"; float v_f = (float)*v; bool value_changed = ImGui::VSliderFloat(label, size, &v_f, (float)v_min, (float)v_max, display_format, 1.0f); *v = (int)v_f; return value_changed; } // Add multiple sliders on 1 line for compact edition of multiple components bool ImGui::SliderFloatN(const char* label, float* v, int components, float v_min, float v_max, const char* display_format, float power) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; bool value_changed = false; ImGui::BeginGroup(); ImGui::PushID(label); PushMultiItemsWidths(components); for (int i = 0; i < components; i++) { ImGui::PushID(i); value_changed |= ImGui::SliderFloat("##v", &v[i], v_min, v_max, display_format, power); ImGui::SameLine(0, g.Style.ItemInnerSpacing.x); ImGui::PopID(); ImGui::PopItemWidth(); } ImGui::PopID(); ImGui::TextUnformatted(label, FindTextDisplayEnd(label)); ImGui::EndGroup(); return value_changed; } bool ImGui::SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* display_format, float power) { return SliderFloatN(label, v, 2, v_min, v_max, display_format, power); } bool ImGui::SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* display_format, float power) { return SliderFloatN(label, v, 3, v_min, v_max, display_format, power); } bool ImGui::SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* display_format, float power) { return SliderFloatN(label, v, 4, v_min, v_max, display_format, power); } bool ImGui::SliderIntN(const char* label, int* v, int components, int v_min, int v_max, const char* display_format) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; bool value_changed = false; ImGui::BeginGroup(); ImGui::PushID(label); PushMultiItemsWidths(components); for (int i = 0; i < components; i++) { ImGui::PushID(i); value_changed |= ImGui::SliderInt("##v", &v[i], v_min, v_max, display_format); ImGui::SameLine(0, g.Style.ItemInnerSpacing.x); ImGui::PopID(); ImGui::PopItemWidth(); } ImGui::PopID(); ImGui::TextUnformatted(label, FindTextDisplayEnd(label)); ImGui::EndGroup(); return value_changed; } bool ImGui::SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* display_format) { return SliderIntN(label, v, 2, v_min, v_max, display_format); } bool ImGui::SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* display_format) { return SliderIntN(label, v, 3, v_min, v_max, display_format); } bool ImGui::SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* display_format) { return SliderIntN(label, v, 4, v_min, v_max, display_format); } bool ImGui::DragBehavior(const ImRect& frame_bb, ImGuiID id, float* v, float v_speed, float v_min, float v_max, int decimal_precision, float power) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); const ImGuiStyle& style = g.Style; // Draw frame const ImU32 frame_col = window->Color(g.ActiveId == id ? ImGuiCol_FrameBgActive : g.HoveredId == id ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg); RenderFrame(frame_bb.Min, frame_bb.Max, frame_col, true, style.FrameRounding); bool value_changed = false; // Process clicking on the drag if (g.ActiveId == id) { if (g.IO.MouseDown[0]) { if (g.ActiveIdIsJustActivated) { // Lock current value on click g.DragCurrentValue = *v; g.DragLastMouseDelta = ImVec2(0.f, 0.f); } const ImVec2 mouse_drag_delta = ImGui::GetMouseDragDelta(0, 1.0f); if (fabsf(mouse_drag_delta.x - g.DragLastMouseDelta.x) > 0.0f) { float speed = v_speed; if (speed == 0.0f && (v_max - v_min) != 0.0f && (v_max - v_min) < FLT_MAX) speed = (v_max - v_min) * g.DragSpeedDefaultRatio; if (g.IO.KeyShift && g.DragSpeedScaleFast >= 0.0f) speed = speed * g.DragSpeedScaleFast; if (g.IO.KeyAlt && g.DragSpeedScaleSlow >= 0.0f) speed = speed * g.DragSpeedScaleSlow; float v_cur = g.DragCurrentValue; float delta = (mouse_drag_delta.x - g.DragLastMouseDelta.x) * speed; if (fabsf(power - 1.0f) > 0.001f) { // Logarithmic curve on both side of 0.0 float v0_abs = v_cur >= 0.0f ? v_cur : -v_cur; float v0_sign = v_cur >= 0.0f ? 1.0f : -1.0f; float v1 = powf(v0_abs, 1.0f / power) + (delta * v0_sign); float v1_abs = v1 >= 0.0f ? v1 : -v1; float v1_sign = v1 >= 0.0f ? 1.0f : -1.0f; // Crossed sign line v_cur = powf(v1_abs, power) * v0_sign * v1_sign; // Reapply sign } else { v_cur += delta; } g.DragLastMouseDelta.x = mouse_drag_delta.x; // Clamp if (v_min < v_max) v_cur = ImClamp(v_cur, v_min, v_max); g.DragCurrentValue = v_cur; // Round to user desired precision, then apply v_cur = RoundScalar(v_cur, decimal_precision); if (*v != v_cur) { *v = v_cur; value_changed = true; } } } else { SetActiveID(0); } } return value_changed; } bool ImGui::DragFloat(const char* label, float* v, float v_speed, float v_min, float v_max, const char* display_format, float power) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const ImGuiID id = window->GetID(label); const float w = CalcItemWidth(); const ImVec2 label_size = CalcTextSize(label, NULL, true); const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(w, label_size.y) + style.FramePadding*2.0f); const ImRect inner_bb(frame_bb.Min + style.FramePadding, frame_bb.Max - style.FramePadding); const ImRect total_bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0.0f)); // NB- we don't call ItemSize() yet because we may turn into a text edit box below if (!ItemAdd(total_bb, &id)) { ItemSize(total_bb, style.FramePadding.y); return false; } const bool hovered = IsHovered(frame_bb, id); if (hovered) SetHoveredID(id); if (!display_format) display_format = "%.3f"; int decimal_precision = ParseFormatPrecision(display_format, 3); // Tabbing or CTRL-clicking on Drag turns it into an input box bool start_text_input = false; const bool tab_focus_requested = FocusableItemRegister(window, g.ActiveId == id); if (tab_focus_requested || (hovered && (g.IO.MouseClicked[0] | g.IO.MouseDoubleClicked[0]))) { SetActiveID(id, window); FocusWindow(window); if (tab_focus_requested || g.IO.KeyCtrl || g.IO.MouseDoubleClicked[0]) { start_text_input = true; g.ScalarAsInputTextId = 0; } } if (start_text_input || (g.ActiveId == id && g.ScalarAsInputTextId == id)) return InputScalarAsWidgetReplacement(frame_bb, label, ImGuiDataType_Float, v, id, decimal_precision); // Actual drag behavior ItemSize(total_bb, style.FramePadding.y); const bool value_changed = DragBehavior(frame_bb, id, v, v_speed, v_min, v_max, decimal_precision, power); // Display value using user-provided display format so user can add prefix/suffix/decorations to the value. char value_buf[64]; const char* value_buf_end = value_buf + ImFormatString(value_buf, IM_ARRAYSIZE(value_buf), display_format, *v); RenderTextClipped(frame_bb.Min, frame_bb.Max, value_buf, value_buf_end, NULL, ImGuiAlign_Center|ImGuiAlign_VCenter); if (label_size.x > 0.0f) RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, inner_bb.Min.y), label); return value_changed; } bool ImGui::DragFloatN(const char* label, float* v, int components, float v_speed, float v_min, float v_max, const char* display_format, float power) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; bool value_changed = false; ImGui::BeginGroup(); ImGui::PushID(label); PushMultiItemsWidths(components); for (int i = 0; i < components; i++) { ImGui::PushID(i); value_changed |= ImGui::DragFloat("##v", &v[i], v_speed, v_min, v_max, display_format, power); ImGui::SameLine(0, g.Style.ItemInnerSpacing.x); ImGui::PopID(); ImGui::PopItemWidth(); } ImGui::PopID(); ImGui::TextUnformatted(label, FindTextDisplayEnd(label)); ImGui::EndGroup(); return value_changed; } bool ImGui::DragFloat2(const char* label, float v[2], float v_speed, float v_min, float v_max, const char* display_format, float power) { return DragFloatN(label, v, 2, v_speed, v_min, v_max, display_format, power); } bool ImGui::DragFloat3(const char* label, float v[3], float v_speed, float v_min, float v_max, const char* display_format, float power) { return DragFloatN(label, v, 3, v_speed, v_min, v_max, display_format, power); } bool ImGui::DragFloat4(const char* label, float v[4], float v_speed, float v_min, float v_max, const char* display_format, float power) { return DragFloatN(label, v, 4, v_speed, v_min, v_max, display_format, power); } bool ImGui::DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed, float v_min, float v_max, const char* display_format, const char* display_format_max, float power) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; ImGui::PushID(label); ImGui::BeginGroup(); PushMultiItemsWidths(2); bool value_changed = ImGui::DragFloat("##min", v_current_min, v_speed, (v_min >= v_max) ? -FLT_MAX : v_min, (v_min >= v_max) ? *v_current_max : ImMin(v_max, *v_current_max), display_format, power); ImGui::PopItemWidth(); ImGui::SameLine(0, g.Style.ItemInnerSpacing.x); value_changed |= ImGui::DragFloat("##max", v_current_max, v_speed, (v_min >= v_max) ? *v_current_min : ImMax(v_min, *v_current_min), (v_min >= v_max) ? FLT_MAX : v_max, display_format_max ? display_format_max : display_format, power); ImGui::PopItemWidth(); ImGui::SameLine(0, g.Style.ItemInnerSpacing.x); ImGui::TextUnformatted(label, FindTextDisplayEnd(label)); ImGui::EndGroup(); ImGui::PopID(); return value_changed; } // NB: v_speed is float to allow adjusting the drag speed with more precision bool ImGui::DragInt(const char* label, int* v, float v_speed, int v_min, int v_max, const char* display_format) { if (!display_format) display_format = "%.0f"; float v_f = (float)*v; bool value_changed = ImGui::DragFloat(label, &v_f, v_speed, (float)v_min, (float)v_max, display_format); *v = (int)v_f; return value_changed; } bool ImGui::DragIntN(const char* label, int* v, int components, float v_speed, int v_min, int v_max, const char* display_format) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; bool value_changed = false; ImGui::BeginGroup(); ImGui::PushID(label); PushMultiItemsWidths(components); for (int i = 0; i < components; i++) { ImGui::PushID(i); value_changed |= ImGui::DragInt("##v", &v[i], v_speed, v_min, v_max, display_format); ImGui::SameLine(0, g.Style.ItemInnerSpacing.x); ImGui::PopID(); ImGui::PopItemWidth(); } ImGui::PopID(); ImGui::TextUnformatted(label, FindTextDisplayEnd(label)); ImGui::EndGroup(); return value_changed; } bool ImGui::DragInt2(const char* label, int v[2], float v_speed, int v_min, int v_max, const char* display_format) { return DragIntN(label, v, 2, v_speed, v_min, v_max, display_format); } bool ImGui::DragInt3(const char* label, int v[3], float v_speed, int v_min, int v_max, const char* display_format) { return DragIntN(label, v, 3, v_speed, v_min, v_max, display_format); } bool ImGui::DragInt4(const char* label, int v[4], float v_speed, int v_min, int v_max, const char* display_format) { return DragIntN(label, v, 4, v_speed, v_min, v_max, display_format); } bool ImGui::DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed, int v_min, int v_max, const char* display_format, const char* display_format_max) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; ImGui::PushID(label); ImGui::BeginGroup(); PushMultiItemsWidths(2); bool value_changed = ImGui::DragInt("##min", v_current_min, v_speed, (v_min >= v_max) ? IM_INT_MIN : v_min, (v_min >= v_max) ? *v_current_max : ImMin(v_max, *v_current_max), display_format); ImGui::PopItemWidth(); ImGui::SameLine(0, g.Style.ItemInnerSpacing.x); value_changed |= ImGui::DragInt("##max", v_current_max, v_speed, (v_min >= v_max) ? *v_current_min : ImMax(v_min, *v_current_min), (v_min >= v_max) ? IM_INT_MAX : v_max, display_format_max ? display_format_max : display_format); ImGui::PopItemWidth(); ImGui::SameLine(0, g.Style.ItemInnerSpacing.x); ImGui::TextUnformatted(label, FindTextDisplayEnd(label)); ImGui::EndGroup(); ImGui::PopID(); return value_changed; } void ImGui::PlotEx(ImGuiPlotType plot_type, const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const ImVec2 label_size = ImGui::CalcTextSize(label, NULL, true); if (graph_size.x == 0.0f) graph_size.x = CalcItemWidth() + (style.FramePadding.x * 2); if (graph_size.y == 0.0f) graph_size.y = label_size.y + (style.FramePadding.y * 2); const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(graph_size.x, graph_size.y)); const ImRect inner_bb(frame_bb.Min + style.FramePadding, frame_bb.Max - style.FramePadding); const ImRect total_bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0)); ItemSize(total_bb, style.FramePadding.y); if (!ItemAdd(total_bb, NULL)) return; // Determine scale from values if not specified if (scale_min == FLT_MAX || scale_max == FLT_MAX) { float v_min = FLT_MAX; float v_max = -FLT_MAX; for (int i = 0; i < values_count; i++) { const float v = values_getter(data, i); v_min = ImMin(v_min, v); v_max = ImMax(v_max, v); } if (scale_min == FLT_MAX) scale_min = v_min; if (scale_max == FLT_MAX) scale_max = v_max; } RenderFrame(frame_bb.Min, frame_bb.Max, window->Color(ImGuiCol_FrameBg), true, style.FrameRounding); int res_w = ImMin((int)graph_size.x, values_count) + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); int item_count = values_count + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); // Tooltip on hover int v_hovered = -1; if (IsHovered(inner_bb, 0)) { const float t = ImClamp((g.IO.MousePos.x - inner_bb.Min.x) / (inner_bb.Max.x - inner_bb.Min.x), 0.0f, 0.9999f); const int v_idx = (int)(t * item_count); IM_ASSERT(v_idx >= 0 && v_idx < values_count); const float v0 = values_getter(data, (v_idx + values_offset) % values_count); const float v1 = values_getter(data, (v_idx + 1 + values_offset) % values_count); if (plot_type == ImGuiPlotType_Lines) ImGui::SetTooltip("%d: %8.4g\n%d: %8.4g", v_idx, v0, v_idx+1, v1); else if (plot_type == ImGuiPlotType_Histogram) ImGui::SetTooltip("%d: %8.4g", v_idx, v0); v_hovered = v_idx; } const float t_step = 1.0f / (float)res_w; float v0 = values_getter(data, (0 + values_offset) % values_count); float t0 = 0.0f; ImVec2 tp0 = ImVec2( t0, 1.0f - ImSaturate((v0 - scale_min) / (scale_max - scale_min)) ); // Point in the normalized space of our target rectangle const ImU32 col_base = window->Color((plot_type == ImGuiPlotType_Lines) ? ImGuiCol_PlotLines : ImGuiCol_PlotHistogram); const ImU32 col_hovered = window->Color((plot_type == ImGuiPlotType_Lines) ? ImGuiCol_PlotLinesHovered : ImGuiCol_PlotHistogramHovered); for (int n = 0; n < res_w; n++) { const float t1 = t0 + t_step; const int v1_idx = (int)(t0 * item_count + 0.5f); IM_ASSERT(v1_idx >= 0 && v1_idx < values_count); const float v1 = values_getter(data, (v1_idx + values_offset + 1) % values_count); const ImVec2 tp1 = ImVec2( t1, 1.0f - ImSaturate((v1 - scale_min) / (scale_max - scale_min)) ); // NB: Draw calls are merged together by the DrawList system. Still, we should render our batch are lower level to save a bit of CPU. ImVec2 pos0 = ImLerp(inner_bb.Min, inner_bb.Max, tp0); ImVec2 pos1 = ImLerp(inner_bb.Min, inner_bb.Max, (plot_type == ImGuiPlotType_Lines) ? tp1 : ImVec2(tp1.x, 1.0f)); if (plot_type == ImGuiPlotType_Lines) { window->DrawList->AddLine(pos0, pos1, v_hovered == v1_idx ? col_hovered : col_base); } else if (plot_type == ImGuiPlotType_Histogram) { if (pos1.x >= pos0.x + 2.0f) pos1.x -= 1.0f; window->DrawList->AddRectFilled(pos0, pos1, v_hovered == v1_idx ? col_hovered : col_base); } t0 = t1; tp0 = tp1; } // Text overlay if (overlay_text) RenderTextClipped(ImVec2(frame_bb.Min.x, frame_bb.Min.y + style.FramePadding.y), frame_bb.Max, overlay_text, NULL, NULL, ImGuiAlign_Center); RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, inner_bb.Min.y), label); } struct ImGuiPlotArrayGetterData { const float* Values; int Stride; ImGuiPlotArrayGetterData(const float* values, int stride) { Values = values; Stride = stride; } }; static float Plot_ArrayGetter(void* data, int idx) { ImGuiPlotArrayGetterData* plot_data = (ImGuiPlotArrayGetterData*)data; const float v = *(float*)(void*)((unsigned char*)plot_data->Values + (size_t)idx * plot_data->Stride); return v; } void ImGui::PlotLines(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, int stride) { ImGuiPlotArrayGetterData data(values, stride); PlotEx(ImGuiPlotType_Lines, label, &Plot_ArrayGetter, (void*)&data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); } void ImGui::PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size) { PlotEx(ImGuiPlotType_Lines, label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); } void ImGui::PlotHistogram(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, int stride) { ImGuiPlotArrayGetterData data(values, stride); PlotEx(ImGuiPlotType_Histogram, label, &Plot_ArrayGetter, (void*)&data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); } void ImGui::PlotHistogram(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size) { PlotEx(ImGuiPlotType_Histogram, label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); } bool ImGui::Checkbox(const char* label, bool* v) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const ImGuiID id = window->GetID(label); const ImVec2 label_size = CalcTextSize(label, NULL, true); const ImRect check_bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(label_size.y + style.FramePadding.y*2, label_size.y + style.FramePadding.y*2)); ItemSize(check_bb, style.FramePadding.y); ImRect total_bb = check_bb; if (label_size.x > 0) SameLine(0, style.ItemInnerSpacing.x); const ImRect text_bb(window->DC.CursorPos + ImVec2(0,style.FramePadding.y), window->DC.CursorPos + ImVec2(0,style.FramePadding.y) + label_size); if (label_size.x > 0) { ItemSize(ImVec2(text_bb.GetWidth(), check_bb.GetHeight()), style.FramePadding.y); total_bb = ImRect(ImMin(check_bb.Min, text_bb.Min), ImMax(check_bb.Max, text_bb.Max)); } if (!ItemAdd(total_bb, &id)) return false; bool hovered, held; bool pressed = ButtonBehavior(total_bb, id, &hovered, &held, true); if (pressed) *v = !(*v); RenderFrame(check_bb.Min, check_bb.Max, window->Color((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg), true, style.FrameRounding); if (*v) { const float check_sz = ImMin(check_bb.GetWidth(), check_bb.GetHeight()); const float pad = ImMax(1.0f, (float)(int)(check_sz / 6.0f)); window->DrawList->AddRectFilled(check_bb.Min+ImVec2(pad,pad), check_bb.Max-ImVec2(pad,pad), window->Color(ImGuiCol_CheckMark), style.FrameRounding); } if (g.LogEnabled) LogRenderedText(text_bb.GetTL(), *v ? "[x]" : "[ ]"); RenderText(text_bb.GetTL(), label); return pressed; } bool ImGui::CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value) { bool v = (*flags & flags_value) ? true : false; bool pressed = ImGui::Checkbox(label, &v); if (v) *flags |= flags_value; else *flags &= ~flags_value; return pressed; } bool ImGui::RadioButton(const char* label, bool active) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const ImGuiID id = window->GetID(label); const ImVec2 label_size = CalcTextSize(label, NULL, true); const ImRect check_bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(label_size.y + style.FramePadding.y*2-1, label_size.y + style.FramePadding.y*2-1)); ItemSize(check_bb, style.FramePadding.y); ImRect total_bb = check_bb; if (label_size.x > 0) SameLine(0, style.ItemInnerSpacing.x); const ImRect text_bb(window->DC.CursorPos + ImVec2(0, style.FramePadding.y), window->DC.CursorPos + ImVec2(0, style.FramePadding.y) + label_size); if (label_size.x > 0) { ItemSize(ImVec2(text_bb.GetWidth(), check_bb.GetHeight()), style.FramePadding.y); total_bb.Add(text_bb); } if (!ItemAdd(total_bb, &id)) return false; ImVec2 center = check_bb.GetCenter(); center.x = (float)(int)center.x + 0.5f; center.y = (float)(int)center.y + 0.5f; const float radius = check_bb.GetHeight() * 0.5f; bool hovered, held; bool pressed = ButtonBehavior(total_bb, id, &hovered, &held, true); window->DrawList->AddCircleFilled(center, radius, window->Color((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg), 16); if (active) { const float check_sz = ImMin(check_bb.GetWidth(), check_bb.GetHeight()); const float pad = ImMax(1.0f, (float)(int)(check_sz / 6.0f)); window->DrawList->AddCircleFilled(center, radius-pad, window->Color(ImGuiCol_CheckMark), 16); } if (window->Flags & ImGuiWindowFlags_ShowBorders) { window->DrawList->AddCircle(center+ImVec2(1,1), radius, window->Color(ImGuiCol_BorderShadow), 16); window->DrawList->AddCircle(center, radius, window->Color(ImGuiCol_Border), 16); } if (g.LogEnabled) LogRenderedText(text_bb.GetTL(), active ? "(x)" : "( )"); RenderText(text_bb.GetTL(), label); return pressed; } bool ImGui::RadioButton(const char* label, int* v, int v_button) { const bool pressed = ImGui::RadioButton(label, *v == v_button); if (pressed) { *v = v_button; } return pressed; } static int InputTextCalcTextLenAndLineCount(const char* text_begin, const char** out_text_end) { int line_count = 0; const char* s = text_begin; while (char c = *s++) // We are only matching for \n so we can ignore UTF-8 decoding if (c == '\n') line_count++; s--; if (s[0] != '\n' && s[0] != '\r') line_count++; *out_text_end = s; return line_count; } static ImVec2 InputTextCalcTextSizeW(const ImWchar* text_begin, const ImWchar* text_end, const ImWchar** remaining, ImVec2* out_offset, bool stop_on_new_line) { ImFont* font = GImGui->Font; const float line_height = GImGui->FontSize; const float scale = line_height / font->FontSize; ImVec2 text_size = ImVec2(0,0); float line_width = 0.0f; const ImWchar* s = text_begin; while (s < text_end) { unsigned int c = (unsigned int)(*s++); if (c == '\n') { text_size.x = ImMax(text_size.x, line_width); text_size.y += line_height; line_width = 0.0f; if (stop_on_new_line) break; continue; } if (c == '\r') continue; const float char_width = font->GetCharAdvance((unsigned short)c) * scale; line_width += char_width; } if (text_size.x < line_width) text_size.x = line_width; if (out_offset) *out_offset = ImVec2(line_width, text_size.y + line_height); // offset allow for the possibility of sitting after a trailing \n if (line_width > 0 || text_size.y == 0.0f) // whereas size.y will ignore the trailing \n text_size.y += line_height; if (remaining) *remaining = s; return text_size; } // Wrapper for stb_textedit.h to edit text (our wrapper is for: statically sized buffer, single-line, wchar characters. InputText converts between UTF-8 and wchar) namespace ImGuiStb { static int STB_TEXTEDIT_STRINGLEN(const STB_TEXTEDIT_STRING* obj) { return obj->CurLenW; } static ImWchar STB_TEXTEDIT_GETCHAR(const STB_TEXTEDIT_STRING* obj, int idx) { return obj->Text[idx]; } static float STB_TEXTEDIT_GETWIDTH(STB_TEXTEDIT_STRING* obj, int line_start_idx, int char_idx) { ImWchar c = obj->Text[line_start_idx+char_idx]; if (c == '\n') return STB_TEXTEDIT_GETWIDTH_NEWLINE; return GImGui->Font->GetCharAdvance(c) * (GImGui->FontSize / GImGui->Font->FontSize); } static int STB_TEXTEDIT_KEYTOTEXT(int key) { return key >= 0x10000 ? 0 : key; } static ImWchar STB_TEXTEDIT_NEWLINE = '\n'; static void STB_TEXTEDIT_LAYOUTROW(StbTexteditRow* r, STB_TEXTEDIT_STRING* obj, int line_start_idx) { const ImWchar* text = obj->Text.Data; const ImWchar* text_remaining = NULL; const ImVec2 size = InputTextCalcTextSizeW(text + line_start_idx, text + obj->CurLenW, &text_remaining, NULL, true); r->x0 = 0.0f; r->x1 = size.x; r->baseline_y_delta = size.y; r->ymin = 0.0f; r->ymax = size.y; r->num_chars = (int)(text_remaining - (text + line_start_idx)); } static bool is_separator(unsigned int c) { return c==',' || c==';' || c=='(' || c==')' || c=='{' || c=='}' || c=='[' || c==']' || c=='|'; } #define STB_TEXTEDIT_IS_SPACE(CH) ( ImCharIsSpace((unsigned int)CH) || is_separator((unsigned int)CH) ) static void STB_TEXTEDIT_DELETECHARS(STB_TEXTEDIT_STRING* obj, int pos, int n) { ImWchar* dst = obj->Text.Data + pos; // We maintain our buffer length in both UTF-8 and wchar formats obj->CurLenA -= ImTextCountUtf8BytesFromStr(dst, dst + n); obj->CurLenW -= n; // Offset remaining text const ImWchar* src = obj->Text.Data + pos + n; while (ImWchar c = *src++) *dst++ = c; *dst = '\0'; } static bool STB_TEXTEDIT_INSERTCHARS(STB_TEXTEDIT_STRING* obj, int pos, const ImWchar* new_text, int new_text_len) { const int text_len = obj->CurLenW; if (new_text_len + text_len + 1 > obj->Text.Size) return false; const int new_text_len_utf8 = ImTextCountUtf8BytesFromStr(new_text, new_text + new_text_len); if (new_text_len_utf8 + obj->CurLenA + 1 > obj->BufSizeA) return false; ImWchar* text = obj->Text.Data; if (pos != text_len) memmove(text + pos + new_text_len, text + pos, (size_t)(text_len - pos) * sizeof(ImWchar)); memcpy(text + pos, new_text, (size_t)new_text_len * sizeof(ImWchar)); obj->CurLenW += new_text_len; obj->CurLenA += new_text_len_utf8; obj->Text[obj->CurLenW] = '\0'; return true; } // We don't use an enum so we can build even with conflicting symbols (if another user of stb_textedit.h leak their STB_TEXTEDIT_K_* symbols) #define STB_TEXTEDIT_K_LEFT 0x10000 // keyboard input to move cursor left #define STB_TEXTEDIT_K_RIGHT 0x10001 // keyboard input to move cursor right #define STB_TEXTEDIT_K_UP 0x10002 // keyboard input to move cursor up #define STB_TEXTEDIT_K_DOWN 0x10003 // keyboard input to move cursor down #define STB_TEXTEDIT_K_LINESTART 0x10004 // keyboard input to move cursor to start of line #define STB_TEXTEDIT_K_LINEEND 0x10005 // keyboard input to move cursor to end of line #define STB_TEXTEDIT_K_TEXTSTART 0x10006 // keyboard input to move cursor to start of text #define STB_TEXTEDIT_K_TEXTEND 0x10007 // keyboard input to move cursor to end of text #define STB_TEXTEDIT_K_DELETE 0x10008 // keyboard input to delete selection or character under cursor #define STB_TEXTEDIT_K_BACKSPACE 0x10009 // keyboard input to delete selection or character left of cursor #define STB_TEXTEDIT_K_UNDO 0x1000A // keyboard input to perform undo #define STB_TEXTEDIT_K_REDO 0x1000B // keyboard input to perform redo #define STB_TEXTEDIT_K_WORDLEFT 0x1000C // keyboard input to move cursor left one word #define STB_TEXTEDIT_K_WORDRIGHT 0x1000D // keyboard input to move cursor right one word #define STB_TEXTEDIT_K_SHIFT 0x20000 #define STB_TEXTEDIT_IMPLEMENTATION #include "stb_textedit.h" } void ImGuiTextEditState::OnKeyPressed(int key) { stb_textedit_key(this, &StbState, key); CursorFollow = true; CursorAnimReset(); } // Public API to manipulate UTF-8 text // We expose UTF-8 to the user (unlike the STB_TEXTEDIT_* functions which are manipulating wchar) void ImGuiTextEditCallbackData::DeleteChars(int pos, int bytes_count) { char* dst = Buf + pos; const char* src = Buf + pos + bytes_count; while (char c = *src++) *dst++ = c; *dst = '\0'; BufDirty = true; if (CursorPos + bytes_count >= pos) CursorPos -= bytes_count; else if (CursorPos >= pos) CursorPos = pos; SelectionStart = SelectionEnd = CursorPos; } void ImGuiTextEditCallbackData::InsertChars(int pos, const char* new_text, const char* new_text_end) { const int text_len = (int)strlen(Buf); if (!new_text_end) new_text_end = new_text + strlen(new_text); const int new_text_len = (int)(new_text_end - new_text); if (new_text_len + text_len + 1 >= BufSize) return; if (text_len != pos) memmove(Buf + pos + new_text_len, Buf + pos, (size_t)(text_len - pos)); memcpy(Buf + pos, new_text, (size_t)new_text_len * sizeof(char)); Buf[text_len + new_text_len] = '\0'; BufDirty = true; if (CursorPos >= pos) CursorPos += new_text_len; SelectionStart = SelectionEnd = CursorPos; } // Return false to discard a character. static bool InputTextFilterCharacter(unsigned int* p_char, ImGuiInputTextFlags flags, ImGuiTextEditCallback callback, void* user_data) { unsigned int c = *p_char; if (c < 128 && c != ' ' && !isprint((int)(c & 0xFF))) { bool pass = false; pass |= (c == '\n' && (flags & ImGuiInputTextFlags_Multiline)); pass |= (c == '\t' && (flags & ImGuiInputTextFlags_AllowTabInput)); if (!pass) return false; } if (c >= 0xE000 && c <= 0xF8FF) // Filter private Unicode range. I don't imagine anybody would want to input them. GLFW on OSX seems to send private characters for special keys like arrow keys. return false; if (flags & (ImGuiInputTextFlags_CharsDecimal | ImGuiInputTextFlags_CharsHexadecimal | ImGuiInputTextFlags_CharsUppercase | ImGuiInputTextFlags_CharsNoBlank)) { if (flags & ImGuiInputTextFlags_CharsDecimal) if (!(c >= '0' && c <= '9') && (c != '.') && (c != '-') && (c != '+') && (c != '*') && (c != '/')) return false; if (flags & ImGuiInputTextFlags_CharsHexadecimal) if (!(c >= '0' && c <= '9') && !(c >= 'a' && c <= 'f') && !(c >= 'A' && c <= 'F')) return false; if (flags & ImGuiInputTextFlags_CharsUppercase) if (c >= 'a' && c <= 'z') *p_char = (c += (unsigned int)('A'-'a')); if (flags & ImGuiInputTextFlags_CharsNoBlank) if (ImCharIsSpace(c)) return false; } if (flags & ImGuiInputTextFlags_CallbackCharFilter) { ImGuiTextEditCallbackData callback_data; memset(&callback_data, 0, sizeof(ImGuiTextEditCallbackData)); callback_data.EventFlag = ImGuiInputTextFlags_CallbackCharFilter; callback_data.EventChar = (ImWchar)c; callback_data.Flags = flags; callback_data.UserData = user_data; if (callback(&callback_data) != 0) return false; *p_char = callback_data.EventChar; if (!callback_data.EventChar) return false; } return true; } // Edit a string of text // FIXME: This is rather complex partly because we are doing UTF8 > u16 > UTF8 conversions on the go to more easily handle stb_textedit calls. Ideally we should stay in UTF-8 all the time. bool ImGui::InputTextEx(const char* label, char* buf, int buf_size, const ImVec2& size_arg, ImGuiInputTextFlags flags, ImGuiTextEditCallback callback, void* user_data) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; IM_ASSERT(!((flags & ImGuiInputTextFlags_CallbackHistory) && (flags & ImGuiInputTextFlags_Multiline))); // Can't use both together (they both use up/down keys) IM_ASSERT(!((flags & ImGuiInputTextFlags_CallbackCompletion) && (flags & ImGuiInputTextFlags_AllowTabInput))); // Can't use both together (they both use tab key) ImGuiState& g = *GImGui; const ImGuiIO& io = g.IO; const ImGuiStyle& style = g.Style; const ImGuiID id = window->GetID(label); const bool is_multiline = (flags & ImGuiInputTextFlags_Multiline) != 0; const bool is_editable = (flags & ImGuiInputTextFlags_ReadOnly) == 0; ImVec2 label_size = ImGui::CalcTextSize(label, NULL, true); ImVec2 size = CalcItemSize(size_arg, CalcItemWidth(), is_multiline ? ImGui::GetTextLineHeight() * 8.0f : label_size.y); // Arbitrary default of 8 lines high for multi-line const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + size + style.FramePadding*2.0f); const ImRect total_bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? (style.ItemInnerSpacing.x + label_size.x) : 0.0f, 0.0f)); ImGuiWindow* draw_window = window; if (is_multiline) { ImGui::BeginGroup(); if (!ImGui::BeginChildFrame(id, frame_bb.GetSize())) { ImGui::EndChildFrame(); ImGui::EndGroup(); return false; } draw_window = GetCurrentWindow(); draw_window->DC.CursorPos += style.FramePadding; size.x -= draw_window->ScrollbarSizes.x; } else { ItemSize(total_bb, style.FramePadding.y); if (!ItemAdd(total_bb, &id)) return false; } // NB: we are only allowed to access 'edit_state' if we are the active widget. ImGuiTextEditState& edit_state = g.InputTextState; const bool is_ctrl_down = io.KeyCtrl; const bool is_shift_down = io.KeyShift; const bool is_alt_down = io.KeyAlt; const bool focus_requested = FocusableItemRegister(window, g.ActiveId == id, (flags & (ImGuiInputTextFlags_CallbackCompletion|ImGuiInputTextFlags_AllowTabInput)) == 0); // Using completion callback disable keyboard tabbing const bool focus_requested_by_code = focus_requested && (window->FocusIdxAllCounter == window->FocusIdxAllRequestCurrent); const bool focus_requested_by_tab = focus_requested && !focus_requested_by_code; const bool hovered = IsHovered(frame_bb, id); if (hovered) { SetHoveredID(id); g.MouseCursor = ImGuiMouseCursor_TextInput; } const bool user_clicked = hovered && io.MouseClicked[0]; const bool user_scrolled = is_multiline && g.ActiveId == 0 && edit_state.Id == id && g.ActiveIdPreviousFrame == draw_window->GetID("#SCROLLY"); bool select_all = (g.ActiveId != id) && (flags & ImGuiInputTextFlags_AutoSelectAll) != 0; if (focus_requested || user_clicked || user_scrolled) { if (g.ActiveId != id) { // Start edition // Take a copy of the initial buffer value (both in original UTF-8 format and converted to wchar) // From the moment we focused we are ignoring the content of 'buf' const int prev_len_w = edit_state.CurLenW; edit_state.Text.resize(buf_size+1); // wchar count <= utf-8 count. we use +1 to make sure that .Data isn't NULL so it doesn't crash. edit_state.InitialText.resize(buf_size+1); // utf-8. we use +1 to make sure that .Data isn't NULL so it doesn't crash. ImFormatString(edit_state.InitialText.Data, edit_state.InitialText.Size, "%s", buf); const char* buf_end = NULL; edit_state.CurLenW = ImTextStrFromUtf8(edit_state.Text.Data, edit_state.Text.Size, buf, NULL, &buf_end); edit_state.CurLenA = (int)(buf_end - buf); // We can't get the result from ImFormatString() above because it is not UTF-8 aware. Here we'll cut off malformed UTF-8. edit_state.InputCursorScreenPos = ImVec2(-1.f, -1.f); edit_state.CursorAnimReset(); // Preserve cursor position and undo/redo stack if we come back to same widget // FIXME: We should probably compare the whole buffer to be on the safety side. Comparing buf (utf8) and edit_state.Text (wchar). const bool recycle_state = (edit_state.Id == id) && (prev_len_w == edit_state.CurLenW); if (recycle_state) { // Recycle existing cursor/selection/undo stack but clamp position // Note a single mouse click will override the cursor/position immediately by calling stb_textedit_click handler. edit_state.CursorClamp(); } else { edit_state.Id = id; edit_state.ScrollX = 0.0f; stb_textedit_initialize_state(&edit_state.StbState, !is_multiline); if (!is_multiline && focus_requested_by_code) select_all = true; } if (flags & ImGuiInputTextFlags_AlwaysInsertMode) edit_state.StbState.insert_mode = true; if (!is_multiline && (focus_requested_by_tab || (user_clicked && is_ctrl_down))) select_all = true; } SetActiveID(id, window); FocusWindow(window); } else if (io.MouseClicked[0]) { // Release focus when we click outside if (g.ActiveId == id) SetActiveID(0); } bool value_changed = false; bool cancel_edit = false; bool enter_pressed = false; if (g.ActiveId == id) { if (!is_editable && !g.ActiveIdIsJustActivated) { // When read-only we always use the live data passed to the function edit_state.Text.resize(buf_size+1); const char* buf_end = NULL; edit_state.CurLenW = ImTextStrFromUtf8(edit_state.Text.Data, edit_state.Text.Size, buf, NULL, &buf_end); edit_state.CurLenA = (int)(buf_end - buf); edit_state.CursorClamp(); } edit_state.BufSizeA = buf_size; // Although we are active we don't prevent mouse from hovering other elements unless we are interacting right now with the widget. // Down the line we should have a cleaner concept of focused vs active in the library. g.ActiveIdAllowHoveringOthers = !io.MouseDown[0]; // Edit in progress const float mouse_x = (g.IO.MousePos.x - frame_bb.Min.x - style.FramePadding.x) + edit_state.ScrollX; const float mouse_y = (is_multiline ? (g.IO.MousePos.y - draw_window->DC.CursorPos.y - style.FramePadding.y) : (g.FontSize*0.5f)); if (select_all || (hovered && io.MouseDoubleClicked[0])) { edit_state.SelectAll(); edit_state.SelectedAllMouseLock = true; } else if (io.MouseClicked[0] && !edit_state.SelectedAllMouseLock) { stb_textedit_click(&edit_state, &edit_state.StbState, mouse_x, mouse_y); edit_state.CursorAnimReset(); } else if (io.MouseDown[0] && !edit_state.SelectedAllMouseLock) { stb_textedit_drag(&edit_state, &edit_state.StbState, mouse_x, mouse_y); edit_state.CursorAnimReset(); edit_state.CursorFollow = true; } if (edit_state.SelectedAllMouseLock && !io.MouseDown[0]) edit_state.SelectedAllMouseLock = false; if (g.IO.InputCharacters[0]) { // Process text input (before we check for Return because using some IME will effectively send a Return?) // We ignore CTRL inputs, but need to allow CTRL+ALT as some keyboards (e.g. German) use AltGR - which is Alt+Ctrl - to input certain characters. if (!(is_ctrl_down && !is_alt_down) && is_editable) { for (int n = 0; n < IM_ARRAYSIZE(g.IO.InputCharacters) && g.IO.InputCharacters[n]; n++) if (unsigned int c = (unsigned int)g.IO.InputCharacters[n]) { // Insert character if they pass filtering if (!InputTextFilterCharacter(&c, flags, callback, user_data)) continue; edit_state.OnKeyPressed((int)c); } } // Consume characters memset(g.IO.InputCharacters, 0, sizeof(g.IO.InputCharacters)); } // Handle various key-presses const int k_mask = (is_shift_down ? STB_TEXTEDIT_K_SHIFT : 0); const bool is_ctrl_only = is_ctrl_down && !is_alt_down && !is_shift_down; if (IsKeyPressedMap(ImGuiKey_LeftArrow)) { edit_state.OnKeyPressed(is_ctrl_down ? STB_TEXTEDIT_K_WORDLEFT | k_mask : STB_TEXTEDIT_K_LEFT | k_mask); } else if (IsKeyPressedMap(ImGuiKey_RightArrow)) { edit_state.OnKeyPressed(is_ctrl_down ? STB_TEXTEDIT_K_WORDRIGHT | k_mask : STB_TEXTEDIT_K_RIGHT | k_mask); } else if (is_multiline && IsKeyPressedMap(ImGuiKey_UpArrow)) { if (is_ctrl_down) SetWindowScrollY(draw_window, draw_window->Scroll.y - g.FontSize); else edit_state.OnKeyPressed(STB_TEXTEDIT_K_UP | k_mask); } else if (is_multiline && IsKeyPressedMap(ImGuiKey_DownArrow)) { if (is_ctrl_down) SetWindowScrollY(draw_window, draw_window->Scroll.y + g.FontSize); else edit_state.OnKeyPressed(STB_TEXTEDIT_K_DOWN| k_mask); } else if (IsKeyPressedMap(ImGuiKey_Home)) { edit_state.OnKeyPressed(is_ctrl_down ? STB_TEXTEDIT_K_TEXTSTART | k_mask : STB_TEXTEDIT_K_LINESTART | k_mask); } else if (IsKeyPressedMap(ImGuiKey_End)) { edit_state.OnKeyPressed(is_ctrl_down ? STB_TEXTEDIT_K_TEXTEND | k_mask : STB_TEXTEDIT_K_LINEEND | k_mask); } else if (IsKeyPressedMap(ImGuiKey_Delete) && is_editable) { edit_state.OnKeyPressed(STB_TEXTEDIT_K_DELETE | k_mask); } else if (IsKeyPressedMap(ImGuiKey_Backspace) && is_editable) { edit_state.OnKeyPressed(STB_TEXTEDIT_K_BACKSPACE | k_mask); } else if (IsKeyPressedMap(ImGuiKey_Enter)) { bool ctrl_enter_for_new_line = (flags & ImGuiInputTextFlags_CtrlEnterForNewLine) != 0; if (!is_multiline || (ctrl_enter_for_new_line && !is_ctrl_down) || (!ctrl_enter_for_new_line && is_ctrl_down)) { SetActiveID(0); enter_pressed = true; } else if (is_editable) { unsigned int c = '\n'; // Insert new line if (InputTextFilterCharacter(&c, flags, callback, user_data)) edit_state.OnKeyPressed((int)c); } } else if ((flags & ImGuiInputTextFlags_AllowTabInput) && IsKeyPressedMap(ImGuiKey_Tab) && !is_ctrl_down && !is_shift_down && !is_alt_down && is_editable) { unsigned int c = '\t'; // Insert TAB if (InputTextFilterCharacter(&c, flags, callback, user_data)) edit_state.OnKeyPressed((int)c); } else if (IsKeyPressedMap(ImGuiKey_Escape)) { SetActiveID(0); cancel_edit = true; } else if (is_ctrl_only && IsKeyPressedMap(ImGuiKey_Z) && is_editable) { edit_state.OnKeyPressed(STB_TEXTEDIT_K_UNDO); edit_state.ClearSelection(); } else if (is_ctrl_only && IsKeyPressedMap(ImGuiKey_Y) && is_editable) { edit_state.OnKeyPressed(STB_TEXTEDIT_K_REDO); edit_state.ClearSelection(); } else if (is_ctrl_only && IsKeyPressedMap(ImGuiKey_A)) { edit_state.SelectAll(); edit_state.CursorFollow = true; } else if (is_ctrl_only && ((IsKeyPressedMap(ImGuiKey_X) && is_editable) || IsKeyPressedMap(ImGuiKey_C)) && (!is_multiline || edit_state.HasSelection())) { // Cut, Copy const bool cut = IsKeyPressedMap(ImGuiKey_X); if (cut && !edit_state.HasSelection()) edit_state.SelectAll(); if (g.IO.SetClipboardTextFn) { const int ib = edit_state.HasSelection() ? ImMin(edit_state.StbState.select_start, edit_state.StbState.select_end) : 0; const int ie = edit_state.HasSelection() ? ImMax(edit_state.StbState.select_start, edit_state.StbState.select_end) : edit_state.CurLenW; edit_state.TempTextBuffer.resize((ie-ib) * 4 + 1); ImTextStrToUtf8(edit_state.TempTextBuffer.Data, edit_state.TempTextBuffer.Size, edit_state.Text.Data+ib, edit_state.Text.Data+ie); g.IO.SetClipboardTextFn(edit_state.TempTextBuffer.Data); } if (cut) { edit_state.CursorFollow = true; stb_textedit_cut(&edit_state, &edit_state.StbState); } } else if (is_ctrl_only && IsKeyPressedMap(ImGuiKey_V) && is_editable) { // Paste if (g.IO.GetClipboardTextFn) { if (const char* clipboard = g.IO.GetClipboardTextFn()) { // Remove new-line from pasted buffer const int clipboard_len = (int)strlen(clipboard); ImWchar* clipboard_filtered = (ImWchar*)ImGui::MemAlloc((clipboard_len+1) * sizeof(ImWchar)); int clipboard_filtered_len = 0; for (const char* s = clipboard; *s; ) { unsigned int c; s += ImTextCharFromUtf8(&c, s, NULL); if (c == 0) break; if (c >= 0x10000 || !InputTextFilterCharacter(&c, flags, callback, user_data)) continue; clipboard_filtered[clipboard_filtered_len++] = (ImWchar)c; } clipboard_filtered[clipboard_filtered_len] = 0; if (clipboard_filtered_len > 0) // If everything was filtered, ignore the pasting operation { stb_textedit_paste(&edit_state, &edit_state.StbState, clipboard_filtered, clipboard_filtered_len); edit_state.CursorFollow = true; } ImGui::MemFree(clipboard_filtered); } } } if (cancel_edit) { // Restore initial value if (is_editable) { ImFormatString(buf, buf_size, "%s", edit_state.InitialText.Data); value_changed = true; } } else { // Apply new value immediately - copy modified buffer back // Note that as soon as we can focus into the input box, the in-widget value gets priority over any underlying modification of the input buffer // FIXME: We actually always render 'buf' when calling DrawList->AddText // FIXME-OPT: CPU waste to do this every time the widget is active, should mark dirty state from the stb_textedit callbacks if (is_editable) { edit_state.TempTextBuffer.resize(edit_state.Text.Size * 4); ImTextStrToUtf8(edit_state.TempTextBuffer.Data, edit_state.TempTextBuffer.Size, edit_state.Text.Data, NULL); } // User callback if ((flags & (ImGuiInputTextFlags_CallbackCompletion | ImGuiInputTextFlags_CallbackHistory | ImGuiInputTextFlags_CallbackAlways)) != 0) { IM_ASSERT(callback != NULL); // The reason we specify the usage semantic (Completion/History) is that Completion needs to disable keyboard TABBING at the moment. ImGuiInputTextFlags event_flag = 0; ImGuiKey event_key = ImGuiKey_COUNT; if ((flags & ImGuiInputTextFlags_CallbackCompletion) != 0 && IsKeyPressedMap(ImGuiKey_Tab)) { event_flag = ImGuiInputTextFlags_CallbackCompletion; event_key = ImGuiKey_Tab; } else if ((flags & ImGuiInputTextFlags_CallbackHistory) != 0 && IsKeyPressedMap(ImGuiKey_UpArrow)) { event_flag = ImGuiInputTextFlags_CallbackHistory; event_key = ImGuiKey_UpArrow; } else if ((flags & ImGuiInputTextFlags_CallbackHistory) != 0 && IsKeyPressedMap(ImGuiKey_DownArrow)) { event_flag = ImGuiInputTextFlags_CallbackHistory; event_key = ImGuiKey_DownArrow; } if (event_key != ImGuiKey_COUNT || (flags & ImGuiInputTextFlags_CallbackAlways) != 0) { ImGuiTextEditCallbackData callback_data; callback_data.EventFlag = event_flag; callback_data.Flags = flags; callback_data.UserData = user_data; callback_data.ReadOnly = !is_editable; callback_data.EventKey = event_key; callback_data.Buf = edit_state.TempTextBuffer.Data; callback_data.BufSize = edit_state.BufSizeA; callback_data.BufDirty = false; // We have to convert from position from wchar to UTF-8 positions ImWchar* text = edit_state.Text.Data; const int utf8_cursor_pos = callback_data.CursorPos = ImTextCountUtf8BytesFromStr(text, text + edit_state.StbState.cursor); const int utf8_selection_start = callback_data.SelectionStart = ImTextCountUtf8BytesFromStr(text, text + edit_state.StbState.select_start); const int utf8_selection_end = callback_data.SelectionEnd = ImTextCountUtf8BytesFromStr(text, text + edit_state.StbState.select_end); // Call user code callback(&callback_data); // Read back what user may have modified IM_ASSERT(callback_data.Buf == edit_state.TempTextBuffer.Data); // Invalid to modify those fields IM_ASSERT(callback_data.BufSize == edit_state.BufSizeA); IM_ASSERT(callback_data.Flags == flags); if (callback_data.CursorPos != utf8_cursor_pos) edit_state.StbState.cursor = ImTextCountCharsFromUtf8(callback_data.Buf, callback_data.Buf + callback_data.CursorPos); if (callback_data.SelectionStart != utf8_selection_start) edit_state.StbState.select_start = ImTextCountCharsFromUtf8(callback_data.Buf, callback_data.Buf + callback_data.SelectionStart); if (callback_data.SelectionEnd != utf8_selection_end) edit_state.StbState.select_end = ImTextCountCharsFromUtf8(callback_data.Buf, callback_data.Buf + callback_data.SelectionEnd); if (callback_data.BufDirty) { edit_state.CurLenW = ImTextStrFromUtf8(text, edit_state.Text.Size, edit_state.TempTextBuffer.Data, NULL); edit_state.CurLenA = (int)strlen(edit_state.TempTextBuffer.Data); edit_state.CursorAnimReset(); } } } // Copy back to user buffer if (is_editable && strcmp(edit_state.TempTextBuffer.Data, buf) != 0) { ImFormatString(buf, buf_size, "%s", edit_state.TempTextBuffer.Data); value_changed = true; } } } if (!is_multiline) RenderFrame(frame_bb.Min, frame_bb.Max, window->Color(ImGuiCol_FrameBg), true, style.FrameRounding); // Render const ImVec4 clip_rect(frame_bb.Min.x, frame_bb.Min.y, frame_bb.Min.x + size.x + style.FramePadding.x*2.0f, frame_bb.Min.y + size.y + style.FramePadding.y*2.0f); ImVec2 render_pos = is_multiline ? draw_window->DC.CursorPos : frame_bb.Min + style.FramePadding; ImVec2 text_size(0.f, 0.f); if (g.ActiveId == id || (edit_state.Id == id && is_multiline && g.ActiveId == draw_window->GetID("#SCROLLY"))) { edit_state.CursorAnim += g.IO.DeltaTime; // We need to: // - Display the text (this can be more easily clipped) // - Handle scrolling, highlight selection, display cursor (those all requires some form of 1d->2d cursor position calculation) // - Measure text height (for scrollbar) // We are attempting to do most of that in **one main pass** to minimize the computation cost (non-negligible for large amount of text) + 2nd pass for selection rendering (we could merge them by an extra refactoring effort) const ImWchar* text_begin = edit_state.Text.Data; ImVec2 cursor_offset, select_start_offset; { // Count lines + find lines numbers straddling 'cursor' and 'select_start' position. const ImWchar* searches_input_ptr[2]; searches_input_ptr[0] = text_begin + edit_state.StbState.cursor; searches_input_ptr[1] = NULL; int searches_remaining = 1; int searches_result_line_number[2] = { -1, -999 }; if (edit_state.StbState.select_start != edit_state.StbState.select_end) { searches_input_ptr[1] = text_begin + ImMin(edit_state.StbState.select_start, edit_state.StbState.select_end); searches_result_line_number[1] = -1; searches_remaining++; } // Iterate all lines to find our line numbers // In multi-line mode, we never exit the loop until all lines are counted, so add one extra to the searches_remaining counter. searches_remaining += is_multiline ? 1 : 0; int line_count = 0; for (const ImWchar* s = text_begin; *s != 0; s++) if (*s == '\n') { line_count++; if (searches_result_line_number[0] == -1 && s >= searches_input_ptr[0]) { searches_result_line_number[0] = line_count; if (--searches_remaining <= 0) break; } if (searches_result_line_number[1] == -1 && s >= searches_input_ptr[1]) { searches_result_line_number[1] = line_count; if (--searches_remaining <= 0) break; } } line_count++; if (searches_result_line_number[0] == -1) searches_result_line_number[0] = line_count; if (searches_result_line_number[1] == -1) searches_result_line_number[1] = line_count; // Calculate 2d position by finding the beginning of the line and measuring distance cursor_offset.x = InputTextCalcTextSizeW(ImStrbolW(searches_input_ptr[0], text_begin), searches_input_ptr[0]).x; cursor_offset.y = searches_result_line_number[0] * g.FontSize; if (searches_result_line_number[1] >= 0) { select_start_offset.x = InputTextCalcTextSizeW(ImStrbolW(searches_input_ptr[1], text_begin), searches_input_ptr[1]).x; select_start_offset.y = searches_result_line_number[1] * g.FontSize; } // Calculate text height if (is_multiline) text_size = ImVec2(size.x, line_count * g.FontSize); } // Scroll if (edit_state.CursorFollow) { // Horizontal scroll in chunks of quarter width if (!(flags & ImGuiInputTextFlags_NoHorizontalScroll)) { const float scroll_increment_x = size.x * 0.25f; if (cursor_offset.x < edit_state.ScrollX) edit_state.ScrollX = (float)(int)ImMax(0.0f, cursor_offset.x - scroll_increment_x); else if (cursor_offset.x - size.x >= edit_state.ScrollX) edit_state.ScrollX = (float)(int)(cursor_offset.x - size.x + scroll_increment_x); } else { edit_state.ScrollX = 0.0f; } // Vertical scroll if (is_multiline) { float scroll_y = draw_window->Scroll.y; if (cursor_offset.y - g.FontSize < scroll_y) scroll_y = ImMax(0.0f, cursor_offset.y - g.FontSize); else if (cursor_offset.y - size.y >= scroll_y) scroll_y = cursor_offset.y - size.y; draw_window->DC.CursorPos.y += (draw_window->Scroll.y - scroll_y); // To avoid a frame of lag draw_window->Scroll.y = scroll_y; render_pos.y = draw_window->DC.CursorPos.y; } } edit_state.CursorFollow = false; const ImVec2 render_scroll = ImVec2(edit_state.ScrollX, 0.0f); // Draw selection if (edit_state.StbState.select_start != edit_state.StbState.select_end) { const ImWchar* text_selected_begin = text_begin + ImMin(edit_state.StbState.select_start, edit_state.StbState.select_end); const ImWchar* text_selected_end = text_begin + ImMax(edit_state.StbState.select_start, edit_state.StbState.select_end); float bg_offy_up = is_multiline ? 0.0f : -1.0f; // FIXME: those offsets should be part of the style? they don't play so well with multi-line selection. float bg_offy_dn = is_multiline ? 0.0f : 2.0f; ImU32 bg_color = draw_window->Color(ImGuiCol_TextSelectedBg); ImVec2 rect_pos = render_pos + select_start_offset - render_scroll; for (const ImWchar* p = text_selected_begin; p < text_selected_end; ) { if (rect_pos.y > clip_rect.w + g.FontSize) break; if (rect_pos.y < clip_rect.y) { while (p < text_selected_end) if (*p++ == '\n') break; } else { ImVec2 rect_size = InputTextCalcTextSizeW(p, text_selected_end, &p, NULL, true); if (rect_size.x <= 0.0f) rect_size.x = (float)(int)(g.Font->GetCharAdvance((unsigned short)' ') * 0.50f); // So we can see selected empty lines ImRect rect(rect_pos + ImVec2(0.0f, bg_offy_up - g.FontSize), rect_pos +ImVec2(rect_size.x, bg_offy_dn)); rect.Clip(clip_rect); if (rect.Overlaps(clip_rect)) draw_window->DrawList->AddRectFilled(rect.Min, rect.Max, bg_color); } rect_pos.x = render_pos.x - render_scroll.x; rect_pos.y += g.FontSize; } } draw_window->DrawList->AddText(g.Font, g.FontSize, render_pos - render_scroll, draw_window->Color(ImGuiCol_Text), buf, buf+edit_state.CurLenA, 0.0f, is_multiline ? NULL : &clip_rect); // Draw blinking cursor ImVec2 cursor_screen_pos = render_pos + cursor_offset - render_scroll; bool cursor_is_visible = (g.InputTextState.CursorAnim <= 0.0f) || fmodf(g.InputTextState.CursorAnim, 1.20f) <= 0.80f; if (cursor_is_visible) draw_window->DrawList->AddLine(cursor_screen_pos + ImVec2(0.0f,-g.FontSize+0.5f), cursor_screen_pos + ImVec2(0.0f,-1.5f), window->Color(ImGuiCol_Text)); // Notify OS of text input position for advanced IME if (is_editable && io.ImeSetInputScreenPosFn && ImLengthSqr(edit_state.InputCursorScreenPos - cursor_screen_pos) > 0.0001f) io.ImeSetInputScreenPosFn((int)cursor_screen_pos.x - 1, (int)(cursor_screen_pos.y - g.FontSize)); // -1 x offset so that Windows IME can cover our cursor. Bit of an extra nicety. edit_state.InputCursorScreenPos = cursor_screen_pos; } else { // Render text only const char* buf_end = NULL; if (is_multiline) text_size = ImVec2(size.x, InputTextCalcTextLenAndLineCount(buf, &buf_end) * g.FontSize); // We don't need width draw_window->DrawList->AddText(g.Font, g.FontSize, render_pos, draw_window->Color(ImGuiCol_Text), buf, buf_end, 0.0f, is_multiline ? NULL : &clip_rect); } if (is_multiline) { ImGui::Dummy(text_size + ImVec2(0.0f, g.FontSize)); // Always add room to scroll an extra line ImGui::EndChildFrame(); ImGui::EndGroup(); } // Log as text if (g.LogEnabled) LogRenderedText(render_pos, buf, NULL); if (label_size.x > 0) RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y), label); if ((flags & ImGuiInputTextFlags_EnterReturnsTrue) != 0) return enter_pressed; else return value_changed; } bool ImGui::InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags, ImGuiTextEditCallback callback, void* user_data) { IM_ASSERT(!(flags & ImGuiInputTextFlags_Multiline)); // call InputTextMultiline() bool ret = InputTextEx(label, buf, (int)buf_size, ImVec2(0,0), flags, callback, user_data); return ret; } bool ImGui::InputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size, ImGuiInputTextFlags flags, ImGuiTextEditCallback callback, void* user_data) { bool ret = InputTextEx(label, buf, (int)buf_size, size, flags | ImGuiInputTextFlags_Multiline, callback, user_data); return ret; } // NB: scalar_format here must be a simple "%xx" format string with no prefix/suffix (unlike the Drag/Slider functions "display_format" argument) bool ImGui::InputScalarEx(const char* label, ImGuiDataType data_type, void* data_ptr, void* step_ptr, void* step_fast_ptr, const char* scalar_format, ImGuiInputTextFlags extra_flags) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const float w = CalcItemWidth(); const ImVec2 label_size = ImGui::CalcTextSize(label, NULL, true); const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(w, label_size.y) + style.FramePadding*2.0f); ImGui::BeginGroup(); ImGui::PushID(label); const ImVec2 button_sz = ImVec2(g.FontSize, g.FontSize) + style.FramePadding * 2; if (step_ptr) ImGui::PushItemWidth(ImMax(1.0f, w - (button_sz.x + style.ItemInnerSpacing.x)*2)); char buf[64]; DataTypeFormatString(data_type, data_ptr, scalar_format, buf, IM_ARRAYSIZE(buf)); bool value_changed = false; if (!(extra_flags & ImGuiInputTextFlags_CharsHexadecimal)) extra_flags |= ImGuiInputTextFlags_CharsDecimal; extra_flags |= ImGuiInputTextFlags_AutoSelectAll; if (ImGui::InputText("", buf, IM_ARRAYSIZE(buf), extra_flags)) { DataTypeApplyOpFromText(buf, GImGui->InputTextState.InitialText.begin(), data_type, data_ptr, scalar_format); value_changed = true; } // Step buttons if (step_ptr) { ImGui::PopItemWidth(); ImGui::SameLine(0, style.ItemInnerSpacing.x); if (ButtonEx("-", button_sz, ImGuiButtonFlags_Repeat | ImGuiButtonFlags_DontClosePopups)) { DataTypeApplyOp(data_type, '-', data_ptr, g.IO.KeyCtrl && step_fast_ptr ? step_fast_ptr : step_ptr); value_changed = true; } ImGui::SameLine(0, style.ItemInnerSpacing.x); if (ButtonEx("+", button_sz, ImGuiButtonFlags_Repeat | ImGuiButtonFlags_DontClosePopups)) { DataTypeApplyOp(data_type, '+', data_ptr, g.IO.KeyCtrl && step_fast_ptr ? step_fast_ptr : step_ptr); value_changed = true; } } ImGui::PopID(); if (label_size.x > 0) { ImGui::SameLine(0, style.ItemInnerSpacing.x); RenderText(ImVec2(window->DC.CursorPos.x, window->DC.CursorPos.y + style.FramePadding.y), label); ItemSize(label_size, style.FramePadding.y); } ImGui::EndGroup(); return value_changed; } bool ImGui::InputFloat(const char* label, float* v, float step, float step_fast, int decimal_precision, ImGuiInputTextFlags extra_flags) { char display_format[16]; if (decimal_precision < 0) strcpy(display_format, "%f"); // Ideally we'd have a minimum decimal precision of 1 to visually denote that this is a float, while hiding non-significant digits? %f doesn't have a minimum of 1 else ImFormatString(display_format, 16, "%%.%df", decimal_precision); return InputScalarEx(label, ImGuiDataType_Float, (void*)v, (void*)(step>0.0f ? &step : NULL), (void*)(step_fast>0.0f ? &step_fast : NULL), display_format, extra_flags); } bool ImGui::InputInt(const char* label, int* v, int step, int step_fast, ImGuiInputTextFlags extra_flags) { // Hexadecimal input provided as a convenience but the flag name is awkward. Typically you'd use InputText() to parse your own data, if you want to handle prefixes. const char* scalar_format = (extra_flags & ImGuiInputTextFlags_CharsHexadecimal) ? "%08X" : "%d"; return InputScalarEx(label, ImGuiDataType_Int, (void*)v, (void*)(step>0.0f ? &step : NULL), (void*)(step_fast>0.0f ? &step_fast : NULL), scalar_format, extra_flags); } bool ImGui::InputFloatN(const char* label, float* v, int components, int decimal_precision, ImGuiInputTextFlags extra_flags) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; bool value_changed = false; ImGui::BeginGroup(); ImGui::PushID(label); PushMultiItemsWidths(components); for (int i = 0; i < components; i++) { ImGui::PushID(i); value_changed |= ImGui::InputFloat("##v", &v[i], 0, 0, decimal_precision, extra_flags); ImGui::SameLine(0, g.Style.ItemInnerSpacing.x); ImGui::PopID(); ImGui::PopItemWidth(); } ImGui::PopID(); window->DC.CurrentLineTextBaseOffset = ImMax(window->DC.CurrentLineTextBaseOffset, g.Style.FramePadding.y); ImGui::TextUnformatted(label, FindTextDisplayEnd(label)); ImGui::EndGroup(); return value_changed; } bool ImGui::InputFloat2(const char* label, float v[2], int decimal_precision, ImGuiInputTextFlags extra_flags) { return InputFloatN(label, v, 2, decimal_precision, extra_flags); } bool ImGui::InputFloat3(const char* label, float v[3], int decimal_precision, ImGuiInputTextFlags extra_flags) { return InputFloatN(label, v, 3, decimal_precision, extra_flags); } bool ImGui::InputFloat4(const char* label, float v[4], int decimal_precision, ImGuiInputTextFlags extra_flags) { return InputFloatN(label, v, 4, decimal_precision, extra_flags); } bool ImGui::InputIntN(const char* label, int* v, int components, ImGuiInputTextFlags extra_flags) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; bool value_changed = false; ImGui::BeginGroup(); ImGui::PushID(label); PushMultiItemsWidths(components); for (int i = 0; i < components; i++) { ImGui::PushID(i); value_changed |= ImGui::InputInt("##v", &v[i], 0, 0, extra_flags); ImGui::SameLine(0, g.Style.ItemInnerSpacing.x); ImGui::PopID(); ImGui::PopItemWidth(); } ImGui::PopID(); window->DC.CurrentLineTextBaseOffset = ImMax(window->DC.CurrentLineTextBaseOffset, g.Style.FramePadding.y); ImGui::TextUnformatted(label, FindTextDisplayEnd(label)); ImGui::EndGroup(); return value_changed; } bool ImGui::InputInt2(const char* label, int v[2], ImGuiInputTextFlags extra_flags) { return InputIntN(label, v, 2, extra_flags); } bool ImGui::InputInt3(const char* label, int v[3], ImGuiInputTextFlags extra_flags) { return InputIntN(label, v, 3, extra_flags); } bool ImGui::InputInt4(const char* label, int v[4], ImGuiInputTextFlags extra_flags) { return InputIntN(label, v, 4, extra_flags); } static bool Items_ArrayGetter(void* data, int idx, const char** out_text) { const char** items = (const char**)data; if (out_text) *out_text = items[idx]; return true; } static bool Items_SingleStringGetter(void* data, int idx, const char** out_text) { // FIXME-OPT: we could pre-compute the indices to fasten this. But only 1 active combo means the waste is limited. const char* items_separated_by_zeros = (const char*)data; int items_count = 0; const char* p = items_separated_by_zeros; while (*p) { if (idx == items_count) break; p += strlen(p) + 1; items_count++; } if (!*p) return false; if (out_text) *out_text = p; return true; } // Combo box helper allowing to pass an array of strings. bool ImGui::Combo(const char* label, int* current_item, const char** items, int items_count, int height_in_items) { const bool value_changed = Combo(label, current_item, Items_ArrayGetter, (void*)items, items_count, height_in_items); return value_changed; } // Combo box helper allowing to pass all items in a single string. bool ImGui::Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int height_in_items) { int items_count = 0; const char* p = items_separated_by_zeros; // FIXME-OPT: Avoid computing this, or at least only when combo is open while (*p) { p += strlen(p) + 1; items_count++; } bool value_changed = Combo(label, current_item, Items_SingleStringGetter, (void*)items_separated_by_zeros, items_count, height_in_items); return value_changed; } // Combo box function. bool ImGui::Combo(const char* label, int* current_item, bool (*items_getter)(void*, int, const char**), void* data, int items_count, int height_in_items) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const ImGuiID id = window->GetID(label); const float w = CalcItemWidth(); const ImVec2 label_size = CalcTextSize(label, NULL, true); const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(w, label_size.y) + style.FramePadding*2.0f); const ImRect total_bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0.0f)); ItemSize(total_bb, style.FramePadding.y); if (!ItemAdd(total_bb, &id)) return false; const float arrow_size = (g.FontSize + style.FramePadding.x * 2.0f); const bool hovered = IsHovered(frame_bb, id); const ImRect value_bb(frame_bb.Min, frame_bb.Max - ImVec2(arrow_size, 0.0f)); RenderFrame(frame_bb.Min, frame_bb.Max, window->Color(ImGuiCol_FrameBg), true, style.FrameRounding); RenderFrame(ImVec2(frame_bb.Max.x-arrow_size, frame_bb.Min.y), frame_bb.Max, window->Color(hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button), true, style.FrameRounding); // FIXME-ROUNDING RenderCollapseTriangle(ImVec2(frame_bb.Max.x-arrow_size, frame_bb.Min.y) + style.FramePadding, true); if (*current_item >= 0 && *current_item < items_count) { const char* item_text; if (items_getter(data, *current_item, &item_text)) RenderTextClipped(frame_bb.Min + style.FramePadding, value_bb.Max, item_text, NULL, NULL); } if (label_size.x > 0) RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y), label); bool menu_toggled = false; if (hovered) { SetHoveredID(id); if (g.IO.MouseClicked[0]) { SetActiveID(0); if (IsPopupOpen(id)) { ClosePopup(id); } else { FocusWindow(window); ImGui::OpenPopup(label); menu_toggled = true; } } } bool value_changed = false; if (IsPopupOpen(id)) { // Size default to hold ~7 items if (height_in_items < 0) height_in_items = 7; float popup_height = (label_size.y + style.ItemSpacing.y) * ImMin(items_count, height_in_items) + (style.FramePadding.y * 3); ImRect popup_rect(ImVec2(frame_bb.Min.x, frame_bb.Max.y), ImVec2(frame_bb.Max.x, frame_bb.Max.y + popup_height)); popup_rect.Max.y = ImMin(popup_rect.Max.y, g.IO.DisplaySize.y - style.DisplaySafeAreaPadding.y); // Adhoc height limit for Combo. Ideally should be handled in Begin() along with other popups size, we want to have the possibility of moving the popup above as well. ImGui::SetNextWindowPos(popup_rect.Min); ImGui::SetNextWindowSize(popup_rect.GetSize()); ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, style.FramePadding); const ImGuiWindowFlags flags = ImGuiWindowFlags_ComboBox | ((window->Flags & ImGuiWindowFlags_ShowBorders) ? ImGuiWindowFlags_ShowBorders : 0); if (BeginPopupEx(label, flags)) { // Display items ImGui::Spacing(); for (int i = 0; i < items_count; i++) { ImGui::PushID((void*)(intptr_t)i); const bool item_selected = (i == *current_item); const char* item_text; if (!items_getter(data, i, &item_text)) item_text = "*Unknown item*"; if (ImGui::Selectable(item_text, item_selected)) { SetActiveID(0); value_changed = true; *current_item = i; } if (item_selected && menu_toggled) ImGui::SetScrollHere(); ImGui::PopID(); } ImGui::EndPopup(); } ImGui::PopStyleVar(); } return value_changed; } // Tip: pass an empty label (e.g. "##dummy") then you can use the space to draw other text or image. // But you need to make sure the ID is unique, e.g. enclose calls in PushID/PopID. bool ImGui::Selectable(const char* label, bool selected, ImGuiSelectableFlags flags, const ImVec2& size_arg) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; if ((flags & ImGuiSelectableFlags_SpanAllColumns) && window->DC.ColumnsCount > 1) PopClipRect(); ImGuiID id = window->GetID(label); ImVec2 label_size = ImGui::CalcTextSize(label, NULL, true); ImVec2 size(size_arg.x != 0.0f ? size_arg.x : label_size.x, size_arg.y != 0.0f ? size_arg.y : label_size.y); ImVec2 pos = window->DC.CursorPos; pos.y += window->DC.CurrentLineTextBaseOffset; ImRect bb(pos, pos + size); ItemSize(bb); // Fill horizontal space. ImVec2 window_padding = window->WindowPadding; float max_x = (flags & ImGuiSelectableFlags_SpanAllColumns) ? ImGui::GetWindowContentRegionMax().x : ImGui::GetContentRegionMax().x; float w_draw = ImMax(label_size.x, window->Pos.x + max_x - window_padding.x - window->DC.CursorPos.x); ImVec2 size_draw((size_arg.x != 0 && !(flags & ImGuiSelectableFlags_DrawFillAvailWidth)) ? size_arg.x : w_draw, size_arg.y != 0.0f ? size_arg.y : size.y); ImRect bb_with_spacing(pos, pos + size_draw); if (size_arg.x == 0.0f || (flags & ImGuiSelectableFlags_DrawFillAvailWidth)) bb_with_spacing.Max.x += window_padding.x; // Selectables are tightly packed together, we extend the box to cover spacing between selectable. float spacing_L = (float)(int)(style.ItemSpacing.x * 0.5f); float spacing_U = (float)(int)(style.ItemSpacing.y * 0.5f); float spacing_R = style.ItemSpacing.x - spacing_L; float spacing_D = style.ItemSpacing.y - spacing_U; bb_with_spacing.Min.x -= spacing_L; bb_with_spacing.Min.y -= spacing_U; bb_with_spacing.Max.x += spacing_R; bb_with_spacing.Max.y += spacing_D; if (!ItemAdd(bb_with_spacing, &id)) { if ((flags & ImGuiSelectableFlags_SpanAllColumns) && window->DC.ColumnsCount > 1) PushColumnClipRect(); return false; } ImGuiButtonFlags button_flags = 0; if (flags & ImGuiSelectableFlags_Menu) button_flags |= ImGuiButtonFlags_PressedOnClick; if (flags & ImGuiSelectableFlags_MenuItem) button_flags |= ImGuiButtonFlags_PressedOnClick|ImGuiButtonFlags_PressedOnRelease; if (flags & ImGuiSelectableFlags_Disabled) button_flags |= ImGuiButtonFlags_Disabled; bool hovered, held; bool pressed = ButtonBehavior(bb_with_spacing, id, &hovered, &held, true, button_flags); if (flags & ImGuiSelectableFlags_Disabled) selected = false; // Render if (hovered || selected) { const ImU32 col = window->Color((held && hovered) ? ImGuiCol_HeaderActive : hovered ? ImGuiCol_HeaderHovered : ImGuiCol_Header); RenderFrame(bb_with_spacing.Min, bb_with_spacing.Max, col, false, 0.0f); } if ((flags & ImGuiSelectableFlags_SpanAllColumns) && window->DC.ColumnsCount > 1) { PushColumnClipRect(); bb_with_spacing.Max.x -= (ImGui::GetContentRegionMax().x - max_x); } if (flags & ImGuiSelectableFlags_Disabled) ImGui::PushStyleColor(ImGuiCol_Text, g.Style.Colors[ImGuiCol_TextDisabled]); RenderTextClipped(bb.Min, bb_with_spacing.Max, label, NULL, &label_size); if (flags & ImGuiSelectableFlags_Disabled) ImGui::PopStyleColor(); // Automatically close popups if (pressed && !(flags & ImGuiSelectableFlags_DontClosePopups) && (window->Flags & ImGuiWindowFlags_Popup)) ImGui::CloseCurrentPopup(); return pressed; } bool ImGui::Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags, const ImVec2& size_arg) { if (ImGui::Selectable(label, *p_selected, flags, size_arg)) { *p_selected = !*p_selected; return true; } return false; } // Helper to calculate the size of a listbox and display a label on the right. // Tip: To have a list filling the entire window width, PushItemWidth(-1) and pass an empty label "##empty" bool ImGui::ListBoxHeader(const char* label, const ImVec2& size_arg) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; const ImGuiStyle& style = ImGui::GetStyle(); const ImGuiID id = ImGui::GetID(label); const ImVec2 label_size = ImGui::CalcTextSize(label, NULL, true); // Size default to hold ~7 items. Fractional number of items helps seeing that we can scroll down/up without looking at scrollbar. ImVec2 size = CalcItemSize(size_arg, CalcItemWidth() + style.FramePadding.x * 2.0f, ImGui::GetTextLineHeightWithSpacing() * 7.4f + style.ItemSpacing.y); ImVec2 frame_size = ImVec2(size.x, ImMax(size.y, label_size.y)); ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + frame_size); ImRect bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0.0f)); window->DC.LastItemRect = bb; ImGui::BeginGroup(); if (label_size.x > 0) RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y), label); ImGui::BeginChildFrame(id, frame_bb.GetSize()); return true; } bool ImGui::ListBoxHeader(const char* label, int items_count, int height_in_items) { // Size default to hold ~7 items. Fractional number of items helps seeing that we can scroll down/up without looking at scrollbar. // However we don't add +0.40f if items_count <= height_in_items. It is slightly dodgy, because it means a dynamic list of items will make the widget resize occasionally when it crosses that size. // I am expecting that someone will come and complain about this behavior in a remote future, then we can advise on a better solution. if (height_in_items < 0) height_in_items = ImMin(items_count, 7); float height_in_items_f = height_in_items < items_count ? (height_in_items + 0.40f) : (height_in_items + 0.00f); // We include ItemSpacing.y so that a list sized for the exact number of items doesn't make a scrollbar appears. We could also enforce that by passing a flag to BeginChild(). ImVec2 size; size.x = 0.0f; size.y = ImGui::GetTextLineHeightWithSpacing() * height_in_items_f + ImGui::GetStyle().ItemSpacing.y; return ImGui::ListBoxHeader(label, size); } void ImGui::ListBoxFooter() { ImGuiWindow* parent_window = GetParentWindow(); const ImRect bb = parent_window->DC.LastItemRect; const ImGuiStyle& style = ImGui::GetStyle(); ImGui::EndChildFrame(); // Redeclare item size so that it includes the label (we have stored the full size in LastItemRect) // We call SameLine() to restore DC.CurrentLine* data ImGui::SameLine(); parent_window->DC.CursorPos = bb.Min; ItemSize(bb, style.FramePadding.y); ImGui::EndGroup(); } bool ImGui::ListBox(const char* label, int* current_item, const char** items, int items_count, int height_items) { const bool value_changed = ListBox(label, current_item, Items_ArrayGetter, (void*)items, items_count, height_items); return value_changed; } bool ImGui::ListBox(const char* label, int* current_item, bool (*items_getter)(void*, int, const char**), void* data, int items_count, int height_in_items) { if (!ImGui::ListBoxHeader(label, items_count, height_in_items)) return false; // Assume all items have even height (= 1 line of text). If you need items of different or variable sizes you can create a custom version of ListBox() in your code without using the clipper. bool value_changed = false; ImGuiListClipper clipper(items_count, ImGui::GetTextLineHeightWithSpacing()); for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) { const bool item_selected = (i == *current_item); const char* item_text; if (!items_getter(data, i, &item_text)) item_text = "*Unknown item*"; ImGui::PushID(i); if (ImGui::Selectable(item_text, item_selected)) { *current_item = i; value_changed = true; } ImGui::PopID(); } clipper.End(); ImGui::ListBoxFooter(); return value_changed; } bool ImGui::MenuItem(const char* label, const char* shortcut, bool selected, bool enabled) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; ImVec2 pos = window->DC.CursorPos; ImVec2 label_size = CalcTextSize(label, NULL, true); ImVec2 shortcut_size = shortcut ? CalcTextSize(shortcut, NULL) : ImVec2(0.0f, 0.0f); float w = window->MenuColumns.DeclColumns(label_size.x, shortcut_size.x, (float)(int)(g.FontSize * 1.20f)); // Feedback for next frame float extra_w = ImMax(0.0f, ImGui::GetContentRegionAvail().x - w); bool pressed = ImGui::Selectable(label, false, ImGuiSelectableFlags_MenuItem | ImGuiSelectableFlags_DrawFillAvailWidth | (!enabled ? ImGuiSelectableFlags_Disabled : 0), ImVec2(w, 0.0f)); if (shortcut_size.x > 0.0f) { ImGui::PushStyleColor(ImGuiCol_Text, g.Style.Colors[ImGuiCol_TextDisabled]); RenderText(pos + ImVec2(window->MenuColumns.Pos[1] + extra_w, 0.0f), shortcut, NULL, false); ImGui::PopStyleColor(); } if (selected) RenderCheckMark(pos + ImVec2(window->MenuColumns.Pos[2] + extra_w + g.FontSize * 0.20f, 0.0f), window->Color(ImGuiCol_Text)); return pressed; } bool ImGui::MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled) { if (ImGui::MenuItem(label, shortcut, p_selected ? *p_selected : false, enabled)) { if (p_selected) *p_selected = !*p_selected; return true; } return false; } bool ImGui::BeginMainMenuBar() { ImGuiState& g = *GImGui; ImGui::SetNextWindowPos(ImVec2(0.0f, 0.0f)); ImGui::SetNextWindowSize(ImVec2(g.IO.DisplaySize.x, g.FontBaseSize + g.Style.FramePadding.y * 2.0f)); ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, 0.0f); ImGui::PushStyleVar(ImGuiStyleVar_WindowMinSize, ImVec2(0,0)); if (!ImGui::Begin("##MainMenuBar", NULL, ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoResize|ImGuiWindowFlags_NoMove|ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoSavedSettings|ImGuiWindowFlags_MenuBar) || !ImGui::BeginMenuBar()) { ImGui::End(); ImGui::PopStyleVar(2); return false; } g.CurrentWindow->DC.MenuBarOffsetX += g.Style.DisplaySafeAreaPadding.x; return true; } void ImGui::EndMainMenuBar() { ImGui::EndMenuBar(); ImGui::End(); ImGui::PopStyleVar(2); } bool ImGui::BeginMenuBar() { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; if (!(window->Flags & ImGuiWindowFlags_MenuBar)) return false; IM_ASSERT(!window->DC.MenuBarAppending); ImGui::BeginGroup(); // Save position ImGui::PushID("##menubar"); ImRect rect = window->MenuBarRect(); PushClipRect(ImVec4(rect.Min.x+0.5f, rect.Min.y-0.5f, rect.Max.x+0.5f, rect.Max.y-1.5f), false); window->DC.CursorPos = ImVec2(rect.Min.x + window->DC.MenuBarOffsetX, rect.Min.y);// + g.Style.FramePadding.y); window->DC.LayoutType = ImGuiLayoutType_Horizontal; window->DC.MenuBarAppending = true; ImGui::AlignFirstTextHeightToWidgets(); return true; } void ImGui::EndMenuBar() { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; IM_ASSERT(window->Flags & ImGuiWindowFlags_MenuBar); IM_ASSERT(window->DC.MenuBarAppending); PopClipRect(); ImGui::PopID(); window->DC.MenuBarOffsetX = window->DC.CursorPos.x - window->MenuBarRect().Min.x; window->DC.GroupStack.back().AdvanceCursor = false; ImGui::EndGroup(); window->DC.LayoutType = ImGuiLayoutType_Vertical; window->DC.MenuBarAppending = false; } bool ImGui::BeginMenu(const char* label, bool enabled) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const ImGuiID id = window->GetID(label); ImVec2 label_size = CalcTextSize(label, NULL, true); ImGuiWindow* backed_focused_window = g.FocusedWindow; bool pressed; bool opened = IsPopupOpen(id); bool menuset_opened = !(window->Flags & ImGuiWindowFlags_Popup) && (g.OpenedPopupStack.Size > g.CurrentPopupStack.Size && g.OpenedPopupStack[g.CurrentPopupStack.Size].ParentMenuSet == window->GetID("##menus")); if (menuset_opened) g.FocusedWindow = window; ImVec2 popup_pos, pos = window->DC.CursorPos; if (window->DC.LayoutType == ImGuiLayoutType_Horizontal) { popup_pos = ImVec2(pos.x - window->WindowPadding.x, pos.y - style.FramePadding.y + window->MenuBarHeight()); window->DC.CursorPos.x += (float)(int)(style.ItemSpacing.x * 0.5f); ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, style.ItemSpacing * 2.0f); float w = label_size.x; pressed = ImGui::Selectable(label, opened, ImGuiSelectableFlags_Menu | ImGuiSelectableFlags_DontClosePopups | (!enabled ? ImGuiSelectableFlags_Disabled : 0), ImVec2(w, 0.0f)); ImGui::PopStyleVar(); ImGui::SameLine(); window->DC.CursorPos.x += (float)(int)(style.ItemSpacing.x * 0.5f); } else { popup_pos = ImVec2(pos.x, pos.y - style.WindowPadding.y); float w = window->MenuColumns.DeclColumns(label_size.x, 0.0f, (float)(int)(g.FontSize * 1.20f)); // Feedback to next frame float extra_w = ImMax(0.0f, ImGui::GetContentRegionAvail().x - w); pressed = ImGui::Selectable(label, opened, ImGuiSelectableFlags_Menu | ImGuiSelectableFlags_DontClosePopups | ImGuiSelectableFlags_DrawFillAvailWidth | (!enabled ? ImGuiSelectableFlags_Disabled : 0), ImVec2(w, 0.0f)); if (!enabled) ImGui::PushStyleColor(ImGuiCol_Text, g.Style.Colors[ImGuiCol_TextDisabled]); RenderCollapseTriangle(pos + ImVec2(window->MenuColumns.Pos[2] + extra_w + g.FontSize * 0.20f, 0.0f), false); if (!enabled) ImGui::PopStyleColor(); } bool hovered = enabled && IsHovered(window->DC.LastItemRect, id); if (menuset_opened) g.FocusedWindow = backed_focused_window; bool want_open = false, want_close = false; if (window->Flags & (ImGuiWindowFlags_Popup|ImGuiWindowFlags_ChildMenu)) { // Implement http://bjk5.com/post/44698559168/breaking-down-amazons-mega-dropdown to avoid using timers so menus feel more reactive. bool moving_within_opened_triangle = false; if (g.HoveredWindow == window && g.OpenedPopupStack.Size > g.CurrentPopupStack.Size && g.OpenedPopupStack[g.CurrentPopupStack.Size].ParentWindow == window) { if (ImGuiWindow* next_window = g.OpenedPopupStack[g.CurrentPopupStack.Size].Window) { ImRect next_window_rect = next_window->Rect(); ImVec2 ta = g.IO.MousePos - g.IO.MouseDelta; ImVec2 tb = (window->Pos.x < next_window->Pos.x) ? next_window_rect.GetTL() : next_window_rect.GetTR(); ImVec2 tc = (window->Pos.x < next_window->Pos.x) ? next_window_rect.GetBL() : next_window_rect.GetBR(); float extra = ImClamp(fabsf(ta.x - tb.x) * 0.30f, 5.0f, 30.0f); // add a bit of extra slack. ta.x += (window->Pos.x < next_window->Pos.x) ? -0.5f : +0.5f; // to avoid numerical issues tb.y = ta.y + ImMax((tb.y - extra) - ta.y, -100.0f); // triangle is maximum 200 high to limit the slope and the bias toward large sub-menus tc.y = ta.y + ImMin((tc.y + extra) - ta.y, +100.0f); moving_within_opened_triangle = ImIsPointInTriangle(g.IO.MousePos, ta, tb, tc); //window->DrawList->PushClipRectFullScreen(); window->DrawList->AddTriangleFilled(ta, tb, tc, moving_within_opened_triangle ? 0x80008000 : 0x80000080); window->DrawList->PopClipRect(); // Debug } } want_close = (opened && !hovered && g.HoveredWindow == window && g.HoveredIdPreviousFrame != 0 && g.HoveredIdPreviousFrame != id && !moving_within_opened_triangle); want_open = (!opened && hovered && !moving_within_opened_triangle) || (!opened && hovered && pressed); } else if (opened && pressed && menuset_opened) // menu-bar: click open menu to close { want_close = true; want_open = opened = false; } else if (pressed || (hovered && menuset_opened && !opened)) // menu-bar: first click to open, then hover to open others want_open = true; if (want_close && IsPopupOpen(id)) ClosePopupToLevel(GImGui->CurrentPopupStack.Size); if (!opened && want_open && g.OpenedPopupStack.Size > g.CurrentPopupStack.Size) { // Don't recycle same menu level in the same frame, first close the other menu and yield for a frame. ImGui::OpenPopup(label); return false; } opened |= want_open; if (want_open) ImGui::OpenPopup(label); if (opened) { ImGui::SetNextWindowPos(popup_pos, ImGuiSetCond_Always); ImGuiWindowFlags flags = ImGuiWindowFlags_ShowBorders | ((window->Flags & (ImGuiWindowFlags_Popup|ImGuiWindowFlags_ChildMenu)) ? ImGuiWindowFlags_ChildMenu|ImGuiWindowFlags_ChildWindow : ImGuiWindowFlags_ChildMenu); opened = BeginPopupEx(label, flags); // opened can be 'false' when the popup is completely clipped (e.g. zero size display) } return opened; } void ImGui::EndMenu() { ImGui::EndPopup(); } // A little colored square. Return true when clicked. // FIXME: May want to display/ignore the alpha component in the color display? Yet show it in the tooltip. bool ImGui::ColorButton(const ImVec4& col, bool small_height, bool outline_border) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const ImGuiID id = window->GetID("#colorbutton"); const float square_size = g.FontSize; const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(square_size + style.FramePadding.y*2, square_size + (small_height ? 0 : style.FramePadding.y*2))); ItemSize(bb, small_height ? 0.0f : style.FramePadding.y); if (!ItemAdd(bb, &id)) return false; bool hovered, held; bool pressed = ButtonBehavior(bb, id, &hovered, &held, true); RenderFrame(bb.Min, bb.Max, window->Color(col), outline_border, style.FrameRounding); if (hovered) ImGui::SetTooltip("Color:\n(%.2f,%.2f,%.2f,%.2f)\n#%02X%02X%02X%02X", col.x, col.y, col.z, col.w, IM_F32_TO_INT8(col.x), IM_F32_TO_INT8(col.y), IM_F32_TO_INT8(col.z), IM_F32_TO_INT8(col.z)); return pressed; } bool ImGui::ColorEdit3(const char* label, float col[3]) { float col4[4]; col4[0] = col[0]; col4[1] = col[1]; col4[2] = col[2]; col4[3] = 1.0f; const bool value_changed = ImGui::ColorEdit4(label, col4, false); col[0] = col4[0]; col[1] = col4[1]; col[2] = col4[2]; return value_changed; } // Edit colors components (each component in 0.0f..1.0f range // Use CTRL-Click to input value and TAB to go to next item. bool ImGui::ColorEdit4(const char* label, float col[4], bool alpha) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return false; ImGuiState& g = *GImGui; const ImGuiStyle& style = g.Style; const ImGuiID id = window->GetID(label); const float w_full = CalcItemWidth(); const float square_sz = (g.FontSize + style.FramePadding.y * 2.0f); ImGuiColorEditMode edit_mode = window->DC.ColorEditMode; if (edit_mode == ImGuiColorEditMode_UserSelect || edit_mode == ImGuiColorEditMode_UserSelectShowButton) edit_mode = g.ColorEditModeStorage.GetInt(id, 0) % 3; float f[4] = { col[0], col[1], col[2], col[3] }; if (edit_mode == ImGuiColorEditMode_HSV) ImGui::ColorConvertRGBtoHSV(f[0], f[1], f[2], f[0], f[1], f[2]); int i[4] = { IM_F32_TO_INT8(f[0]), IM_F32_TO_INT8(f[1]), IM_F32_TO_INT8(f[2]), IM_F32_TO_INT8(f[3]) }; int components = alpha ? 4 : 3; bool value_changed = false; ImGui::BeginGroup(); ImGui::PushID(label); const bool hsv = (edit_mode == 1); switch (edit_mode) { case ImGuiColorEditMode_RGB: case ImGuiColorEditMode_HSV: { // RGB/HSV 0..255 Sliders const float w_items_all = w_full - (square_sz + style.ItemInnerSpacing.x); const float w_item_one = ImMax(1.0f, (float)(int)((w_items_all - (style.FramePadding.x*2.0f + style.ItemInnerSpacing.x) * (components-1)) / (float)components)); const float w_item_last = ImMax(1.0f, (float)(int)(w_items_all - (w_item_one + style.FramePadding.x*2.0f + style.ItemInnerSpacing.x) * (components-1))); const bool hide_prefix = (w_item_one <= CalcTextSize("M:999").x); const char* ids[4] = { "##X", "##Y", "##Z", "##W" }; const char* fmt_table[3][4] = { { "%3.0f", "%3.0f", "%3.0f", "%3.0f" }, { "R:%3.0f", "G:%3.0f", "B:%3.0f", "A:%3.0f" }, { "H:%3.0f", "S:%3.0f", "V:%3.0f", "A:%3.0f" } }; const char** fmt = hide_prefix ? fmt_table[0] : hsv ? fmt_table[2] : fmt_table[1]; ImGui::PushItemWidth(w_item_one); for (int n = 0; n < components; n++) { if (n > 0) ImGui::SameLine(0, style.ItemInnerSpacing.x); if (n + 1 == components) ImGui::PushItemWidth(w_item_last); value_changed |= ImGui::DragInt(ids[n], &i[n], 1.0f, 0, 255, fmt[n]); } ImGui::PopItemWidth(); ImGui::PopItemWidth(); } break; case ImGuiColorEditMode_HEX: { // RGB Hexadecimal Input const float w_slider_all = w_full - square_sz; char buf[64]; if (alpha) ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X%02X", i[0], i[1], i[2], i[3]); else ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X", i[0], i[1], i[2]); ImGui::PushItemWidth(w_slider_all - style.ItemInnerSpacing.x); value_changed |= ImGui::InputText("##Text", buf, IM_ARRAYSIZE(buf), ImGuiInputTextFlags_CharsHexadecimal | ImGuiInputTextFlags_CharsUppercase); ImGui::PopItemWidth(); char* p = buf; while (*p == '#' || ImCharIsSpace(*p)) p++; // Treat at unsigned (%X is unsigned) i[0] = i[1] = i[2] = i[3] = 0; if (alpha) sscanf(p, "%02X%02X%02X%02X", (unsigned int*)&i[0], (unsigned int*)&i[1], (unsigned int*)&i[2], (unsigned int*)&i[3]); else sscanf(p, "%02X%02X%02X", (unsigned int*)&i[0], (unsigned int*)&i[1], (unsigned int*)&i[2]); } break; } ImGui::SameLine(0, style.ItemInnerSpacing.x); const ImVec4 col_display(col[0], col[1], col[2], 1.0f); if (ImGui::ColorButton(col_display)) g.ColorEditModeStorage.SetInt(id, (edit_mode + 1) % 3); // Don't set local copy of 'edit_mode' right away! // Recreate our own tooltip over's ColorButton() one because we want to display correct alpha here if (ImGui::IsItemHovered()) ImGui::SetTooltip("Color:\n(%.2f,%.2f,%.2f,%.2f)\n#%08X", col[0], col[1], col[2], col[3], IM_F32_TO_INT8(col[0]), IM_F32_TO_INT8(col[1]), IM_F32_TO_INT8(col[2]), IM_F32_TO_INT8(col[3])); if (window->DC.ColorEditMode == ImGuiColorEditMode_UserSelectShowButton) { ImGui::SameLine(0, style.ItemInnerSpacing.x); const char* button_titles[3] = { "RGB", "HSV", "HEX" }; if (ButtonEx(button_titles[edit_mode], ImVec2(0,0), ImGuiButtonFlags_DontClosePopups)) g.ColorEditModeStorage.SetInt(id, (edit_mode + 1) % 3); // Don't set local copy of 'edit_mode' right away! ImGui::SameLine(); } else { ImGui::SameLine(0, style.ItemInnerSpacing.x); } ImGui::TextUnformatted(label, FindTextDisplayEnd(label)); // Convert back for (int n = 0; n < 4; n++) f[n] = i[n] / 255.0f; if (edit_mode == 1) ImGui::ColorConvertHSVtoRGB(f[0], f[1], f[2], f[0], f[1], f[2]); if (value_changed) { col[0] = f[0]; col[1] = f[1]; col[2] = f[2]; if (alpha) col[3] = f[3]; } ImGui::PopID(); ImGui::EndGroup(); return value_changed; } void ImGui::ColorEditMode(ImGuiColorEditMode mode) { ImGuiWindow* window = GetCurrentWindow(); window->DC.ColorEditMode = mode; } // Horizontal separating line. void ImGui::Separator() { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; if (window->DC.ColumnsCount > 1) PopClipRect(); float x1 = window->Pos.x; float x2 = window->Pos.x + window->Size.x; if (!window->DC.GroupStack.empty()) x1 += window->DC.ColumnsStartX; const ImRect bb(ImVec2(x1, window->DC.CursorPos.y), ImVec2(x2, window->DC.CursorPos.y)); ItemSize(ImVec2(0.0f, 0.0f)); // NB: we don't provide our width so that it doesn't get feed back into AutoFit // FIXME: Height should be 1.0f not 0.0f ? if (!ItemAdd(bb, NULL)) { if (window->DC.ColumnsCount > 1) PushColumnClipRect(); return; } window->DrawList->AddLine(bb.Min, bb.Max, window->Color(ImGuiCol_Border)); ImGuiState& g = *GImGui; if (g.LogEnabled) ImGui::LogText(IM_NEWLINE "--------------------------------"); if (window->DC.ColumnsCount > 1) { PushColumnClipRect(); window->DC.ColumnsCellMinY = window->DC.CursorPos.y; } } void ImGui::Spacing() { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; ItemSize(ImVec2(0,0)); } void ImGui::Dummy(const ImVec2& size) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); ItemSize(bb); ItemAdd(bb, NULL); } bool ImGui::IsRectVisible(const ImVec2& size) { ImGuiWindow* window = GetCurrentWindowRead(); return window->ClipRect.Overlaps(ImRect(window->DC.CursorPos, window->DC.CursorPos + size)); } void ImGui::BeginGroup() { ImGuiWindow* window = GetCurrentWindow(); window->DC.GroupStack.resize(window->DC.GroupStack.Size + 1); ImGuiGroupData& group_data = window->DC.GroupStack.back(); group_data.BackupCursorPos = window->DC.CursorPos; group_data.BackupCursorMaxPos = window->DC.CursorMaxPos; group_data.BackupColumnsStartX = window->DC.ColumnsStartX; group_data.BackupCurrentLineHeight = window->DC.CurrentLineHeight; group_data.BackupCurrentLineTextBaseOffset = window->DC.CurrentLineTextBaseOffset; group_data.BackupLogLinePosY = window->DC.LogLinePosY; group_data.AdvanceCursor = true; window->DC.ColumnsStartX = window->DC.CursorPos.x - window->Pos.x; window->DC.CursorMaxPos = window->DC.CursorPos; window->DC.CurrentLineHeight = 0.0f; window->DC.LogLinePosY = window->DC.CursorPos.y - 9999.0f; } void ImGui::EndGroup() { ImGuiWindow* window = GetCurrentWindow(); ImGuiStyle& style = ImGui::GetStyle(); IM_ASSERT(!window->DC.GroupStack.empty()); ImGuiGroupData& group_data = window->DC.GroupStack.back(); ImRect group_bb(group_data.BackupCursorPos, window->DC.CursorMaxPos); group_bb.Max.y -= style.ItemSpacing.y; // Cancel out last vertical spacing because we are adding one ourselves. group_bb.Max = ImMax(group_bb.Min, group_bb.Max); window->DC.CursorPos = group_data.BackupCursorPos; window->DC.CursorMaxPos = ImMax(group_data.BackupCursorMaxPos, window->DC.CursorMaxPos); window->DC.CurrentLineHeight = group_data.BackupCurrentLineHeight; window->DC.CurrentLineTextBaseOffset = group_data.BackupCurrentLineTextBaseOffset; window->DC.ColumnsStartX = group_data.BackupColumnsStartX; window->DC.LogLinePosY = window->DC.CursorPos.y - 9999.0f; if (group_data.AdvanceCursor) { window->DC.CurrentLineTextBaseOffset = ImMax(window->DC.PrevLineTextBaseOffset, group_data.BackupCurrentLineTextBaseOffset); // FIXME: Incorrect, we should grab the base offset from the *first line* of the group but it is hard to obtain now. ItemSize(group_bb.GetSize(), group_data.BackupCurrentLineTextBaseOffset); ItemAdd(group_bb, NULL); } window->DC.GroupStack.pop_back(); //window->DrawList->AddRect(group_bb.Min, group_bb.Max, 0xFFFF00FF); // Debug } // Gets back to previous line and continue with horizontal layout // local_pos_x == 0 : follow on previous item // local_pos_x != 0 : align to specified column // spacing_w < 0 : use default spacing if column_x==0, no spacing if column_x!=0 // spacing_w >= 0 : enforce spacing void ImGui::SameLine(float local_pos_x, float spacing_w) { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; ImGuiState& g = *GImGui; float x, y; if (local_pos_x != 0.0f) { if (spacing_w < 0.0f) spacing_w = 0.0f; x = window->Pos.x - window->Scroll.x + local_pos_x + spacing_w; y = window->DC.CursorPosPrevLine.y; } else { if (spacing_w < 0.0f) spacing_w = g.Style.ItemSpacing.x; x = window->DC.CursorPosPrevLine.x + spacing_w; y = window->DC.CursorPosPrevLine.y; } window->DC.CurrentLineHeight = window->DC.PrevLineHeight; window->DC.CurrentLineTextBaseOffset = window->DC.PrevLineTextBaseOffset; window->DC.CursorPos = ImVec2(x, y); } void ImGui::NextColumn() { ImGuiWindow* window = GetCurrentWindow(); if (window->SkipItems) return; ImGuiState& g = *GImGui; if (window->DC.ColumnsCount > 1) { ImGui::PopItemWidth(); PopClipRect(); window->DC.ColumnsCellMaxY = ImMax(window->DC.ColumnsCellMaxY, window->DC.CursorPos.y); if (++window->DC.ColumnsCurrent < window->DC.ColumnsCount) { window->DC.ColumnsOffsetX = ImGui::GetColumnOffset(window->DC.ColumnsCurrent) - window->DC.ColumnsStartX + g.Style.ItemSpacing.x; window->DrawList->ChannelsSetCurrent(window->DC.ColumnsCurrent); } else { window->DC.ColumnsCurrent = 0; window->DC.ColumnsOffsetX = 0.0f; window->DC.ColumnsCellMinY = window->DC.ColumnsCellMaxY; window->DrawList->ChannelsSetCurrent(0); } window->DC.CursorPos.x = (float)(int)(window->Pos.x + window->DC.ColumnsStartX + window->DC.ColumnsOffsetX); window->DC.CursorPos.y = window->DC.ColumnsCellMinY; window->DC.CurrentLineHeight = 0.0f; window->DC.CurrentLineTextBaseOffset = 0.0f; PushColumnClipRect(); ImGui::PushItemWidth(ImGui::GetColumnWidth() * 0.65f); // FIXME } } int ImGui::GetColumnIndex() { ImGuiWindow* window = GetCurrentWindowRead(); return window->DC.ColumnsCurrent; } int ImGui::GetColumnsCount() { ImGuiWindow* window = GetCurrentWindowRead(); return window->DC.ColumnsCount; } static float GetDraggedColumnOffset(int column_index) { // Active (dragged) column always follow mouse. The reason we need this is that dragging a column to the right edge of an auto-resizing // window creates a feedback loop because we store normalized positions/ So while dragging we enforce absolute positioning ImGuiState& g = *GImGui; ImGuiWindow* window = ImGui::GetCurrentWindowRead(); IM_ASSERT(column_index > 0); // We cannot drag column 0. If you get this assert you may have a conflict between the ID of your columns and another widgets. IM_ASSERT(g.ActiveId == window->DC.ColumnsSetID + ImGuiID(column_index)); float x = g.IO.MousePos.x + g.ActiveClickDeltaToCenter.x - window->Pos.x; x = ImClamp(x, ImGui::GetColumnOffset(column_index-1)+g.Style.ColumnsMinSpacing, ImGui::GetColumnOffset(column_index+1)-g.Style.ColumnsMinSpacing); return (float)(int)x; } float ImGui::GetColumnOffset(int column_index) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindowRead(); if (column_index < 0) column_index = window->DC.ColumnsCurrent; if (g.ActiveId) { const ImGuiID column_id = window->DC.ColumnsSetID + ImGuiID(column_index); if (g.ActiveId == column_id) return GetDraggedColumnOffset(column_index); } // Read from cache IM_ASSERT(column_index < window->DC.ColumnsOffsetsT.Size); const float t = window->DC.ColumnsOffsetsT[column_index]; const float content_region_width = window->SizeContentsExplicit.x ? window->SizeContentsExplicit.x : window->Size.x; const float min_x = window->DC.ColumnsStartX; const float max_x = content_region_width - window->Scroll.x - ((window->Flags & ImGuiWindowFlags_NoScrollbar) ? 0 : g.Style.ScrollbarSize);// - window->WindowPadding().x; const float x = min_x + t * (max_x - min_x); return (float)(int)x; } void ImGui::SetColumnOffset(int column_index, float offset) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); if (column_index < 0) column_index = window->DC.ColumnsCurrent; IM_ASSERT(column_index < window->DC.ColumnsOffsetsT.Size); const ImGuiID column_id = window->DC.ColumnsSetID + ImGuiID(column_index); const float content_region_width = window->SizeContentsExplicit.x ? window->SizeContentsExplicit.x : window->Size.x; const float min_x = window->DC.ColumnsStartX; const float max_x = content_region_width - window->Scroll.x - ((window->Flags & ImGuiWindowFlags_NoScrollbar) ? 0 : g.Style.ScrollbarSize);// - window->WindowPadding().x; const float t = (offset - min_x) / (max_x - min_x); window->DC.StateStorage->SetFloat(column_id, t); window->DC.ColumnsOffsetsT[column_index] = t; } float ImGui::GetColumnWidth(int column_index) { ImGuiWindow* window = GetCurrentWindowRead(); if (column_index < 0) column_index = window->DC.ColumnsCurrent; const float w = GetColumnOffset(column_index+1) - GetColumnOffset(column_index); return w; } static void PushColumnClipRect(int column_index) { ImGuiWindow* window = ImGui::GetCurrentWindow(); if (column_index < 0) column_index = window->DC.ColumnsCurrent; const float x1 = window->Pos.x + ImGui::GetColumnOffset(column_index) - 1; const float x2 = window->Pos.x + ImGui::GetColumnOffset(column_index+1) - 1; PushClipRect(ImVec4(x1,-FLT_MAX,x2,+FLT_MAX)); } void ImGui::Columns(int columns_count, const char* id, bool border) { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); if (window->DC.ColumnsCount != 1) { if (window->DC.ColumnsCurrent != 0) ItemSize(ImVec2(0,0)); // Advance to column 0 ImGui::PopItemWidth(); PopClipRect(); window->DrawList->ChannelsMerge(); window->DC.ColumnsCellMaxY = ImMax(window->DC.ColumnsCellMaxY, window->DC.CursorPos.y); window->DC.CursorPos.y = window->DC.ColumnsCellMaxY; } // Draw columns borders and handle resize at the time of "closing" a columns set if (window->DC.ColumnsCount != columns_count && window->DC.ColumnsCount != 1 && window->DC.ColumnsShowBorders && !window->SkipItems) { const float y1 = window->DC.ColumnsStartPos.y; const float y2 = window->DC.CursorPos.y; for (int i = 1; i < window->DC.ColumnsCount; i++) { float x = window->Pos.x + GetColumnOffset(i); const ImGuiID column_id = window->DC.ColumnsSetID + ImGuiID(i); const ImRect column_rect(ImVec2(x-4,y1),ImVec2(x+4,y2)); if (IsClippedEx(column_rect, &column_id, false)) continue; bool hovered, held; ButtonBehavior(column_rect, column_id, &hovered, &held, true); if (hovered || held) g.MouseCursor = ImGuiMouseCursor_ResizeEW; // Draw before resize so our items positioning are in sync with the line being drawn const ImU32 col = window->Color(held ? ImGuiCol_ColumnActive : hovered ? ImGuiCol_ColumnHovered : ImGuiCol_Column); const float xi = (float)(int)x; window->DrawList->AddLine(ImVec2(xi, y1+1.0f), ImVec2(xi, y2), col); if (held) { if (g.ActiveIdIsJustActivated) g.ActiveClickDeltaToCenter.x = x - g.IO.MousePos.x; x = GetDraggedColumnOffset(i); SetColumnOffset(i, x); } } } // Set state for first column ImGui::PushID(0x11223344); // Differentiate column ID with an arbitrary/random prefix for cases where users name their columns set the same as another non-scope widget window->DC.ColumnsSetID = window->GetID(id ? id : ""); ImGui::PopID(); window->DC.ColumnsCurrent = 0; window->DC.ColumnsCount = columns_count; window->DC.ColumnsShowBorders = border; window->DC.ColumnsStartPos = window->DC.CursorPos; window->DC.ColumnsCellMinY = window->DC.ColumnsCellMaxY = window->DC.CursorPos.y; window->DC.ColumnsOffsetX = 0.0f; window->DC.CursorPos.x = (float)(int)(window->Pos.x + window->DC.ColumnsStartX + window->DC.ColumnsOffsetX); if (window->DC.ColumnsCount != 1) { // Cache column offsets window->DC.ColumnsOffsetsT.resize(columns_count + 1); for (int column_index = 0; column_index < columns_count + 1; column_index++) { const ImGuiID column_id = window->DC.ColumnsSetID + ImGuiID(column_index); KeepAliveID(column_id); const float default_t = column_index / (float)window->DC.ColumnsCount; const float t = window->DC.StateStorage->GetFloat(column_id, default_t); // Cheaply store our floating point value inside the integer (could store an union into the map?) window->DC.ColumnsOffsetsT[column_index] = t; } window->DrawList->ChannelsSplit(window->DC.ColumnsCount); PushColumnClipRect(); ImGui::PushItemWidth(ImGui::GetColumnWidth() * 0.65f); } else { window->DC.ColumnsOffsetsT.resize(2); window->DC.ColumnsOffsetsT[0] = 0.0f; window->DC.ColumnsOffsetsT[1] = 1.0f; } } void ImGui::Indent() { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); window->DC.ColumnsStartX += g.Style.IndentSpacing; window->DC.CursorPos.x = window->Pos.x + window->DC.ColumnsStartX + window->DC.ColumnsOffsetX; } void ImGui::Unindent() { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); window->DC.ColumnsStartX -= g.Style.IndentSpacing; window->DC.CursorPos.x = window->Pos.x + window->DC.ColumnsStartX + window->DC.ColumnsOffsetX; } void ImGui::TreePush(const char* str_id) { ImGuiWindow* window = GetCurrentWindow(); ImGui::Indent(); window->DC.TreeDepth++; PushID(str_id ? str_id : "#TreePush"); } void ImGui::TreePush(const void* ptr_id) { ImGuiWindow* window = GetCurrentWindow(); ImGui::Indent(); window->DC.TreeDepth++; PushID(ptr_id ? ptr_id : (const void*)"#TreePush"); } void ImGui::TreePop() { ImGuiWindow* window = GetCurrentWindow(); ImGui::Unindent(); window->DC.TreeDepth--; PopID(); } void ImGui::Value(const char* prefix, bool b) { ImGui::Text("%s: %s", prefix, (b ? "true" : "false")); } void ImGui::Value(const char* prefix, int v) { ImGui::Text("%s: %d", prefix, v); } void ImGui::Value(const char* prefix, unsigned int v) { ImGui::Text("%s: %d", prefix, v); } void ImGui::Value(const char* prefix, float v, const char* float_format) { if (float_format) { char fmt[64]; ImFormatString(fmt, IM_ARRAYSIZE(fmt), "%%s: %s", float_format); ImGui::Text(fmt, prefix, v); } else { ImGui::Text("%s: %.3f", prefix, v); } } // FIXME: May want to remove those helpers? void ImGui::Color(const char* prefix, const ImVec4& v) { ImGui::Text("%s: (%.2f,%.2f,%.2f,%.2f)", prefix, v.x, v.y, v.z, v.w); ImGui::SameLine(); ImGui::ColorButton(v, true); } void ImGui::Color(const char* prefix, unsigned int v) { ImGui::Text("%s: %08X", prefix, v); ImGui::SameLine(); ImVec4 col; col.x = (float)((v >> 0) & 0xFF) / 255.0f; col.y = (float)((v >> 8) & 0xFF) / 255.0f; col.z = (float)((v >> 16) & 0xFF) / 255.0f; col.w = (float)((v >> 24) & 0xFF) / 255.0f; ImGui::ColorButton(col, true); } //----------------------------------------------------------------------------- // PLATFORM DEPENDANT HELPERS //----------------------------------------------------------------------------- #if defined(_WIN32) && !defined(_WINDOWS_) && (!defined(IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCS) || !defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCS)) #undef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #include <windows.h> #endif // Win32 API clipboard implementation #if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCS) #ifdef _MSC_VER #pragma comment(lib, "user32") #endif static const char* GetClipboardTextFn_DefaultImpl() { static char* buf_local = NULL; if (buf_local) { ImGui::MemFree(buf_local); buf_local = NULL; } if (!OpenClipboard(NULL)) return NULL; HANDLE wbuf_handle = GetClipboardData(CF_UNICODETEXT); if (wbuf_handle == NULL) return NULL; if (ImWchar* wbuf_global = (ImWchar*)GlobalLock(wbuf_handle)) { int buf_len = ImTextCountUtf8BytesFromStr(wbuf_global, NULL) + 1; buf_local = (char*)ImGui::MemAlloc(buf_len * sizeof(char)); ImTextStrToUtf8(buf_local, buf_len, wbuf_global, NULL); } GlobalUnlock(wbuf_handle); CloseClipboard(); return buf_local; } static void SetClipboardTextFn_DefaultImpl(const char* text) { if (!OpenClipboard(NULL)) return; const int wbuf_length = ImTextCountCharsFromUtf8(text, NULL) + 1; HGLOBAL wbuf_handle = GlobalAlloc(GMEM_MOVEABLE, (SIZE_T)wbuf_length * sizeof(ImWchar)); if (wbuf_handle == NULL) return; ImWchar* wbuf_global = (ImWchar*)GlobalLock(wbuf_handle); ImTextStrFromUtf8(wbuf_global, wbuf_length, text, NULL); GlobalUnlock(wbuf_handle); EmptyClipboard(); SetClipboardData(CF_UNICODETEXT, wbuf_handle); CloseClipboard(); } #else // Local ImGui-only clipboard implementation, if user hasn't defined better clipboard handlers static const char* GetClipboardTextFn_DefaultImpl() { return GImGui->PrivateClipboard; } // Local ImGui-only clipboard implementation, if user hasn't defined better clipboard handlers static void SetClipboardTextFn_DefaultImpl(const char* text) { ImGuiState& g = *GImGui; if (g.PrivateClipboard) { ImGui::MemFree(g.PrivateClipboard); g.PrivateClipboard = NULL; } const char* text_end = text + strlen(text); g.PrivateClipboard = (char*)ImGui::MemAlloc((size_t)(text_end - text) + 1); memcpy(g.PrivateClipboard, text, (size_t)(text_end - text)); g.PrivateClipboard[(int)(text_end - text)] = 0; } #endif // Win32 API IME support (for Asian languages, etc.) #if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCS) #include <imm.h> #ifdef _MSC_VER #pragma comment(lib, "imm32") #endif static void ImeSetInputScreenPosFn_DefaultImpl(int x, int y) { // Notify OS Input Method Editor of text input position if (HWND hwnd = (HWND)GImGui->IO.ImeWindowHandle) if (HIMC himc = ImmGetContext(hwnd)) { COMPOSITIONFORM cf; cf.ptCurrentPos.x = x; cf.ptCurrentPos.y = y; cf.dwStyle = CFS_FORCE_POSITION; ImmSetCompositionWindow(himc, &cf); } } #else static void ImeSetInputScreenPosFn_DefaultImpl(int, int) {} #endif //----------------------------------------------------------------------------- // HELP //----------------------------------------------------------------------------- void ImGui::ShowMetricsWindow(bool* opened) { if (ImGui::Begin("ImGui Metrics", opened)) { ImGui::Text("ImGui %s", ImGui::GetVersion()); ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate); ImGui::Text("%d vertices, %d indices (%d triangles)", ImGui::GetIO().MetricsRenderVertices, ImGui::GetIO().MetricsRenderIndices, ImGui::GetIO().MetricsRenderIndices / 3); ImGui::Text("%d allocations", ImGui::GetIO().MetricsAllocs); static bool show_clip_rects = true; ImGui::Checkbox("Show clipping rectangles when hovering a ImDrawCmd", &show_clip_rects); ImGui::Separator(); struct Funcs { static void NodeDrawList(ImDrawList* draw_list, const char* label) { bool node_opened = ImGui::TreeNode(draw_list, "%s: '%s' %d vtx, %d indices, %d cmds", label, draw_list->_OwnerName ? draw_list->_OwnerName : "", draw_list->VtxBuffer.Size, draw_list->IdxBuffer.Size, draw_list->CmdBuffer.Size); if (draw_list == ImGui::GetWindowDrawList()) { ImGui::SameLine(); ImGui::TextColored(ImColor(255,100,100), "CURRENTLY APPENDING"); // Can't display stats for active draw list! (we don't have the data double-buffered) } if (!node_opened) return; int elem_offset = 0; for (const ImDrawCmd* pcmd = draw_list->CmdBuffer.begin(); pcmd < draw_list->CmdBuffer.end(); elem_offset += pcmd->ElemCount, pcmd++) { if (pcmd->UserCallback) ImGui::BulletText("Callback %p, user_data %p", pcmd->UserCallback, pcmd->UserCallbackData); else { ImGui::BulletText("Draw %d indexed vtx, tex = %p, clip_rect = (%.0f,%.0f)..(%.0f,%.0f)", pcmd->ElemCount, pcmd->TextureId, pcmd->ClipRect.x, pcmd->ClipRect.y, pcmd->ClipRect.z, pcmd->ClipRect.w); if (show_clip_rects && ImGui::IsItemHovered()) { ImRect clip_rect = pcmd->ClipRect; ImRect vtxs_rect; for (int i = elem_offset; i < elem_offset + (int)pcmd->ElemCount; i++) vtxs_rect.Add(draw_list->VtxBuffer[draw_list->IdxBuffer[i]].pos); GImGui->OverlayDrawList.PushClipRectFullScreen(); clip_rect.Round(); GImGui->OverlayDrawList.AddRect(clip_rect.Min, clip_rect.Max, ImColor(255,255,0)); vtxs_rect.Round(); GImGui->OverlayDrawList.AddRect(vtxs_rect.Min, vtxs_rect.Max, ImColor(255,0,255)); GImGui->OverlayDrawList.PopClipRect(); } } } ImGui::TreePop(); } static void NodeWindows(ImVector<ImGuiWindow*>& windows, const char* label) { if (!ImGui::TreeNode(label, "%s (%d)", label, windows.Size)) return; for (int i = 0; i < windows.Size; i++) Funcs::NodeWindow(windows[i], "Window"); ImGui::TreePop(); } static void NodeWindow(ImGuiWindow* window, const char* label) { if (!ImGui::TreeNode(window, "%s '%s', %d @ 0x%p", label, window->Name, window->Active || window->WasActive, window)) return; NodeDrawList(window->DrawList, "DrawList"); if (window->RootWindow != window) NodeWindow(window->RootWindow, "RootWindow"); if (window->DC.ChildWindows.Size > 0) NodeWindows(window->DC.ChildWindows, "ChildWindows"); ImGui::BulletText("Storage: %d bytes", window->StateStorage.Data.Size * (int)sizeof(ImGuiStorage::Pair)); ImGui::TreePop(); } }; ImGuiState& g = *GImGui; // Access private state g.DisableHideTextAfterDoubleHash++; // Not exposed (yet). Disable processing that hides text after '##' markers. Funcs::NodeWindows(g.Windows, "Windows"); if (ImGui::TreeNode("DrawList", "Active DrawLists (%d)", g.RenderDrawLists[0].Size)) { for (int i = 0; i < g.RenderDrawLists[0].Size; i++) Funcs::NodeDrawList(g.RenderDrawLists[0][i], "DrawList"); ImGui::TreePop(); } if (ImGui::TreeNode("Popups", "Opened Popups Stack (%d)", g.OpenedPopupStack.Size)) { for (int i = 0; i < g.OpenedPopupStack.Size; i++) { ImGuiWindow* window = g.OpenedPopupStack[i].Window; ImGui::BulletText("PopupID: %08x, Window: '%s'%s%s", g.OpenedPopupStack[i].PopupID, window ? window->Name : "NULL", window && (window->Flags & ImGuiWindowFlags_ChildWindow) ? " ChildWindow" : "", window && (window->Flags & ImGuiWindowFlags_ChildMenu) ? " ChildMenu" : ""); } ImGui::TreePop(); } if (ImGui::TreeNode("Basic state")) { ImGui::Text("FocusedWindow: '%s'", g.FocusedWindow ? g.FocusedWindow->Name : "NULL"); ImGui::Text("HoveredWindow: '%s'", g.HoveredWindow ? g.HoveredWindow->Name : "NULL"); ImGui::Text("HoveredRootWindow: '%s'", g.HoveredRootWindow ? g.HoveredRootWindow->Name : "NULL"); ImGui::Text("HoveredID: 0x%08X/0x%08X", g.HoveredId, g.HoveredIdPreviousFrame); // Data is "in-flight" so depending on when the Metrics window is called we may see current frame information or not ImGui::Text("ActiveID: 0x%08X/0x%08X", g.ActiveId, g.ActiveIdPreviousFrame); ImGui::TreePop(); } g.DisableHideTextAfterDoubleHash--; } ImGui::End(); } //----------------------------------------------------------------------------- //---- Include imgui_user.inl at the end of imgui.cpp //---- So you can include code that extends ImGui using its private data/functions. #ifdef IMGUI_INCLUDE_IMGUI_USER_INL #include "imgui_user.inl" #endif //-----------------------------------------------------------------------------
[ "dade916@gmail.com" ]
dade916@gmail.com
07d82f4acd9900b2d5cbea6ed0920419922ef9f7
f6439b5ed1614fd8db05fa963b47765eae225eb5
/media/cast/test/simulator.cc
135d44bb45c85c9193e08dd213b19c94dc8494f3
[ "BSD-3-Clause" ]
permissive
aranajhonny/chromium
b8a3c975211e1ea2f15b83647b4d8eb45252f1be
caf5bcb822f79b8997720e589334266551a50a13
refs/heads/master
2021-05-11T00:20:34.020261
2018-01-21T03:31:45
2018-01-21T03:31:45
118,301,142
2
0
null
null
null
null
UTF-8
C++
false
false
16,077
cc
// Copyright 2014 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. // Simulate end to end streaming. // // Input: // --source= // WebM used as the source of video and audio frames. // --output= // File path to writing out the raw event log of the simulation session. // --sim-id= // Unique simulation ID. // // Output: // - Raw event log of the simulation session tagged with the unique test ID, // written out to the specified file path. #include "base/at_exit.h" #include "base/base_paths.h" #include "base/command_line.h" #include "base/file_util.h" #include "base/files/file_path.h" #include "base/files/memory_mapped_file.h" #include "base/files/scoped_file.h" #include "base/json/json_writer.h" #include "base/logging.h" #include "base/path_service.h" #include "base/test/simple_test_tick_clock.h" #include "base/thread_task_runner_handle.h" #include "base/time/tick_clock.h" #include "base/values.h" #include "media/base/audio_bus.h" #include "media/base/media.h" #include "media/base/video_frame.h" #include "media/cast/cast_config.h" #include "media/cast/cast_environment.h" #include "media/cast/cast_receiver.h" #include "media/cast/cast_sender.h" #include "media/cast/logging/encoding_event_subscriber.h" #include "media/cast/logging/log_serializer.h" #include "media/cast/logging/logging_defines.h" #include "media/cast/logging/proto/raw_events.pb.h" #include "media/cast/logging/raw_event_subscriber_bundle.h" #include "media/cast/logging/simple_event_subscriber.h" #include "media/cast/net/cast_transport_config.h" #include "media/cast/net/cast_transport_defines.h" #include "media/cast/net/cast_transport_sender.h" #include "media/cast/net/cast_transport_sender_impl.h" #include "media/cast/test/fake_media_source.h" #include "media/cast/test/fake_single_thread_task_runner.h" #include "media/cast/test/loopback_transport.h" #include "media/cast/test/proto/network_simulation_model.pb.h" #include "media/cast/test/skewed_tick_clock.h" #include "media/cast/test/utility/audio_utility.h" #include "media/cast/test/utility/default_config.h" #include "media/cast/test/utility/test_util.h" #include "media/cast/test/utility/udp_proxy.h" #include "media/cast/test/utility/video_utility.h" using media::cast::proto::IPPModel; using media::cast::proto::NetworkSimulationModel; using media::cast::proto::NetworkSimulationModelType; namespace media { namespace cast { namespace { const int kTargetDelay = 300; const char kSourcePath[] = "source"; const char kModelPath[] = "model"; const char kOutputPath[] = "output"; const char kSimulationId[] = "sim-id"; const char kLibDir[] = "lib-dir"; void UpdateCastTransportStatus(CastTransportStatus status) { LOG(INFO) << "Cast transport status: " << status; } void AudioInitializationStatus(CastInitializationStatus status) { LOG(INFO) << "Audio status: " << status; } void VideoInitializationStatus(CastInitializationStatus status) { LOG(INFO) << "Video status: " << status; } void LogTransportEvents(const scoped_refptr<CastEnvironment>& env, const std::vector<PacketEvent>& packet_events, const std::vector<FrameEvent>& frame_events) { for (std::vector<media::cast::PacketEvent>::const_iterator it = packet_events.begin(); it != packet_events.end(); ++it) { env->Logging()->InsertPacketEvent(it->timestamp, it->type, it->media_type, it->rtp_timestamp, it->frame_id, it->packet_id, it->max_packet_id, it->size); } for (std::vector<media::cast::FrameEvent>::const_iterator it = frame_events.begin(); it != frame_events.end(); ++it) { if (it->type == FRAME_PLAYOUT) { env->Logging()->InsertFrameEventWithDelay( it->timestamp, it->type, it->media_type, it->rtp_timestamp, it->frame_id, it->delay_delta); } else { env->Logging()->InsertFrameEvent( it->timestamp, it->type, it->media_type, it->rtp_timestamp, it->frame_id); } } } void GotVideoFrame( int* counter, CastReceiver* cast_receiver, const scoped_refptr<media::VideoFrame>& video_frame, const base::TimeTicks& render_time, bool continuous) { ++*counter; cast_receiver->RequestDecodedVideoFrame( base::Bind(&GotVideoFrame, counter, cast_receiver)); } void GotAudioFrame( int* counter, CastReceiver* cast_receiver, scoped_ptr<AudioBus> audio_bus, const base::TimeTicks& playout_time, bool is_continuous) { ++*counter; cast_receiver->RequestDecodedAudioFrame( base::Bind(&GotAudioFrame, counter, cast_receiver)); } void AppendLog(EncodingEventSubscriber* subscriber, const std::string& extra_data, const base::FilePath& output_path) { media::cast::proto::LogMetadata metadata; metadata.set_extra_data(extra_data); media::cast::FrameEventList frame_events; media::cast::PacketEventList packet_events; subscriber->GetEventsAndReset( &metadata, &frame_events, &packet_events); media::cast::proto::GeneralDescription* gen_desc = metadata.mutable_general_description(); gen_desc->set_product("Cast Simulator"); gen_desc->set_product_version("0.1"); scoped_ptr<char[]> serialized_log(new char[media::cast::kMaxSerializedBytes]); int output_bytes; bool success = media::cast::SerializeEvents(metadata, frame_events, packet_events, true, media::cast::kMaxSerializedBytes, serialized_log.get(), &output_bytes); if (!success) { LOG(ERROR) << "Failed to serialize log."; return; } if (AppendToFile(output_path, serialized_log.get(), output_bytes) == -1) { LOG(ERROR) << "Failed to append to log."; } } // Run simulation once. // // |output_path| is the path to write serialized log. // |extra_data| is extra tagging information to write to log. void RunSimulation(const base::FilePath& source_path, const base::FilePath& output_path, const std::string& extra_data, const NetworkSimulationModel& model) { // Fake clock. Make sure start time is non zero. base::SimpleTestTickClock testing_clock; testing_clock.Advance(base::TimeDelta::FromSeconds(1)); // Task runner. scoped_refptr<test::FakeSingleThreadTaskRunner> task_runner = new test::FakeSingleThreadTaskRunner(&testing_clock); base::ThreadTaskRunnerHandle task_runner_handle(task_runner); // CastEnvironments. scoped_refptr<CastEnvironment> sender_env = new CastEnvironment( scoped_ptr<base::TickClock>( new test::SkewedTickClock(&testing_clock)).Pass(), task_runner, task_runner, task_runner); scoped_refptr<CastEnvironment> receiver_env = new CastEnvironment( scoped_ptr<base::TickClock>( new test::SkewedTickClock(&testing_clock)).Pass(), task_runner, task_runner, task_runner); // Event subscriber. Store at most 1 hour of events. EncodingEventSubscriber audio_event_subscriber(AUDIO_EVENT, 100 * 60 * 60); EncodingEventSubscriber video_event_subscriber(VIDEO_EVENT, 30 * 60 * 60); sender_env->Logging()->AddRawEventSubscriber(&audio_event_subscriber); sender_env->Logging()->AddRawEventSubscriber(&video_event_subscriber); // Audio sender config. AudioSenderConfig audio_sender_config = GetDefaultAudioSenderConfig(); audio_sender_config.target_playout_delay = base::TimeDelta::FromMilliseconds(kTargetDelay); // Audio receiver config. FrameReceiverConfig audio_receiver_config = GetDefaultAudioReceiverConfig(); audio_receiver_config.rtp_max_delay_ms = audio_sender_config.target_playout_delay.InMilliseconds(); // Video sender config. VideoSenderConfig video_sender_config = GetDefaultVideoSenderConfig(); video_sender_config.max_bitrate = 4000000; video_sender_config.min_bitrate = 2000000; video_sender_config.start_bitrate = 4000000; video_sender_config.target_playout_delay = base::TimeDelta::FromMilliseconds(kTargetDelay); // Video receiver config. FrameReceiverConfig video_receiver_config = GetDefaultVideoReceiverConfig(); video_receiver_config.rtp_max_delay_ms = video_sender_config.target_playout_delay.InMilliseconds(); // Loopback transport. LoopBackTransport receiver_to_sender(receiver_env); LoopBackTransport sender_to_receiver(sender_env); // Cast receiver. scoped_ptr<CastReceiver> cast_receiver( CastReceiver::Create(receiver_env, audio_receiver_config, video_receiver_config, &receiver_to_sender)); // Cast sender and transport sender. scoped_ptr<CastTransportSender> transport_sender( new CastTransportSenderImpl( NULL, &testing_clock, net::IPEndPoint(), base::Bind(&UpdateCastTransportStatus), base::Bind(&LogTransportEvents, sender_env), base::TimeDelta::FromSeconds(1), task_runner, &sender_to_receiver)); scoped_ptr<CastSender> cast_sender( CastSender::Create(sender_env, transport_sender.get())); // Build packet pipe. if (model.type() != media::cast::proto::INTERRUPTED_POISSON_PROCESS) { LOG(ERROR) << "Unknown model type " << model.type() << "."; return; } const IPPModel& ipp_model = model.ipp(); std::vector<double> average_rates(ipp_model.average_rate_size()); std::copy(ipp_model.average_rate().begin(), ipp_model.average_rate().end(), average_rates.begin()); test::InterruptedPoissonProcess ipp(average_rates, ipp_model.coef_burstiness(), ipp_model.coef_variance(), 0); // Connect sender to receiver. This initializes the pipe. receiver_to_sender.Initialize( ipp.NewBuffer(128 * 1024), transport_sender->PacketReceiverForTesting(), task_runner, &testing_clock); sender_to_receiver.Initialize( ipp.NewBuffer(128 * 1024), cast_receiver->packet_receiver(), task_runner, &testing_clock); // Start receiver. int audio_frame_count = 0; int video_frame_count = 0; cast_receiver->RequestDecodedVideoFrame( base::Bind(&GotVideoFrame, &video_frame_count, cast_receiver.get())); cast_receiver->RequestDecodedAudioFrame( base::Bind(&GotAudioFrame, &audio_frame_count, cast_receiver.get())); FakeMediaSource media_source(task_runner, &testing_clock, video_sender_config); // Initializing audio and video senders. cast_sender->InitializeAudio(audio_sender_config, base::Bind(&AudioInitializationStatus)); cast_sender->InitializeVideo(media_source.get_video_config(), base::Bind(&VideoInitializationStatus), CreateDefaultVideoEncodeAcceleratorCallback(), CreateDefaultVideoEncodeMemoryCallback()); // Start sending. if (!source_path.empty()) { // 0 means using the FPS from the file. media_source.SetSourceFile(source_path, 0); } media_source.Start(cast_sender->audio_frame_input(), cast_sender->video_frame_input()); // Run for 3 minutes. base::TimeDelta elapsed_time; while (elapsed_time.InMinutes() < 3) { // Each step is 100us. base::TimeDelta step = base::TimeDelta::FromMicroseconds(100); task_runner->Sleep(step); elapsed_time += step; } LOG(INFO) << "Audio frame count: " << audio_frame_count; LOG(INFO) << "Video frame count: " << video_frame_count; LOG(INFO) << "Writing log: " << output_path.value(); // Truncate file and then write serialized log. { base::ScopedFILE file(base::OpenFile(output_path, "wb")); if (!file.get()) { LOG(INFO) << "Cannot write to log."; return; } } AppendLog(&video_event_subscriber, extra_data, output_path); AppendLog(&audio_event_subscriber, extra_data, output_path); } NetworkSimulationModel DefaultModel() { NetworkSimulationModel model; model.set_type(cast::proto::INTERRUPTED_POISSON_PROCESS); IPPModel* ipp = model.mutable_ipp(); ipp->set_coef_burstiness(0.609); ipp->set_coef_variance(4.1); ipp->add_average_rate(0.609); ipp->add_average_rate(0.495); ipp->add_average_rate(0.561); ipp->add_average_rate(0.458); ipp->add_average_rate(0.538); ipp->add_average_rate(0.513); ipp->add_average_rate(0.585); ipp->add_average_rate(0.592); ipp->add_average_rate(0.658); ipp->add_average_rate(0.556); ipp->add_average_rate(0.371); ipp->add_average_rate(0.595); ipp->add_average_rate(0.490); ipp->add_average_rate(0.980); ipp->add_average_rate(0.781); ipp->add_average_rate(0.463); return model; } bool IsModelValid(const NetworkSimulationModel& model) { if (!model.has_type()) return false; NetworkSimulationModelType type = model.type(); if (type == media::cast::proto::INTERRUPTED_POISSON_PROCESS) { if (!model.has_ipp()) return false; const IPPModel& ipp = model.ipp(); if (ipp.coef_burstiness() <= 0.0 || ipp.coef_variance() <= 0.0) return false; if (ipp.average_rate_size() == 0) return false; for (int i = 0; i < ipp.average_rate_size(); i++) { if (ipp.average_rate(i) <= 0.0) return false; } } return true; } NetworkSimulationModel LoadModel(const base::FilePath& model_path) { if (model_path.empty()) { LOG(ERROR) << "Model path not set."; return DefaultModel(); } std::string model_str; if (!base::ReadFileToString(model_path, &model_str)) { LOG(ERROR) << "Failed to read model file."; return DefaultModel(); } NetworkSimulationModel model; if (!model.ParseFromString(model_str)) { LOG(ERROR) << "Failed to parse model."; return DefaultModel(); } if (!IsModelValid(model)) { LOG(ERROR) << "Invalid model."; return DefaultModel(); } return model; } } // namespace } // namespace cast } // namespace media int main(int argc, char** argv) { base::AtExitManager at_exit; CommandLine::Init(argc, argv); InitLogging(logging::LoggingSettings()); const CommandLine* cmd = CommandLine::ForCurrentProcess(); base::FilePath media_path = cmd->GetSwitchValuePath(media::cast::kLibDir); if (media_path.empty()) { if (!PathService::Get(base::DIR_MODULE, &media_path)) { LOG(ERROR) << "Failed to load FFmpeg."; return 1; } } if (!media::InitializeMediaLibrary(media_path)) { LOG(ERROR) << "Failed to initialize FFmpeg."; return 1; } base::FilePath source_path = cmd->GetSwitchValuePath( media::cast::kSourcePath); base::FilePath output_path = cmd->GetSwitchValuePath( media::cast::kOutputPath); if (output_path.empty()) { base::GetTempDir(&output_path); output_path = output_path.AppendASCII("sim-events.gz"); } std::string sim_id = cmd->GetSwitchValueASCII(media::cast::kSimulationId); NetworkSimulationModel model = media::cast::LoadModel( cmd->GetSwitchValuePath(media::cast::kModelPath)); base::DictionaryValue values; values.SetBoolean("sim", true); values.SetString("sim-id", sim_id); std::string extra_data; base::JSONWriter::Write(&values, &extra_data); // Run. media::cast::RunSimulation(source_path, output_path, extra_data, model); return 0; }
[ "jhonnyjosearana@gmail.com" ]
jhonnyjosearana@gmail.com
b770c70ea56b21e9fa1f0576a6669710d57dbb75
1da97fb728403a850d805a8f676695b587572550
/Physics3D_class6/PhysBody3D.h
2d0d1711ee4068c066ea2a7bc3f03a3795a5fcf2
[]
no_license
The4Bros/Ausias-Grand-Prix
f4191c21345adc1dfba93af6ede905fe8f180f60
3979e7f4e360f183caf13e0708dda7ad902de412
refs/heads/master
2021-09-08T20:09:43.982696
2015-12-18T11:13:16
2015-12-18T11:13:16
47,927,054
0
0
null
null
null
null
UTF-8
C++
false
false
734
h
#ifndef __PhysBody3D_H__ #define __PhysBody3D_H__ #include "p2List.h" class btRigidBody; class Module; // ================================================= struct PhysBody3D { friend class ModulePhysics3D; public: PhysBody3D(btRigidBody* body); ~PhysBody3D(); void Push(float x, float y, float z); void GetTransform(float* matrix) const; void SetTransform(const float* matrix) const; void SetPos(float x, float y, float z); void SetAsSensor(bool is_sensor); bool IsSensor() const; void SetAngularSpeed(float x, float y, float z); void SetLinearSpeed(float x, float y, float z); private: btRigidBody* body = nullptr; bool is_sensor = false; public: p2List<Module*> collision_listeners; }; #endif // __PhysBody3D_H__
[ "ausi_dalmau@hotmail.com" ]
ausi_dalmau@hotmail.com
47da3301feff22bccba20d88ca51b840ea100934
b53bdc4576f948e6066bbead8a93451fa1598726
/Luogu/ShengXuan/P6563(2).cpp
832c62090f929112942c24ac88bb06f44356e01e
[]
no_license
Clouder0/AlgorithmPractice
da2e28cb60d19fe7a99e9f3d1ba99810897244a4
42faedfd9eb49d6df3d8031d883784c3514a7e8b
refs/heads/main
2023-07-08T11:07:17.631345
2023-07-06T12:15:33
2023-07-06T12:15:33
236,957,049
0
0
null
null
null
null
UTF-8
C++
false
false
1,198
cpp
#include <cstdio> #include <algorithm> using namespace std; const long long inf = 1ll << 60; const int maxn = 7200; int T,n,a[maxn]; long long f[maxn][maxn]; int q[maxn],qt,qh; int main() { scanf("%d",&T); while(T--) { scanf("%d",&n); for (int i = 1; i <= n; ++i) scanf("%d",a + i); for (int i = 1; i <= n; ++i) for (int j = i + 1; j <= n; ++j) f[j][i] = inf; for (int r = 2; r <= n; ++r) { qh = qt = 1, q[1] = r - 1, f[r][r - 1] = a[r - 1]; for (int l = r - 2, p = r; l > 0; --l) { while (p > l && f[p - 1][l] > f[r][p]) --p; //x in [l,p - 1] f[l][x] <= f[x + 1][r] //x in [p,r] f[l][x] > f[x + 1][r] //l <-,p <- f[r][l] = a[p] + f[p][l]; while (qt >= qh && q[qh] >= p) ++qh;//should in [l,p - 1] if (qt >= qh) f[r][l] = min(f[r][l], f[r][q[qh] + 1] + a[q[qh]]); while (qt >= qh && f[r][q[qt] + 1] + a[q[qt]] >= f[r][l + 1] + a[l]) --qt; q[++qt] = l; } } printf("%lld\n",f[n][1]); } return 0; }
[ "clouder0@outlook.com" ]
clouder0@outlook.com
a7d1cd559d6a26c8e219b43f0bf1171c918b657c
007d63d4cb49676fd678840a3e1244ad63bdb121
/released_plugins_more/visiocyte_plugins/neuron_assemble_live/assemble_neuron_live_dialog.h
329f9115c4d00223af493f8a67dc5b65c5dd2a13
[ "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
permissive
satya-arjunan/visiocyte
1a09cc886b92ca10c80b21d43220b33c6009e079
891404d83d844ae94ee8f1cea1bb14deba588c4f
refs/heads/master
2020-04-23T02:07:33.357029
2019-04-08T06:40:03
2019-04-08T06:40:03
170,835,824
0
0
null
null
null
null
UTF-8
C++
false
false
5,588
h
#ifndef ASSEMBEL_NEURON_LIVE_DIALOG_H #define ASSEMBEL_NEURON_LIVE_DIALOG_H #ifndef __ALLOW_VR_FUNCS__ #define __ALLOW_VR_FUNCS__ #endif #include <QDialog> #include <QtGui> #include "visiocyte_interface.h" #include <map> #include "../terastitcher/src/core/imagemanager/VirtualVolume.h" #define WINNAME_ASSEM "assemble_swc_file" using namespace std; using namespace iim; typedef struct NOI{ VISIOCYTELONG n; //the id of noi, match with the n variable of node VISIOCYTELONG cid; //fragment component id int type; //type information float x, y, z; // point coordinates union{ float r; // radius float radius; }; QList<float> fea_val; //feature values QSet<NOI *> conn; //connections from NOI long seg_id; long level; }NOI; typedef QHash<VISIOCYTELONG, NOI*>::iterator NodeIter; class assemble_neuron_live_dialog : public QDialog { Q_OBJECT public: assemble_neuron_live_dialog(VISIOCYTEPluginCallback2 * callback, QList<NeuronTree> &ntList, Image4DSimple * p_img4d, LandmarkList marklist, QWidget *parent = 0); VISIOCYTEPluginCallback2 * callback; NeuronTree nt; NeuronTree nt_original; LandmarkList marklist; VISIOCYTELONG prev_root; QHash<VISIOCYTELONG, NOI*> nodes; int coffset; VISIOCYTELONG noffset; Image4DSimple * p_img4d; QString winname_main, winname_3d, winname_roi,terafly_folder; QPushButton * btn_link, *btn_loop, *btn_manuallink, *btn_deletelink, *btn_connect, *btn_connectall, *btn_syncmarker, *btn_break, * btn_save, * btn_quit, *btn_zoomin, *btn_syncmarkeronly, *btn_findtips, *btn_synctips, *btn_savetips, *btn_updatetips; QTabWidget * tab; QListWidget * list_edge, * list_link, *list_marker, *list_tips; QComboBox * cb_color; QCheckBox * check_loop, * check_zoomin; QSpinBox * spin_zoomin; VirtualVolume* dataTerafly; QStringList list_tips_information; VISIOCYTELONG x_min, x_max, y_min, y_max, z_min, z_max; //ROI window signals: public slots: void setColor(int i); void syncMarker(); void syncMarkerOnly(); void pairMarker(); void delPair(); void connectPair(); void connectAll(); void breakEdge(); void searchPair(); void searchLoop(); void sortsaveSWC(); void highlightPair(); void highlightEdge(); void zoomin(); void findTips(); void syncTips(); void saveTips(); void updateTips(); private: void creat(QWidget *parent); void initNeuron(QList<NeuronTree> &ntList_in); bool connectNode(VISIOCYTELONG pid1, VISIOCYTELONG pid2); bool breakNode(VISIOCYTELONG pid1, VISIOCYTELONG pid2); QSet<QPair<VISIOCYTELONG, VISIOCYTELONG> > searchConnection(double xscale, double yscale, double zscale, double angThr, double disThr, int matchType, bool b_minusradius); double getNeuronDiameter(); LandmarkList * getMarkerList(); void updateDisplay(); //deep refresh everything void update3DView(); //light refresh 3D window visiocytehandle getImageWindow(); //return the handle if window is open, otherwise 0 visiocytehandle checkImageWindow(); //if window not opened, open it. return the handle visiocytehandle updateImageWindow(); //deep refresh image window VisiocyteR_MainWindow * get3DWindow(); //return the handle if window is open, otherwise 0 VisiocyteR_MainWindow * check3DWindow(); //if window not opened, open it. return the handle VisiocyteR_MainWindow * update3DWindow(); //deep refresh 3D window void updateROIWindow(const QList<VISIOCYTELONG>& pids); void updateColor(); //update the neuron type, will sync neuron if changed }; class pair_marker_dialog : public QDialog { Q_OBJECT public: pair_marker_dialog(LandmarkList * mList,QWidget *parent = 0); QListWidget * list1, * list2; QPushButton * btn_yes, *btn_no; }; class connect_param_dialog : public QDialog { Q_OBJECT public: connect_param_dialog(); ~connect_param_dialog(); private: void creat(); void initDlg(); public slots: void myconfig(); public: QGridLayout *gridLayout; QDoubleSpinBox *spin_zscale, *spin_xscale, *spin_yscale, *spin_ang, *spin_dis; QPushButton *btn_quit, *btn_run; QComboBox *cb_distanceType, *cb_matchType, *cb_conf; QTextEdit* text_info; }; class sort_neuron_dialog : public QDialog { Q_OBJECT public: sort_neuron_dialog(LandmarkList * mList, VISIOCYTELONG prev_root, VISIOCYTELONG type1_root, QWidget *parent = 0); QComboBox * cb_marker; QPushButton * btn_yes, *btn_no; QRadioButton *radio_marker, *radio_type, *radio_prev; }; #define NTDIS(a,b) (((a).x-(b).x)*((a).x-(b).x)+((a).y-(b).y)*((a).y-(b).y)+((a).z-(b).z)*((a).z-(b).z)) #define NTDOT(a,b) ((a).x*(b).x+(a).y*(b).y+(a).z*(b).z) #define NTNORM(a) (sqrt((a).x*(a).x+(a).y*(a).y+(a).z*(a).z)) void update_marker_info(const LocationSimple& mk, QList<int>& info); //info[0]=point id, info[0]=matching point id void update_marker_info(const LocationSimple& mk, QList<int>& info, int* color); void set_marker_color(const LocationSimple& mk, RGB8 color); bool get_marker_info(const LocationSimple& mk, QList<int>& info); QList<NeuronSWC> generate_swc_typesort(QHash<VISIOCYTELONG, NOI*>& nodes, VISIOCYTELONG n_root); bool export_list2file(const QList<NeuronSWC>& lN, QString fileSaveName); QList<NOI *> search_loop(QHash<VISIOCYTELONG, NOI*>& nodes); #endif // ASSEMBEL_NEURON_LIVE_DIALOG_H
[ "satya.arjunan@gmail.com" ]
satya.arjunan@gmail.com
2733492e913b3bb9cb6cebe87cca2d51fb1707ef
627e86f245fef245380be69421669140ba9fd9b1
/ReactAndroid/src/main/java/com/facebook/react/turbomodule/core/jni/ReactCommon/TurboModuleManager.h
26be4a311341a1b758d06094f1f0df81e78723af
[ "CC-BY-4.0", "MIT", "CC-BY-NC-SA-4.0", "CC-BY-SA-4.0" ]
permissive
rashtell/react-native
3b840624fae3216187a5c0a3c3d1a578394018c8
1610c08a678cb3d352187076db68be4cf73e0a9a
refs/heads/master
2023-03-15T13:03:14.782409
2019-11-22T18:08:38
2019-11-22T18:10:38
223,503,867
2
0
MIT
2023-03-03T17:27:43
2019-11-22T23:38:32
null
UTF-8
C++
false
false
2,138
h
/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <memory> #include <unordered_map> #include <fb/fbjni.h> #include <jsi/jsi.h> #include <ReactCommon/TurboModule.h> #include <ReactCommon/JavaTurboModule.h> #include <react/jni/CxxModuleWrapper.h> #include <react/jni/JMessageQueueThread.h> #include <ReactCommon/CallInvokerHolder.h> #include <ReactCommon/TurboModuleManagerDelegate.h> namespace facebook { namespace react { class TurboModuleManager : public jni::HybridClass<TurboModuleManager> { public: static auto constexpr kJavaDescriptor = "Lcom/facebook/react/turbomodule/core/TurboModuleManager;"; static jni::local_ref<jhybriddata> initHybrid( jni::alias_ref<jhybridobject> jThis, jlong jsContext, jni::alias_ref<CallInvokerHolder::javaobject> jsCallInvokerHolder, jni::alias_ref<CallInvokerHolder::javaobject> nativeCallInvokerHolder, jni::alias_ref<TurboModuleManagerDelegate::javaobject> delegate ); static void registerNatives(); private: friend HybridBase; jni::global_ref<TurboModuleManager::javaobject> javaPart_; jsi::Runtime* runtime_; std::shared_ptr<CallInvoker> jsCallInvoker_; std::shared_ptr<CallInvoker> nativeCallInvoker_; jni::global_ref<TurboModuleManagerDelegate::javaobject> delegate_; using TurboModuleCache = std::unordered_map<std::string, std::shared_ptr<react::TurboModule>>; /** * TODO(T48018690): * All modules are currently long-lived. * We need to come up with a mechanism to allow modules to specify whether * they want to be long-lived or short-lived. */ std::shared_ptr<TurboModuleCache> turboModuleCache_; void installJSIBindings(); explicit TurboModuleManager( jni::alias_ref<TurboModuleManager::jhybridobject> jThis, jsi::Runtime *rt, std::shared_ptr<CallInvoker> jsCallInvoker, std::shared_ptr<CallInvoker> nativeCallInvoker, jni::alias_ref<TurboModuleManagerDelegate::javaobject> delegate ); }; } // namespace react } // namespace facebook
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
84b5013080a3f310c14084c339133386fe85503e
b23c01f6631cc3ce8a8e3d9bca4b2bb52bef3025
/lib/platform/unix.cpp
7debf495d3652d33f177e7a5c54517dfb2ee36a3
[ "Apache-2.0" ]
permissive
rayfesarm/tarmac-trace-utilities
491d3c91b9c8cf640f524c0ab363c7e1bdda4aba
14dc8502592a2313aac9451066d6cb8646bbfc2e
refs/heads/main
2023-05-07T19:46:59.461714
2021-06-02T15:11:12
2021-06-02T15:11:12
373,209,462
0
0
Apache-2.0
2021-06-02T15:05:19
2021-06-02T15:05:18
null
UTF-8
C++
false
false
3,054
cpp
/* * Copyright 2016-2021 Arm Limited. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * This file is part of Tarmac Trace Utilities */ #include "libtarmac/disktree.hh" #include "libtarmac/misc.hh" #include <errno.h> #include <string.h> #include <fcntl.h> #include <sys/mman.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> using std::string; bool get_file_timestamp(const string &filename, uint64_t *out_timestamp) { struct stat st; if (stat(filename.c_str(), &st) != 0) return false; *out_timestamp = static_cast<uint64_t>(st.st_mtime); return true; } bool is_interactive() { return isatty(1); } string get_error_message() { return strerror(errno); } struct MMapFile::PlatformData { int fd; }; MMapFile::MMapFile(const string &filename, bool writable) : filename(filename), writable(writable) { pdata = new PlatformData; pdata->fd = open(filename.c_str(), writable ? O_RDWR | O_CREAT : O_RDONLY, 0666); if (pdata->fd < 0) err(1, "%s: open", filename.c_str()); next_offset = lseek(pdata->fd, 0, SEEK_END); if (next_offset == (off_t)-1) err(1, "%s: lseek", filename.c_str()); curr_size = next_offset; mapping = nullptr; map(); } MMapFile::~MMapFile() { unmap(); if (writable) { if (ftruncate(pdata->fd, next_offset) < 0) err(1, "%s: ftruncate", filename.c_str()); } if (close(pdata->fd) < 0) err(1, "%s: close", filename.c_str()); delete pdata; } void MMapFile::map() { assert(!mapping); if (!curr_size) return; mapping = mmap(NULL, curr_size, PROT_READ | (writable ? PROT_WRITE : 0), MAP_SHARED, pdata->fd, 0); if (mapping == MAP_FAILED) err(1, "%s: mmap", filename.c_str()); } void MMapFile::unmap() { if (!curr_size) { assert(!mapping); return; } assert(mapping); if (munmap(mapping, curr_size) < 0) err(1, "%s: munmap", filename.c_str()); mapping = nullptr; } off_t MMapFile::alloc(size_t size) { assert(writable); if ((size_t)(curr_size - next_offset) < size) { off_t new_curr_size = (next_offset + size) * 5 / 4 + 65536; assert(new_curr_size >= next_offset); if (ftruncate(pdata->fd, new_curr_size) < 0) err(1, "%s: ftruncate (extending)", filename.c_str()); unmap(); curr_size = new_curr_size; map(); } off_t ret = next_offset; next_offset += size; return ret; }
[ "simon.tatham@arm.com" ]
simon.tatham@arm.com
2c16b1032faf25c3fc97c93c3c7d7a7a6eb0e7f2
d4a78a9099884c1e1c203f7e5b78b844de053ff7
/tensorflow/lite/tools/optimize/subgraph_quantizer_test.cc
7652429e32f1dbc031c46ce6bd259aa58971a144
[ "Apache-2.0" ]
permissive
pint1022/tensorflow
b4b7632c0f833135a0bb37ab5a939a6c1ec51ef6
ab1f872bbcf7749112f76a7f9ba17406e8fbbf4e
refs/heads/master
2020-04-15T00:16:48.132100
2019-02-05T17:48:11
2019-02-05T17:48:11
164,233,910
2
2
Apache-2.0
2019-01-05T16:53:25
2019-01-05T16:53:25
null
UTF-8
C++
false
false
10,773
cc
/* Copyright 2018 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include "tensorflow/lite/tools/optimize/subgraph_quantizer.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorflow/core/lib/io/path.h" #include "tensorflow/core/platform/init_main.h" #include "tensorflow/core/util/command_line_flags.h" #include "tensorflow/lite/schema/schema_generated.h" #include "tensorflow/lite/tools/optimize/symmetric_per_channel_params.h" #include "tensorflow/lite/tools/optimize/test_util.h" namespace { tensorflow::string* g_test_model_dir = nullptr; } // namespace namespace tflite { namespace optimize { namespace internal { namespace { std::unique_ptr<FlatBufferModel> ReadTestModel1() { auto model_path = tensorflow::io::JoinPath(*g_test_model_dir, kModelWithMinus128Plus127Weights); return FlatBufferModel::BuildFromFile(model_path.c_str()); } std::unique_ptr<FlatBufferModel> ReadTestModel2() { auto model_path = tensorflow::io::JoinPath(*g_test_model_dir, kModelWith0Plus10Weights); return FlatBufferModel::BuildFromFile(model_path.c_str()); } TEST(SubgraphQuantizerTest, VerifyConvQuantizationWithUnitScale) { ASSERT_TRUE(g_test_model_dir); ASSERT_FALSE(g_test_model_dir->empty()); auto test_model = ReadTestModel1(); ASSERT_TRUE(test_model); auto readonly_model = test_model->GetModel(); ASSERT_TRUE(readonly_model); ASSERT_TRUE(readonly_model->subgraphs()); ASSERT_GE(readonly_model->subgraphs()->size(), 1); tflite::ModelT model; readonly_model->UnPackTo(&model); auto subgraph = model.subgraphs[0].get(); FailOnErrorReporter error_reporter; SubgraphQuantizer quantizer(&model, subgraph, &error_reporter); auto status = quantizer.QuantizeOperator(0); ASSERT_EQ(kTfLiteOk, status); auto conv_op = subgraph->operators[0].get(); const int input_tensor_idx = 0; const int weights_tensor_idx = 1; const int bias_tensor_index = 2; const int output_tensor_idx = 0; const auto bias_tensor = subgraph->tensors[conv_op->inputs[bias_tensor_index]].get(); const auto input_tensor = subgraph->tensors[conv_op->inputs[input_tensor_idx]].get(); const auto weights_tensor = subgraph->tensors[conv_op->inputs[weights_tensor_idx]].get(); const auto output_tensor = subgraph->tensors[conv_op->outputs[output_tensor_idx]].get(); EXPECT_EQ(bias_tensor->type, TensorType_INT32); EXPECT_EQ(input_tensor->type, TensorType_INT8); EXPECT_EQ(weights_tensor->type, TensorType_INT8); ASSERT_TRUE(weights_tensor->quantization); const int out_channel_size = weights_tensor->shape[0]; std::unique_ptr<SymmetricPerChannelParams> bias_params; std::unique_ptr<SymmetricPerChannelParams> weights_params; ASSERT_EQ(kTfLiteOk, SymmetricPerChannelParams::ReadFromTensor( *weights_tensor, &weights_params)); ASSERT_EQ(kTfLiteOk, SymmetricPerChannelParams::ReadFromTensor(*bias_tensor, &bias_params)); ASSERT_EQ(bias_params->scales().size(), out_channel_size); ASSERT_EQ(weights_params->scales().size(), out_channel_size); ASSERT_EQ(input_tensor->quantization->scale.size(), 1); ASSERT_EQ(output_tensor->quantization->scale.size(), 1); const float eps = 1e-7; // Bias scale should be input * per_channel_weight_scale. for (size_t i = 0; i < out_channel_size; i++) { EXPECT_NEAR( bias_params->scales()[i], input_tensor->quantization->scale[0] * weights_params->scales()[i], eps); } for (size_t i = 0; i < out_channel_size; i++) { EXPECT_EQ(weights_params->scales()[i], 1); EXPECT_EQ(bias_params->scales()[i], 1); } EXPECT_EQ(input_tensor->quantization->scale[0], 1); EXPECT_EQ(output_tensor->quantization->scale[0], 1); const auto bias_buffer = model.buffers[bias_tensor->buffer].get(); ASSERT_EQ(bias_buffer->data.size(), sizeof(int32_t) * bias_tensor->shape[0]); const int32_t* bias_values = reinterpret_cast<int32_t*>(bias_buffer->data.data()); const auto original_bias_buffer = readonly_model->buffers()->Get(bias_tensor->buffer); const float* bias_float_buffer = reinterpret_cast<const float*>(original_bias_buffer->data()->data()); for (size_t i = 0; i < bias_tensor->shape[0]; i++) { auto dequantized_value = bias_values[i] * bias_params->scales()[i]; EXPECT_NEAR(dequantized_value, bias_float_buffer[i], eps); } const auto weights_buffer = model.buffers[weights_tensor->buffer].get(); const auto original_weights_buffer = readonly_model->buffers()->Get(weights_tensor->buffer); const int8_t* weight_values = reinterpret_cast<int8_t*>(weights_buffer->data.data()); const float* weights_float_buffer = reinterpret_cast<const float*>(original_weights_buffer->data()->data()); ASSERT_EQ(sizeof(float) * weights_buffer->data.size(), original_weights_buffer->data()->size()); int num_values_in_channel = weights_buffer->data.size() / out_channel_size; for (size_t channel_idx = 0; channel_idx < out_channel_size; channel_idx++) { for (size_t j = 0; j < num_values_in_channel; j++) { size_t element_idx = channel_idx * out_channel_size + j; auto dequantized_value = weight_values[element_idx] * weights_params->scales()[channel_idx]; EXPECT_NEAR(dequantized_value, weights_float_buffer[element_idx], eps); } } } TEST(SubgraphQuantizerTest, VerifyConvQuantization) { ASSERT_TRUE(g_test_model_dir); ASSERT_FALSE(g_test_model_dir->empty()); auto test_model = ReadTestModel2(); ASSERT_TRUE(test_model); auto readonly_model = test_model->GetModel(); ASSERT_TRUE(readonly_model); ASSERT_TRUE(readonly_model->subgraphs()); ASSERT_GE(readonly_model->subgraphs()->size(), 1); tflite::ModelT model; readonly_model->UnPackTo(&model); auto subgraph = model.subgraphs[0].get(); FailOnErrorReporter error_reporter; SubgraphQuantizer quantizer(&model, subgraph, &error_reporter); auto status = quantizer.QuantizeOperator(0); ASSERT_EQ(kTfLiteOk, status); auto conv_op = subgraph->operators[0].get(); const int input_tensor_idx = 0; const int weights_tensor_idx = 1; const int bias_tensor_index = 2; const int output_tensor_idx = 0; const auto bias_tensor = subgraph->tensors[conv_op->inputs[bias_tensor_index]].get(); const auto input_tensor = subgraph->tensors[conv_op->inputs[input_tensor_idx]].get(); const auto weights_tensor = subgraph->tensors[conv_op->inputs[weights_tensor_idx]].get(); const auto output_tensor = subgraph->tensors[conv_op->outputs[output_tensor_idx]].get(); EXPECT_EQ(bias_tensor->type, TensorType_INT32); EXPECT_EQ(input_tensor->type, TensorType_INT8); EXPECT_EQ(weights_tensor->type, TensorType_INT8); ASSERT_TRUE(weights_tensor->quantization); const int out_channel_size = weights_tensor->shape[0]; std::unique_ptr<SymmetricPerChannelParams> bias_params; std::unique_ptr<SymmetricPerChannelParams> weights_params; ASSERT_EQ(kTfLiteOk, SymmetricPerChannelParams::ReadFromTensor( *weights_tensor, &weights_params)); ASSERT_EQ(kTfLiteOk, SymmetricPerChannelParams::ReadFromTensor(*bias_tensor, &bias_params)); ASSERT_EQ(bias_params->scales().size(), out_channel_size); ASSERT_EQ(weights_params->scales().size(), out_channel_size); ASSERT_EQ(input_tensor->quantization->scale.size(), 1); ASSERT_EQ(output_tensor->quantization->scale.size(), 1); const float eps = 1e-7; // Bias scale should be input * per_channel_weight_scale. for (size_t i = 0; i < out_channel_size; i++) { EXPECT_NEAR( bias_params->scales()[i], input_tensor->quantization->scale[0] * weights_params->scales()[i], eps); } const auto bias_buffer = model.buffers[bias_tensor->buffer].get(); ASSERT_EQ(bias_buffer->data.size(), sizeof(int32_t) * bias_tensor->shape[0]); const int32_t* bias_values = reinterpret_cast<int32_t*>(bias_buffer->data.data()); const auto original_bias_buffer = readonly_model->buffers()->Get(bias_tensor->buffer); const float* bias_float_buffer = reinterpret_cast<const float*>(original_bias_buffer->data()->data()); for (size_t i = 0; i < bias_tensor->shape[0]; i++) { auto scale = bias_params->scales()[i]; auto dequantized_value = bias_values[i] * scale; EXPECT_NEAR(dequantized_value, bias_float_buffer[i], scale / 2); } const auto weights_buffer = model.buffers[weights_tensor->buffer].get(); const auto original_weights_buffer = readonly_model->buffers()->Get(weights_tensor->buffer); const int8_t* weight_values = reinterpret_cast<int8_t*>(weights_buffer->data.data()); const float* weights_float_buffer = reinterpret_cast<const float*>(original_weights_buffer->data()->data()); ASSERT_EQ(sizeof(float) * weights_buffer->data.size(), original_weights_buffer->data()->size()); int num_values_in_channel = weights_buffer->data.size() / out_channel_size; for (size_t channel_idx = 0; channel_idx < out_channel_size; channel_idx++) { for (size_t j = 0; j < num_values_in_channel; j++) { size_t element_idx = channel_idx * out_channel_size + j; auto scale = weights_params->scales()[channel_idx]; auto dequantized_value = weight_values[element_idx] * scale; EXPECT_NEAR(dequantized_value, weights_float_buffer[element_idx], scale / 2); } } } } // namespace } // namespace internal } // namespace optimize } // namespace tflite int main(int argc, char** argv) { tensorflow::string model_file; const std::vector<tensorflow::Flag> flag_list = { tensorflow::Flag("test_model_file", &model_file, "Path to test tflite model file."), }; const bool parse_result = tensorflow::Flags::Parse(&argc, argv, flag_list); CHECK(parse_result) << "Required test_model_file"; g_test_model_dir = new tensorflow::string(tensorflow::io::Dirname(model_file)); ::tensorflow::port::InitMain(argv[0], &argc, &argv); return RUN_ALL_TESTS(); }
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
47388ead7dc2fc0fd579ef43bc02c20bdd8b367a
55b8cf2aa4bf6d58106c124f011da1dd8a627045
/ceres_fit.cpp
1a5f4bbe49972e5a01bb86fd8b4bf17cebbf71d7
[]
no_license
Artemkth/cfitter
4776ab059563ec01ae5feaa24dfeb88f86c7eae5
0a8b35490dc1b0970406752ff6051bfbbcb2c3c9
refs/heads/master
2021-07-05T04:39:11.609218
2020-09-10T07:40:25
2020-09-10T07:40:25
171,827,150
0
0
null
null
null
null
UTF-8
C++
false
false
6,186
cpp
//core interface definitions #include"ceres_fit.h" //for core algebraic functions #include<cmath> typedef std::pair<std::array<double, 3>, std::vector<double>> CPair; //inline function to return rotation matrix(for fit with elliptic core) inline Eigen::Matrix<double, 2, 2> rotMatrix(const double& phi) { Eigen::Matrix<double, 2, 2> retMatrix; retMatrix << cos(phi), -sin(phi), sin(phi), cos(phi); return retMatrix; } #ifndef M_PI constexpr double M_PI = 3.14159265358979323846; #endif //functors for ceres fitting //radial class RadialGaussFtor : public ceres::SizedCostFunction<1, 2, 1, 1> { private: CPair VFPoint; public: RadialGaussFtor(const CPair& pnt) :VFPoint(pnt) {} bool Evaluate(double const* const* parameters, double* residuals, double** jacobians) const { //symbols for block parameters const double& x = VFPoint.first[0]; const double& y = VFPoint.first[1]; //first row of parameters is to be supposed coordinate of the peak const double& x0 = parameters[0][0]; const double& y0 = parameters[0][1]; //second row is only radius const double& r = parameters[1][0]; //only failure scenario is one of the radii being lower or equal to zero if (r <= 0.) return false; //third row is "amplitude" const double& am = parameters[2][0]; //useful thing to precalculate double expFactor = exp(-((x - x0) * (x - x0) + (y - y0) * (y - y0)) / (2. * r * r)); //manual promises that residuals is never NULL //and there should be only one :p residuals[0] = VFPoint.second[2] - am * expFactor ; //if jacobian array is nullptr there is no jacobian terms to compute if (jacobians == nullptr) return true; //first row is derivatives due to assumed position if (jacobians[0] != nullptr) { jacobians[0][0] = - (x - x0) * expFactor / (2. * r * r); jacobians[0][1] = - (y - y0) * expFactor / (2. * r * r); } //radius row derivatives if (jacobians[1] != nullptr) jacobians[1][0] = -((x - x0) * (x - x0) + (y - y0) * (y - y0)) * expFactor / (2. * r * r * r); //amplitude derivative if (jacobians[2] != nullptr) jacobians[2][0] = - expFactor; //nothing here should fail, right? return true; } }; //functors for ceres fitting //elliptical class ElipticalGaussFtor : public ceres::SizedCostFunction<1, 2, 2, 1, 1> { private: CPair VFPoint; public: ElipticalGaussFtor(const CPair& pnt) :VFPoint(pnt) {} bool Evaluate(double const* const* parameters, double* residuals, double** jacobians) const { //first row of parameters is to be supposed coordinate of the peak const double& x0 = parameters[0][0]; const double& y0 = parameters[0][1]; //relative position vector Eigen::Matrix<double, 2, 1> dispVect; dispVect << (VFPoint.first[0] - x0), (VFPoint.first[1] - y0); //second row is radii of minor and major axis const double& rx = parameters[1][0]; const double& ry = parameters[1][1]; //only failure scenario is one of the radii being exact zero(avoiding div 0) if (rx <= 0.||ry <= 0.) return false; //initialize diagonalized dispersion matrix Eigen::DiagonalMatrix<double, 2> rDiag; rDiag.diagonal() << 1. / (2. * rx * rx), 1. / (2. * ry * ry); //third row is rotation angle const double& phi = parameters[2][0]; auto rmat = rotMatrix(phi); //rotated dispersion matrix auto DispMat = rmat * rDiag * rmat.transpose(); //exp parameter Eigen::Matrix<double, 1, 1> eparam = dispVect.transpose() * DispMat * dispVect; //useful thing to precalculate double expFactor = exp(-eparam(0, 0)); //fourth row is "amplitude" const double& am = parameters[3][0]; //manual promises that residuals is never NULL //and there should be only one :p residuals[0] = VFPoint.second[2] - am * expFactor; //if jacobian array is nullptr there is no jacobian terms to compute if (jacobians == nullptr) return true; //first row is derivatives due to assumed position if (jacobians[0] != nullptr) { auto grad = 2. * expFactor * DispMat * dispVect; jacobians[0][0] = - grad(0, 0); jacobians[0][1] = - grad(1, 0); } //radius row derivatives if (jacobians[1] != nullptr) { Eigen::DiagonalMatrix<double, 2> tmp; tmp.diagonal() << 1. / (rx * rx * rx), 0.; Eigen::Matrix<double,1,1> res = expFactor * dispVect.transpose() * rmat * tmp * rmat.transpose() * dispVect; jacobians[1][0] = - res(0, 0); tmp.diagonal() << 0., 1. / (ry * ry * ry); res = expFactor * dispVect.transpose() * rmat * tmp * rmat.transpose() * dispVect; jacobians[1][1] = - res(0, 0); } //angle row derivate if (jacobians[2] != nullptr) { auto drotMat = rotMatrix(phi + M_PI / 2.0); auto res = expFactor * dispVect.transpose() * ( drotMat * rDiag * rmat.transpose() + rmat * rDiag * drotMat.transpose() ) * dispVect; jacobians[2][0] = - res(0, 0); } //amplitude derivative if (jacobians[3] != nullptr) jacobians[3][0] = - expFactor; //nothing here should fail, right? return true; } }; CeresFitEngine::CeresFitEngine() { options.max_num_iterations = 100; options.linear_solver_type = ceres::DENSE_QR; options.minimizer_type = ceres::TRUST_REGION; } CGaussParams<double> CeresFitEngine::fitVortCoreCGauss(const std::vector<CPair>& pts, const std::array<double, 2>& initPos, const double& initR) { CGaussParams<double> result; result.pos = initPos; result.r = initR; double am = 1.; ceres::Problem problem; for (const auto& x : pts) problem.AddResidualBlock( new RadialGaussFtor(x), nullptr, result.pos.data(), &result.r, &am ); ceres::Solve(options, &problem, &summary); return result; } EGaussParams<double> CeresFitEngine::fitVortCoreEGauss(const std::vector<CPair>& pts, const std::array<double, 2>& initPos, const std::array<double, 2>& initR, const double& initAng) { EGaussParams<double> result; result.pos = initPos; result.prAxis = initR; result.angle = initAng; double am = 1.; ceres::Problem problem; for (const auto& x : pts) problem.AddResidualBlock( new ElipticalGaussFtor(x), nullptr, result.pos.data(), result.prAxis.data(), &result.angle, &am ); ceres::Solve(options, &problem, &summary); return result; }
[ "artemb@kth.se" ]
artemb@kth.se
64d3d9d35ff0f94faac2ebc25f085b7e256f0370
5a626c23ff07d12da01fd7bf045ee6ba0e54247d
/Dummy_client/2019-Dummy/DrawModule.cpp
ae46592b6c3256c4a70d0e87959e155c11ddee2b
[]
no_license
snrn2426/MMORPG_prototype
eab98a0cffe213448ef0da8f580f940b02f47f0a
0091c027eb5937f8c68587b3a50f615a50704f3b
refs/heads/main
2023-06-07T14:15:34.953342
2021-07-05T06:48:24
2021-07-05T06:48:24
364,250,608
0
0
null
null
null
null
UTF-8
C++
false
false
17,954
cpp
/* * This Code Was Created By Jeff Molofee 2000 * Modified by Shawn T. to handle (%3.2f, num) parameters. * A HUGE Thanks To Fredric Echols For Cleaning Up * And Optimizing The Base Code, Making It More Flexible! * If You've Found This Code Useful, Please Let Me Know. * Visit My Site At nehe.gamedev.net */ #include <windows.h> // Header File For Windows #include <math.h> // Header File For Windows Math Library #include <stdio.h> // Header File For Standard Input/Output #include <stdarg.h> // Header File For Variable Argument Routines #include <gl\gl.h> // Header File For The OpenGL32 Library #include <gl\glu.h> // Header File For The GLu32 Library //#include <gl\glaux.h> // Header File For The Glaux Library #pragma comment (lib, "opengl32.lib") #pragma comment (lib, "glu32.lib") #include "NetworkModule.h" HDC hDC = NULL; // Private GDI Device Context HGLRC hRC = NULL; // Permanent Rendering Context HWND hWnd = NULL; // Holds Our Window Handle HINSTANCE hInstance; // Holds The Instance Of The Application GLuint base; // Base Display List For The Font Set GLfloat cnt1; // 1st Counter Used To Move Text & For Coloring GLfloat cnt2; // 2nd Counter Used To Move Text & For Coloring bool keys[256]; // Array Used For The Keyboard Routine bool active = TRUE; // Window Active Flag Set To TRUE By Default bool fullscreen = TRUE; // Fullscreen Flag Set To Fullscreen Mode By Default LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); // Declaration For WndProc GLvoid BuildFont(GLvoid) // Build Our Bitmap Font { HFONT font; // Windows Font ID HFONT oldfont; // Used For Good House Keeping base = glGenLists(96); // Storage For 96 Characters font = CreateFont(-24, // Height Of Font 0, // Width Of Font 0, // Angle Of Escapement 0, // Orientation Angle FW_BOLD, // Font Weight FALSE, // Italic FALSE, // Underline FALSE, // Strikeout ANSI_CHARSET, // Character Set Identifier OUT_TT_PRECIS, // Output Precision CLIP_DEFAULT_PRECIS, // Clipping Precision ANTIALIASED_QUALITY, // Output Quality FF_DONTCARE | DEFAULT_PITCH, // Family And Pitch L"Courier New"); // Font Name oldfont = (HFONT)SelectObject(hDC, font); // Selects The Font We Want wglUseFontBitmaps(hDC, 32, 96, base); // Builds 96 Characters Starting At Character 32 SelectObject(hDC, oldfont); // Selects The Font We Want DeleteObject(font); // Delete The Font } GLvoid KillFont(GLvoid) // Delete The Font List { glDeleteLists(base, 96); // Delete All 96 Characters } GLvoid glPrint(const char *fmt, ...) // Custom GL "Print" Routine { char text[256]; // Holds Our String va_list ap; // Pointer To List Of Arguments if (fmt == NULL) // If There's No Text return; // Do Nothing va_start(ap, fmt); // Parses The String For Variables vsprintf_s(text, fmt, ap); // And Converts Symbols To Actual Numbers va_end(ap); // Results Are Stored In Text glPushAttrib(GL_LIST_BIT); // Pushes The Display List Bits glListBase(base - 32); // Sets The Base Character to 32 glCallLists(strlen(text), GL_UNSIGNED_BYTE, text); // Draws The Display List Text glPopAttrib(); // Pops The Display List Bits } GLvoid ReSizeGLScene(GLsizei width, GLsizei height) // Resize And Initialize The GL Window { if (height == 0) // Prevent A Divide By Zero By { height = 1; // Making Height Equal One } glViewport(0, 0, width, height); // Reset The Current Viewport glMatrixMode(GL_PROJECTION); // Select The Projection Matrix glLoadIdentity(); // Reset The Projection Matrix // Calculate The Aspect Ratio Of The Window gluPerspective(45.0f, (GLfloat)width / (GLfloat)height, 0.1f, 100.0f); glMatrixMode(GL_MODELVIEW); // Select The Modelview Matrix glLoadIdentity(); // Reset The Modelview Matrix glMatrixMode(GL_MODELVIEW); // Select The Modelview Matrix glLoadIdentity(); // Reset The Modelview Matrix } int InitGL(GLvoid) // All Setup For OpenGL Goes Here { glShadeModel(GL_SMOOTH); // Enable Smooth Shading glClearColor(0.0f, 0.0f, 0.0f, 0.5f); // Black Background glClearDepth(1.0f); // Depth Buffer Setup glEnable(GL_DEPTH_TEST); // Enables Depth Testing glDepthFunc(GL_LEQUAL); // The Type Of Depth Testing To Do glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST); // Really Nice Perspective Calculations BuildFont(); // Build The Font return TRUE; // Initialization Went OK } int cuser = 0; int DrawGLScene(GLvoid) // Here's Where We Do All The Drawing { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // Clear Screen And Depth Buffer glLoadIdentity(); // Reset The Current Modelview Matrix glTranslatef(0.15f, -0.4f, -1.0f); // Move One Unit Into The Screen // Pulsing Colors Based On Text Position glColor3f(1, 1, 1); // Position The Text On The Screen glRasterPos2f(0.0f, 0.00f); glPrint("STRESS TEST [%d]", cuser); // Print GL Text To The Screen int size = 0; float *points = nullptr; GetPointCloud(&size, &points); cuser = size; glPointSize(2.0); glBegin(GL_POINTS); for (int i = 0; i < size; i++) { float x, y, z; x = points[i * 2] / 400.0 - 1.25; y = 1.25 - points[i * 2 + 1] / 400.0; z = -1.0f; glVertex3f(x, y, z); } glEnd(); return TRUE; // Everything Went OK } GLvoid KillGLWindow(GLvoid) // Properly Kill The Window { if (fullscreen) // Are We In Fullscreen Mode? { ChangeDisplaySettings(NULL, 0); // If So Switch Back To The Desktop ShowCursor(TRUE); // Show Mouse Pointer } if (hRC) // Do We Have A Rendering Context? { if (!wglMakeCurrent(NULL, NULL)) // Are We Able To Release The DC And RC Contexts? { MessageBox(NULL, L"Release Of DC And RC Failed.", L"SHUTDOWN ERROR", MB_OK | MB_ICONINFORMATION); } if (!wglDeleteContext(hRC)) // Are We Able To Delete The RC? { MessageBox(NULL, L"Release Rendering Context Failed.", L"SHUTDOWN ERROR", MB_OK | MB_ICONINFORMATION); } hRC = NULL; // Set RC To NULL } if (hDC && !ReleaseDC(hWnd, hDC)) // Are We Able To Release The DC { MessageBox(NULL, L"Release Device Context Failed.", L"SHUTDOWN ERROR", MB_OK | MB_ICONINFORMATION); hDC = NULL; // Set DC To NULL } if (hWnd && !DestroyWindow(hWnd)) // Are We Able To Destroy The Window? { MessageBox(NULL, L"Could Not Release hWnd.", L"SHUTDOWN ERROR", MB_OK | MB_ICONINFORMATION); hWnd = NULL; // Set hWnd To NULL } if (!UnregisterClass(L"OpenGL", hInstance)) // Are We Able To Unregister Class { MessageBox(NULL, L"Could Not Unregister Class.", L"SHUTDOWN ERROR", MB_OK | MB_ICONINFORMATION); hInstance = NULL; // Set hInstance To NULL } KillFont(); } /* This Code Creates Our OpenGL Window. Parameters Are: * * title - Title To Appear At The Top Of The Window * * width - Width Of The GL Window Or Fullscreen Mode * * height - Height Of The GL Window Or Fullscreen Mode * * bits - Number Of Bits To Use For Color (8/16/24/32) * * fullscreenflag - Use Fullscreen Mode (TRUE) Or Windowed Mode (FALSE) */ BOOL CreateGLWindow(const wchar_t* title, int width, int height, int bits, bool fullscreenflag) { GLuint PixelFormat; // Holds The Results After Searching For A Match WNDCLASS wc; // Windows Class Structure DWORD dwExStyle; // Window Extended Style DWORD dwStyle; // Window Style RECT WindowRect; // Grabs Rectangle Upper Left / Lower Right Values WindowRect.left = (long)0; // Set Left Value To 0 WindowRect.right = (long)width; // Set Right Value To Requested Width WindowRect.top = (long)0; // Set Top Value To 0 WindowRect.bottom = (long)height; // Set Bottom Value To Requested Height fullscreen = fullscreenflag; // Set The Global Fullscreen Flag hInstance = GetModuleHandle(NULL); // Grab An Instance For Our Window wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC; // Redraw On Size, And Own DC For Window. wc.lpfnWndProc = (WNDPROC)WndProc; // WndProc Handles Messages wc.cbClsExtra = 0; // No Extra Window Data wc.cbWndExtra = 0; // No Extra Window Data wc.hInstance = hInstance; // Set The Instance wc.hIcon = LoadIcon(NULL, IDI_WINLOGO); // Load The Default Icon wc.hCursor = LoadCursor(NULL, IDC_ARROW); // Load The Arrow Pointer wc.hbrBackground = NULL; // No Background Required For GL wc.lpszMenuName = NULL; // We Don't Want A Menu wc.lpszClassName = L"OpenGL"; // Set The Class Name if (!RegisterClass(&wc)) // Attempt To Register The Window Class { MessageBox(NULL, L"Failed To Register The Window Class.", L"ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if (fullscreen) // Attempt Fullscreen Mode? { DEVMODE dmScreenSettings; // Device Mode memset(&dmScreenSettings, 0, sizeof(dmScreenSettings)); // Makes Sure Memory's Cleared dmScreenSettings.dmSize = sizeof(dmScreenSettings); // Size Of The Devmode Structure dmScreenSettings.dmPelsWidth = width; // Selected Screen Width dmScreenSettings.dmPelsHeight = height; // Selected Screen Height dmScreenSettings.dmBitsPerPel = bits; // Selected Bits Per Pixel dmScreenSettings.dmFields = DM_BITSPERPEL | DM_PELSWIDTH | DM_PELSHEIGHT; // Try To Set Selected Mode And Get Results. NOTE: CDS_FULLSCREEN Gets Rid Of Start Bar. if (ChangeDisplaySettings(&dmScreenSettings, CDS_FULLSCREEN) != DISP_CHANGE_SUCCESSFUL) { // If The Mode Fails, Offer Two Options. Quit Or Use Windowed Mode. if (MessageBox(NULL, L"The Requested Fullscreen Mode Is Not Supported By\nYour Video Card. Use Windowed Mode Instead?", L"NeHe GL", MB_YESNO | MB_ICONEXCLAMATION) == IDYES) { fullscreen = FALSE; // Windowed Mode Selected. Fullscreen = FALSE } else { // Pop Up A Message Box Letting User Know The Program Is Closing. MessageBox(NULL, L"Program Will Now Close.", L"ERROR", MB_OK | MB_ICONSTOP); return FALSE; // Return FALSE } } } if (fullscreen) // Are We Still In Fullscreen Mode? { dwExStyle = WS_EX_APPWINDOW; // Window Extended Style dwStyle = WS_POPUP; // Windows Style ShowCursor(FALSE); // Hide Mouse Pointer } else { dwExStyle = WS_EX_APPWINDOW | WS_EX_WINDOWEDGE; // Window Extended Style dwStyle = WS_OVERLAPPEDWINDOW; // Windows Style } AdjustWindowRectEx(&WindowRect, dwStyle, FALSE, dwExStyle); // Adjust Window To True Requested Size // Create The Window if (!(hWnd = CreateWindowEx(dwExStyle, // Extended Style For The Window L"OpenGL", // Class Name title, // Window Title dwStyle | // Defined Window Style WS_CLIPSIBLINGS | // Required Window Style WS_CLIPCHILDREN, // Required Window Style 0, 0, // Window Position WindowRect.right - WindowRect.left, // Calculate Window Width WindowRect.bottom - WindowRect.top, // Calculate Window Height NULL, // No Parent Window NULL, // No Menu hInstance, // Instance NULL))) // Dont Pass Anything To WM_CREATE { KillGLWindow(); // Reset The Display MessageBox(NULL, L"Window Creation Error.", L"ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } static PIXELFORMATDESCRIPTOR pfd = // pfd Tells Windows How We Want Things To Be { sizeof(PIXELFORMATDESCRIPTOR), // Size Of This Pixel Format Descriptor 1, // Version Number PFD_DRAW_TO_WINDOW | // Format Must Support Window PFD_SUPPORT_OPENGL | // Format Must Support OpenGL PFD_DOUBLEBUFFER, // Must Support Double Buffering PFD_TYPE_RGBA, // Request An RGBA Format bits, // Select Our Color Depth 0, 0, 0, 0, 0, 0, // Color Bits Ignored 0, // No Alpha Buffer 0, // Shift Bit Ignored 0, // No Accumulation Buffer 0, 0, 0, 0, // Accumulation Bits Ignored 16, // 16Bit Z-Buffer (Depth Buffer) 0, // No Stencil Buffer 0, // No Auxiliary Buffer PFD_MAIN_PLANE, // Main Drawing Layer 0, // Reserved 0, 0, 0 // Layer Masks Ignored }; if (!(hDC = GetDC(hWnd))) // Did We Get A Device Context? { KillGLWindow(); // Reset The Display MessageBox(NULL, L"Can't Create A GL Device Context.", L"ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if (!(PixelFormat = ChoosePixelFormat(hDC, &pfd))) // Did Windows Find A Matching Pixel Format? { KillGLWindow(); // Reset The Display MessageBox(NULL, L"Can't Find A Suitable PixelFormat.", L"ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if (!SetPixelFormat(hDC, PixelFormat, &pfd)) // Are We Able To Set The Pixel Format? { KillGLWindow(); // Reset The Display MessageBox(NULL, L"Can't Set The PixelFormat.", L"ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if (!(hRC = wglCreateContext(hDC))) // Are We Able To Get A Rendering Context? { KillGLWindow(); // Reset The Display MessageBox(NULL, L"Can't Create A GL Rendering Context.", L"ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if (!wglMakeCurrent(hDC, hRC)) // Try To Activate The Rendering Context { KillGLWindow(); // Reset The Display MessageBox(NULL, L"Can't Activate The GL Rendering Context.", L"ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } ShowWindow(hWnd, SW_SHOW); // Show The Window SetForegroundWindow(hWnd); // Slightly Higher Priority SetFocus(hWnd); // Sets Keyboard Focus To The Window ReSizeGLScene(width, height); // Set Up Our Perspective GL Screen if (!InitGL()) // Initialize Our Newly Created GL Window { KillGLWindow(); // Reset The Display MessageBox(NULL, L"Initialization Failed.", L"ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } return TRUE; // Success } LRESULT CALLBACK WndProc(HWND hWnd, // Handle For This Window UINT uMsg, // Message For This Window WPARAM wParam, // Additional Message Information LPARAM lParam) // Additional Message Information { switch (uMsg) // Check For Windows Messages { case WM_ACTIVATE: // Watch For Window Activate Message { if (!HIWORD(wParam)) // Check Minimization State { active = TRUE; // Program Is Active } else { active = FALSE; // Program Is No Longer Active } return 0; // Return To The Message Loop } case WM_SYSCOMMAND: // Intercept System Commands { switch (wParam) // Check System Calls { case SC_SCREENSAVE: // Screensaver Trying To Start? case SC_MONITORPOWER: // Monitor Trying To Enter Powersave? return 0; // Prevent From Happening } break; // Exit } case WM_CLOSE: // Did We Receive A Close Message? { PostQuitMessage(0); // Send A Quit Message return 0; // Jump Back } case WM_KEYDOWN: // Is A Key Being Held Down? { keys[wParam] = TRUE; // If So, Mark It As TRUE return 0; // Jump Back } case WM_KEYUP: // Has A Key Been Released? { keys[wParam] = FALSE; // If So, Mark It As FALSE return 0; // Jump Back } case WM_SIZE: // Resize The OpenGL Window { ReSizeGLScene(LOWORD(lParam), HIWORD(lParam)); // LoWord=Width, HiWord=Height return 0; // Jump Back } } // Pass All Unhandled Messages To DefWindowProc return DefWindowProc(hWnd, uMsg, wParam, lParam); } int WINAPI WinMain(HINSTANCE hInstance, // Instance HINSTANCE hPrevInstance, // Previous Instance LPSTR lpCmdLine, // Command Line Parameters int nCmdShow) // Window Show State { MSG msg; // Windows Message Structure BOOL done = FALSE; // Bool Variable To Exit Loop fullscreen = FALSE; // Windowed Mode // Create Our OpenGL Window if (!CreateGLWindow(L"NeHe's Bitmap Font Tutorial", 640, 480, 16, fullscreen)) { return 0; // Quit If Window Was Not Created } InitializeNetwork(); while (!done) // Loop That Runs While done=FALSE { if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) // Is There A Message Waiting? { if (msg.message == WM_QUIT) // Have We Received A Quit Message? { done = TRUE; // If So done=TRUE } else // If Not, Deal With Window Messages { TranslateMessage(&msg); // Translate The Message DispatchMessage(&msg); // Dispatch The Message } } else // If There Are No Messages { // Draw The Scene. Watch For ESC Key And Quit Messages From DrawGLScene() if ((active && !DrawGLScene()) || keys[VK_ESCAPE]) // Active? Was There A Quit Received? { done = TRUE; // ESC or DrawGLScene Signalled A Quit } else // Not Time To Quit, Update Screen { SwapBuffers(hDC); // Swap Buffers (Double Buffering) } if (keys[VK_F1]) // Is F1 Being Pressed? { keys[VK_F1] = FALSE; // If So Make Key FALSE KillGLWindow(); // Kill Our Current Window fullscreen = !fullscreen; // Toggle Fullscreen / Windowed Mode // Recreate Our OpenGL Window if (!CreateGLWindow(L"NeHe's Bitmap Font Tutorial", 640, 480, 16, fullscreen)) { return 0; // Quit If Window Was Not Created } } } } // Shutdown KillGLWindow(); // Kill The Window return (msg.wParam); // Exit The Program }
[ "snrn2426@gmail.com" ]
snrn2426@gmail.com
f5c4f183afc3924389cf35a35d03850d18c6267d
99ad36efbebd20eba644207361388561240b3c12
/HW6/LinkedList Implementation/GTUVector.h
756dc20f5ecf6d974ad35b424626d0d41acdb09d
[ "MIT" ]
permissive
cagriyilmaz04/CSE-241-Homeworks
8eeace883b4aa4b6f0e1e676aeb14a0e03ddd00b
270ad02749086bf830d8d6c51fc8f0729321996b
refs/heads/master
2022-04-01T19:03:22.943121
2020-01-24T19:11:19
2020-01-24T19:11:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,213
h
#ifndef GTUVECTOR_H #define GTUVECTOR_H #include "GTUContainer.h" #include "GTUIterator.h" #include <iostream> #include <memory> template <class T> class GTUVector : public GTUContainer<T> { private: std::shared_ptr<Node<T>> create_node(T value) { return std::make_shared<Node<T>>(value); } public: GTUIterator<T> begin() override { return GTUIterator<T>(GTUContainer<T>::head); } GTUIterator<T> end() override { return GTUIterator<T>(GTUContainer<T>::tail); } void insert(GTUIterator<T> iter, T value) override { std::shared_ptr<Node<T> > node = create_node(value); node->prev = iter.ptr_; node->next = iter.ptr_.get()->next; iter.ptr_.get()->next->prev = node; iter.ptr_.get()->next = node; if (iter.ptr_ == GTUContainer<T>::head && iter.ptr_.get()->head == true) { GTUContainer<T>::head = GTUContainer<T>::head.get()->next; } } void erase(GTUIterator<T> iter) override { iter.ptr_.get()->next = iter.ptr_.get()->prev->next; } void clear() override { GTUContainer<T>::head.get()->next->prev = nullptr; GTUContainer<T>::head.get()->next = nullptr; GTUContainer<T>::tail.get()->prev->next = nullptr; GTUContainer<T>::tail.get()->next = nullptr; GTUContainer<T>::head.get()->next = GTUContainer<T>::tail; GTUContainer<T>::head.get()->prev = nullptr; GTUContainer<T>::tail.get()->next = nullptr; GTUContainer<T>::tail.get()->prev = GTUContainer<T>::head; } bool empty() override { return GTUContainer<T>::head->next == GTUContainer<T>::tail; } int size() override { std::shared_ptr<Node<T> > current = GTUContainer<T>::head; int counter = 0; while (current->next != GTUContainer<T>::tail) { ++counter; current = current->next; } return counter + 1; } int max_size() override { int x = 1; while (size() > x) { x *= 2; } return x; } T operator[](int index) { try { std::shared_ptr<Node<T> > current = GTUContainer<T>::head; const int _size = size(); if (index < 0 || index > _size) throw "Index problem"; for (int i = 0; i < index; i++) { current = current->next; } return current.get()->value; } catch (const char *message) { std::cerr << message << std::endl; } } const T operator[](int index)const { try { std::shared_ptr<Node<T> > current = GTUContainer<T>::head; const int _size = size(); if (index < 0 || index > _size) throw "Index problem"; for (int i = 0; i < index; i++) { current = current->next; } return current.get()->value; } catch (const char *message) { std::cerr << message << std::endl; } } }; #endif
[ "melihcanclk@github.com" ]
melihcanclk@github.com
f0cb6263df660f3ea2a4b13c1e5ed95f004bb4ab
4fbbce8221efba06e5c2334ba850fbd17568b888
/TreeVariant/TreeVariant.cpp
a7d3da1ef8d9c20e2514b3b7db4d1c954241f30a
[ "Apache-2.0" ]
permissive
CreatorSergey/PascalParser
92d9caeaf743ceba9998c3cbbf2a8101607c40a1
f99d8578cbb6538f8d2f63a3226abc2290d69be1
refs/heads/master
2020-07-24T03:05:04.043892
2017-08-20T15:26:33
2017-08-20T15:26:33
207,782,919
1
0
Apache-2.0
2019-09-11T10:14:22
2019-09-11T10:14:21
null
UTF-8
C++
false
false
18,174
cpp
/* * Copyright (C) 2017 Smirnov Vladimir mapron1@gmail.com * Source code 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 or in file COPYING-APACHE-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License.h */ #include "TreeVariant.h" #include <ByteOrderStream.h> #include <QFile> #include <QBuffer> #include <QDebug> const TreeVariant TreeVariant::emptyValue; // ---------------------------------------------- TreeVariant::TreeVariant() : QVariant() { } //-------------------------------------------------------------------------------- TreeVariant::TreeVariantList& TreeVariant:: asList() { _type = List; return _list; } //-------------------------------------------------------------------------------- TreeVariant::TreeVariantMap &TreeVariant::asMap() { _type = Map; return _map; } const TreeVariant::TreeVariantList &TreeVariant::asList() const { return _list; } const TreeVariant::TreeVariantMap &TreeVariant::asMap() const { return _map; } QStringList TreeVariant::keys() const { return _mapKeys; } //-------------------------------------------------------------------------------- TreeVariant::VariantType TreeVariant::vtype() const {return _type;} void TreeVariant::setVtype(TreeVariant::VariantType type) {_type=type;} //-------------------------------------------------------------------------------- TreeVariant TreeVariant::fromQVariant(QVariant val) { TreeVariant return_value = val; if (val.type() == QVariant::Map) { QVariantMap vm = val.toMap(); QMapIterator<QString, QVariant> i(vm); while (i.hasNext()) { i.next(); return_value._map.insert(i.key(), TreeVariant::fromQVariant(i.value())) ; return_value._mapKeys << i.key(); } return_value._type = Map; } if (val.type() == QVariant::List || val.type() == QVariant::StringList) { QVariantList vm = val.toList(); QListIterator<QVariant> i(vm); while (i.hasNext()) { return_value._list.push_back( TreeVariant::fromQVariant(i.next()) ); } return_value._type = List; } return return_value; } //-------------------------------------------------------------------------------- TreeVariant &TreeVariant::operator [](const QString& index) { _type = Map; if (!_map.contains(index)) _mapKeys << index; return _map[index]; } //-------------------------------------------------------------------------------- const TreeVariant TreeVariant::operator [](const QString& index) const { if (_type != Map) return emptyValue; if (!_map.contains(index)) return emptyValue; return _map.value(index); } //-------------------------------------------------------------------------------- TreeVariant &TreeVariant::operator [](const int index) { while(_list.size() <= index) _list.append(TreeVariant()); _type = List; return _list[index]; } //-------------------------------------------------------------------------------- const TreeVariant& TreeVariant::operator [](const int index) const { if(_list.size() <= index || index < 0) return emptyValue; return _list[index]; } //-------------------------------------------------------------------------------- QMap<QString, QString> TreeVariant::asStringMap() const { QMap<QString, QString> ret; if (vtype() == TreeVariant::Map) { const TreeVariantMap& vm = asMap(); foreach (QString key, vm.keys()) ret.insert(key, vm[key].toString()); } return ret; } QVariantMap TreeVariant::asVariantMap() const { QVariantMap ret; if (vtype() == TreeVariant::Map) { const TreeVariantMap& vm = asMap(); foreach (QString key, vm.keys()) ret.insert(key, vm[key].asVariant()); } return ret; } //-------------------------------------------------------------------------------- QStringList TreeVariant::asStringList() const { QStringList ret; if (vtype() == TreeVariant::List) { const TreeVariantList& vm = this->asList(); for (int i=0;i<vm.size();i++) ret << vm[i].toString() ; } return ret; } QVariant TreeVariant::asVariant() const { if (vtype() == TreeVariant::List) { QVariantList ret; const TreeVariantList& vm = this->asList(); for (int i=0;i<vm.size();i++) ret << vm[i].asVariant(); return ret; } if (vtype() == TreeVariant::Map) { return asVariantMap(); } return *this; } //-------------------------------------------------------------------------------- void TreeVariant::remove(const QString& key) { _type = Map; _map.remove(key); _mapKeys.removeAll(key); } //-------------------------------------------------------------------------------- void TreeVariant::append(const TreeVariant &val) { _type = List; _list.append(val); } //-------------------------------------------------------------------------------- int TreeVariant::listSize() const { return _list.size(); } int TreeVariant::mapSize() const { return _map.size(); } //-------------------------------------------------------------------------------- bool TreeVariant::contains(const QString &key) const { if ( _type != Map) return false; return _map.contains(key); } //-------------------------------------------------------------------------------- bool TreeVariant::saveToFile(QString filename, QString type, QDataStream::ByteOrder byteOrder) const { QFile file(filename); if (!file.open(QIODevice::WriteOnly)) return false; if (type == "extensionGuess") { if (filename.right(5) == ".yaml"|| filename.right(5) == "-yaml") type = "yaml"; if (filename.right(5) == ".json") type = "json"; if (filename.right(7) == ".ubjson") type = "ubjson"; } const bool res = saveToDevice(&file, type, byteOrder); file.close(); return res; } //-------------------------------------------------------------------------------- bool TreeVariant::saveToDevice(QIODevice *device, QString type, QDataStream::ByteOrder byteOrder) const { QString yaml; if (type == "yaml") { this->toYamlString(yaml); device->write(yaml.toUtf8()); } else if (type == "json") { this->toYamlString(yaml, true); device->write(yaml.toUtf8()); } else if (type == "ubjson") { QDataStream ds(device); ds.setByteOrder(byteOrder); this->toUbjson(ds); } else return false; return true; } //-------------------------------------------------------------------------------- bool TreeVariant::saveToByteArray(QByteArray &buffer, QString type, QDataStream::ByteOrder byteOrder) const { QBuffer buf(&buffer); buf.open(QIODevice::WriteOnly); bool res = this->saveToDevice(&buf, type, byteOrder); return res; } //-------------------------------------------------------------------------------- QDebug operator<<(QDebug dbg, const TreeVariant &c) { QString yaml; c.toYamlString(yaml); dbg.nospace() << yaml.toUtf8().constData(); return dbg.nospace(); } QDebug operator<<(QDebug dbg, const TreeVariant::VariantType &c) { switch (c) { case TreeVariant::Scalar: dbg.nospace() << "scalar"; break; case TreeVariant::Map: dbg.nospace() << "map"; break; case TreeVariant::List: dbg.nospace() << "list"; break; } return dbg.space(); } //-------------------------------------------------------------------------------- TreeVariant *TreeVariant::findBy(QString field, TreeVariant value) { TreeVariant *return_value=nullptr; if (_type == TreeVariant::List) { for (int i=0;i<_list.size();i++) { if (_list[i].contains(field) && _list[i][field] == value) return &(_list[i]); } } return return_value; } //-------------------------------------------------------------------------------- void TreeVariant::merge(const TreeVariant &overwrite,const QStringList& except, bool owerwrite_lists, bool trunc_lists) { if (_type == Map) { foreach (QString key, overwrite._mapKeys) { TreeVariant val = overwrite._map[key]; bool isExcept = except.contains(key); if (!isExcept && ( val._type == Map || val._type == List)) { (*this)[key].merge(val, except, owerwrite_lists, trunc_lists); } else { (*this)[key] = val; } } } else if (_type == List) { if (trunc_lists) { while (_list.size() > overwrite._list.size()) _list.removeLast(); } for (int j=0; j< overwrite._list.size(); j++) { if (owerwrite_lists && _list.size() > j) _list[j].merge(overwrite._list[j], except, owerwrite_lists, trunc_lists); else _list.append(overwrite._list[j]); } } else // simple copy { _type = overwrite._type; (*this) = overwrite; } } void TreeVariant::clear() { QVariant::clear(); _list.clear(); _map.clear(); _mapKeys.clear(); } //-------------------------------------------------------------------------------- bool TreeVariant::toYamlString(QString &ret, bool json, int level) const { // Old ugly code. Function supports json and yaml output (yaml may be compressed to inline) QString indent_str = QString(" ").repeated(level); bool ok; this->toDouble(&ok); switch (_type) { case TreeVariant::Scalar:{ if (!this->isValid()) ret += "~"; else if (this->type() == QVariant::Bool) ret += this->toBool() ? "true" : "false"; else if (ok) ret += this->toString(); else ret += escape(toString()); break; }case TreeVariant::Map: { if (!json && isFlatList()){ ret += "{"; int i=0; foreach (const QString& key,_mapKeys) { if (i++ > 0) ret += ", "; ret += escape(key) + ": " ; _map[key].toYamlString(ret, json, level + 1); } ret += "}"; break; } if (json) ret += "{\r\n"; int i=0; foreach (const QString& key,_mapKeys) { const QString escapedKey = escape(key); const bool nonFlat = !json && !_map[key].isFlatList(); ret += indent_str + escapedKey + ": " ; if (nonFlat) ret += "\r\n"; _map[key].toYamlString(ret, json, level + 1); if (nonFlat) ret += (json && i< _map.size()-1 ?",":""); else ret += QString(json && i< _map.size()-1 ?",":"") + "\r\n"; i++; } if (json) ret += indent_str + "}"+ "\r\n"; } break; case TreeVariant::List: { if (isFlatList()) { ret += "["; for (int i=0; i< _list.size(); i++) { if (i >0) ret += ", "; _list[i].toYamlString(ret, json, level + 1); } ret += "]"; break; } if (json) ret += "[\r\n"; for (int i=0; i< _list.size(); i++) { ret += indent_str; if (!json) ret += "- "; const bool nonFlat = !json && !_list[i].isFlatList(); if (nonFlat) ret += "\r\n"; _list[i].toYamlString(ret, json, level + 1) ; if (nonFlat) {;} else ret += QString(json && i< _list.size()-1 ?",":"") + "\r\n"; } if (json) ret += indent_str + "]"+"\r\n"; } break; } return true; } void TreeVariant::optimize() { switch (_type) { case TreeVariant::Scalar: break; case TreeVariant::List: for (int i=0;i<_list.size();i++) _list[i].optimize(); break; case TreeVariant::Map: { foreach (const QString& key, _mapKeys) { _map[key].optimize(); if (_map[key].isZero()) { _map.remove(key); _mapKeys.removeAll(key); } } } } } bool TreeVariant::isZero() { switch (_type) { case TreeVariant::Scalar: return !this->isValid(); case TreeVariant::List: return !_list.size(); case TreeVariant::Map: return !_map.size(); } return true; } void TreeVariant::toUbjson(QDataStream &ds) const { // QByteArray ret; // QByteArray t; switch (_type) { case TreeVariant::Scalar: { bool okD; double valueD = this->toDouble(&okD); bool okI; int valueI = this->toInt(&okI); if (_typeHint!=TH_none){ okI = false; okD = false; } if (this->type() == QVariant::Bool || _typeHint == TH_bool){ ds << (quint8)(this->toBool() ? 'T' : 'F'); }else if (this->type() == QVariant::Invalid || this->isNull()){ ds << (quint8)'Z' ; }else if (okD || _typeHint == TH_float || _typeHint == TH_double){ if (_typeHint == TH_float){ ds << (quint8)'d' << (float) valueD; }else{ ds << (quint8)'D' << valueD; } }else if (okI || _typeHint == TH_int || _typeHint == TH_int16|| _typeHint == TH_byte|| _typeHint == TH_int64){ if (_typeHint == TH_byte){ ds << (quint8)'B'; unsigned char value = valueI; ds << value; }else if (_typeHint == TH_int16){ ds << (quint8)'i'; short value = valueI; ds << value; }else{ ds << (quint8)'I' <<valueI; } }else{ QByteArray str = this->toString().toUtf8(); str += '\0'; if (str.size() < 254){ ds << (quint8)'s'; unsigned char sizeC = (unsigned char) str.size(); ds << sizeC; ds.writeRawData(str.constData(), str.size()); }else{ ds << (quint8)'S'; int sizeI = (int) str.size(); ds << sizeI; ds.writeRawData(str.constData(), str.size()); } } } break; case TreeVariant::Map: { if (_map.size() < 254){ ds << (quint8)'o'; unsigned char sizeC = (unsigned char) _map.size(); ds << sizeC; }else{ ds << (quint8)'O'; int sizeI = (int) _map.size(); ds << sizeI; } foreach (const QString& k, _mapKeys) { TreeVariant key(k); key._typeHint=_typeHintKeys; key.toUbjson(ds); _map[k].toUbjson(ds); } } break; case TreeVariant::List: { if (_list.size() < 254){ ds << (quint8)'a'; unsigned char sizeC = (unsigned char) _list.size(); ds << sizeC; }else{ ds << (quint8)'A'; int sizeI = (int) _list.size(); ds <<sizeI; } for (int i=0; i< _list.size(); i++) { _list[i].toUbjson(ds); } } break; } } //-------------------------------------------------------------------------------- bool TreeVariant::isFlatList() const { if (_type == Scalar) return true; if (_type == List) for (int i=0; i < _list.size(); i++){ if (_list[i]._type != Scalar) return false; } if (_type == Map){ if ( _map.size() > 5) return false; foreach (const QString k, _mapKeys){ if (_map[k]._type != Scalar) return false; } } return true; } //-------------------------------------------------------------------------------- void TreeVariant::addLists(QString val1,QString val2,QString val3,QString val4,QString val5) { _type = Map; if (!val1.isEmpty()) (*this)[val1].setVtype(List); if (!val2.isEmpty()) (*this)[val2].setVtype(List); if (!val3.isEmpty()) (*this)[val3].setVtype(List); if (!val4.isEmpty()) (*this)[val4].setVtype(List); if (!val5.isEmpty()) (*this)[val5].setVtype(List); } //-------------------------------------------------------------------------------- void TreeVariant::addMaps(QString val1, QString val2, QString val3, QString val4, QString val5) { _type = Map; if (!val1.isEmpty()) (*this)[val1].setVtype(Map); if (!val2.isEmpty()) (*this)[val2].setVtype(Map); if (!val3.isEmpty()) (*this)[val3].setVtype(Map); if (!val4.isEmpty()) (*this)[val4].setVtype(Map); if (!val5.isEmpty()) (*this)[val5].setVtype(Map); } //-------------------------------------------------------------------------------- //-------------------------------------------------------------------------------- const TreeVariant &TreeVariant::operator=(const QStringList a) { this->_list.clear(); foreach (QString s, a){ this->append(TreeVariant(s)); } return *this; } bool TreeVariant::operator==(const TreeVariant &a) const { bool typeEquals = _type == a._type ; bool listRquals =_type != List || _list == a._list; bool mapEquals = _type != Map || _map == a._map ; bool varEquals = _type != Scalar || QVariant::operator ==(a); return typeEquals && listRquals && mapEquals && varEquals; } bool TreeVariant::operator!=(const TreeVariant &a) const { return _type != a._type || _list != a._list || _map != a._map || QVariant::operator !=(a); } QStringList TreeVariant::hints =QStringList() << ""<< "bool"<< "byte"<< "int16"<< "int"<< "int64"<< "string"<< "float"<< "double"; void TreeVariant::setTypeHint(QString hint) { setTypeHint(getTypeHintByName(hint)); } void TreeVariant::setTypeHintKeys(QString hint) { setTypeHintKeys(getTypeHintByName(hint)); } void TreeVariant::setTypeHint(TreeVariant::TypeHint hint) { _typeHint = hint; } void TreeVariant::setTypeHintKeys(TreeVariant::TypeHint hint) { _typeHintKeys = hint; } TreeVariant::TypeHint TreeVariant::getTypeHintByName(QString hint) { TreeVariant::TypeHint typeHint = TypeHint(hints.indexOf(hint)); if (typeHint < 0) typeHint =TH_none; return typeHint; } QString TreeVariant::getJoinedValues(const QStringList &keys, const QString &glue) const { QStringList parts; foreach (const QString &key, keys) parts << _map.value(key).toString(); return parts.join(glue); } QString TreeVariant::getJoinedValues(const QList<int> &keys, const QString &glue) const { QStringList parts; foreach (int key, keys) parts << _list.value(key).toString(); return parts.join(glue); } QString TreeVariant::escape(QString str) const { static const QLatin1String f1("\\\""), f2("\\r"), f3("\\n"), f4("\\\\"); if (str.size() < 25 && QRegExp("[0-9A-Za-z_]+").exactMatch(str)) return str; return QString("\"") + str.replace('\\',f4).replace('\"',f1).replace('\r',f2).replace('\n',f3) + "\""; } QString TreeVariant::unescape(QString str) const { static const QLatin1String f1("\\\""),t1("\""), f2("\\r"),t2("\r"), f3("\\n"), t3("\n"), f4("\\\\"), t4("\\"); return str.trimmed().replace(f1, t1).replace(f2, t2).replace(f3, t3).replace(f4, t4); }
[ "mapron1@gmail.com" ]
mapron1@gmail.com
d78bfe997b73ce0acc8bc1dcd9743ec3965a15e4
79da5b42f7708d6b44b83b621eb8cd534f4d5282
/src/oldFiles/main.cpp
e5ea9e4a1dd4498755647048bc30ef62b5290f85
[]
no_license
Saafan/HospitalMazeGame
12dd6431a07c70e5c827cc4af54fc9e70dce8503
638875b20976a7a3fde662989b710eeb7f56bb59
refs/heads/master
2023-02-15T12:27:42.996258
2021-01-15T00:47:58
2021-01-15T00:47:58
320,993,866
1
0
null
null
null
null
UTF-8
C++
false
false
34,529
cpp
#include <algorithm> #include <sstream> #include <iomanip> #include <fstream> #include <windows.h> #include "TextureBuilder.h" #include "Model_3DS.h" #include "GLTexture.h" #include "Renderer.h" #include "Model.h" #include "Object.h" #include "ModelsGenerator.h" #include "Randomize.h" #include <math.h> #include "UI.h" #include "LightModel.h" std::vector<Object> objs; GLTexture tex_ground; std::vector<bool> modelExpand(objs.size(), false); std::vector<float[3]> modelTrans(objs.size()); std::vector<LightModel> lights; Model sphere; std::vector<bool> views{ true, false, false }; bool backup = false; bool updateData = true; Model* lastHit = nullptr; vec3 cameraPos; vec3 cameraCenter; int coinsVal = 0; int scoreVal = 0; int healthVal = 100; UI coins({ 1.00f, 0.0f, 0.0f }, "Coins: ", & coinsVal, { 1.2f, 2.2f, 0.0f }); UI health({ 1.00f, 0.0f, 0.0f }, "Health: ", & healthVal, { 1.2f, 1.90f, 0.0f }, "%%"); int WIDTH = 1100; int HEIGHT = 950; bool rotateAround = false; bool moveWithCenter = true; bool mouseLock = false; float mouseDeltX, mouseDeltY = 0; float radius = 1.5f; float angle = -45.11f; float elapsedTime = 0.0f; static float lightColor[]{ 1.0f, 1.0f, 1.0f }; static float lightPos[]{ 5.6f, 10.0f, 7.5f }; void WriteHeader(); std::stringstream code; std::vector<Model> models; std::vector<std::vector<Model>> modelsHistory; bool firstPerson = true; vec3 GetCharacterPos() { vec3 pos; for (const auto& model : models) { if (model.group != -1) if (objs.at(model.group).name._Equal("Character")) if (model.collider) { pos.x = model.position.at(0); pos.y = model.position.at(1); pos.z = model.position.at(2); } } return pos; } vec3 firstCenter; vec3 thirdCenter; float firstAngle; void SetupCamera() { glMatrixMode(GL_PROJECTION); glLoadIdentity(); //glOrtho(-0.5, 0.5, -0.5, 0.5, -1, 1); gluPerspective(60, 16 / 9, 0.001, 100); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); if (rotateAround) { cameraPos.x = std::sin(angle * 3.14f / 180.0f) * radius; cameraPos.z = std::cos(angle * 3.14f / 180.0f) * radius; } if (firstPerson) { firstCenter.x = -std::cos(firstAngle * 3.14f / 180.0f) * 10; firstCenter.z = std::sin(firstAngle * 3.14f / 180.0f) * 10; gluLookAt(cameraPos.x, cameraPos.y + 0.6f, cameraPos.z, cameraPos.x + firstCenter.x, cameraCenter.y + firstCenter.y, cameraPos.z + firstCenter.z, 0.0f, 1.0f, 0.0f); } else { thirdCenter.x = -std::cos(firstAngle * 3.14f / 180.0f) * 4; thirdCenter.z = std::sin(firstAngle * 3.14f / 180.0f) * 4; gluLookAt(cameraPos.x + thirdCenter.x, cameraPos.y + 3.0, cameraPos.z + thirdCenter.z, cameraCenter.x, cameraCenter.y, cameraCenter.z, 0.0f, 1.0f, 0.0f); } } void SetupLights() { for (auto& light : lights) light.Render(); } void SortObjects() { for (auto& objOfGroup : objs) if (!objOfGroup.obj.empty()) objOfGroup.obj.clear(); for (auto& model : models) if (model.group != -1) { objs.at(model.group).obj.push_back(&model); model.groupCenter = objs.at(model.group).center; model.groupTrans = objs.at(model.group).transGroup; } } void ShowModelAttributes(Model& model, std::string name) { if (!model.path.empty()) name = model.GetName() + " " + model.id; ImGui::Checkbox(std::string("Select " + model.id).c_str(), &model.selected); ImGui::SameLine(); if (ImGui::CollapsingHeader(name.c_str())) { ImGui::Checkbox(std::string("Hide " + model.id).c_str(), &(model.hidden)); ImGui::Checkbox(std::string("Uniform Scale " + model.id).c_str(), &model.uniformScale); ImGui::ColorEdit3(std::string("Color " + model.id).c_str(), &model.color.R); ImGui::DragFloat3(std::string("Position " + model.id).c_str(), &model.position.at(0), 0.01f); if (model.uniformScale) { ImGui::DragFloat(std::string("Scale " + model.id).c_str(), &model.scale.at(0), 0.001f); model.scale.at(2) = model.scale.at(1) = model.scale.at(0); } else ImGui::DragFloat3(std::string("Scale " + model.id).c_str(), &model.scale.at(0), 0.001f); ImGui::DragFloat3(std::string("Rotate " + model.id).c_str(), &model.rotate.at(0), 0.5f); if (model.GetPrimitive() == Primitive::Tours) { ImGui::DragFloat(std::string("Inner Radius " + model.id).c_str(), &model.size, 0.1f); ImGui::DragFloat(std::string("Outer Radius " + model.id).c_str(), &model.modelHeight, 0.1f); } if (model.GetPrimitive() == Primitive::Cone) { ImGui::DragFloat(std::string("Base " + model.id).c_str(), &model.size, 0.05f); ImGui::DragFloat(std::string("Height " + model.id).c_str(), &model.modelHeight, 0.05f); } if (model.GetPrimitive() == Primitive::Sphere) { ImGui::DragFloat(std::string("Radius " + model.id).c_str(), &model.size, 0.01f); } if (model.GetPrimitive() == Primitive::Cylinder) { ImGui::DragFloat(std::string("Base Radius " + model.id).c_str(), &model.size, 0.01f); ImGui::DragFloat(std::string("Top Radius " + model.id).c_str(), &model.radius, 0.01f); ImGui::DragFloat(std::string("Height " + model.id).c_str(), &model.modelHeight, 0.01f); } if (model.GetPrimitive() != Primitive::Cube && model.GetPrimitive() != Primitive::WireCube && model.GetPrimitive() != Primitive::Teapot && model.GetPrimitive() != Primitive::Model) { ImGui::DragInt(std::string("Slices " + model.id).c_str(), &model.slices, 1); ImGui::DragInt(std::string("Stacks " + model.id).c_str(), &model.stacks, 1); } if (model.GetPrimitive() == Primitive::Model) { static char tempBuf[60] = { 0 }; ImGui::InputText(std::string("Model Name " + model.id + " " + model.path).c_str(), tempBuf, IM_ARRAYSIZE(tempBuf)); ImGui::SameLine(); if (ImGui::Button(std::string("Apply Path Model" + model.id).c_str())) model.Assign3DModel("models/" + std::string(tempBuf) + "/" + std::string(tempBuf) + ".3ds"); } if (model.GetPrimitive() == Primitive::WireCube) { ImGui::Checkbox(std::string("Animate Within " + model.id).c_str(), &model.animated); ImGui::Checkbox(std::string("Collider " + model.id).c_str(), &model.collider); if (ImGui::CollapsingHeader(std::string("Sound: " + name).c_str())) { static char tempBuf0[60] = { 0 }; ImGui::InputText(std::string("Collision Sound Name " + model.id).c_str(), tempBuf0, IM_ARRAYSIZE(tempBuf0)); ImGui::SameLine(); if (ImGui::Button(std::string("Apply Path Sound" + model.id).c_str())) model.soundFileName = tempBuf0; static char tempBuf1[60] = { 0 }; ImGui::InputText(std::string("Animation Sound Name " + model.id).c_str(), tempBuf1, IM_ARRAYSIZE(tempBuf1)); ImGui::SameLine(); if (ImGui::Button(std::string("Apply Path AnimSound" + model.id).c_str())) model.animSoundFileName = tempBuf1; } } if (ImGui::CollapsingHeader(std::string("Animate: " + name).c_str())) { ImGui::DragFloat3("Animate Pos", &model.transFactor[0], 0.0001); ImGui::SameLine(); if (ImGui::Button(std::string("Reset Pos" + model.id).c_str())) model.transFactor[0] = model.transFactor[1] = model.transFactor[2] = 0.0f; ImGui::DragFloat3("Animate Rot", &model.rotFactor[0], 0.0001); ImGui::SameLine(); if (ImGui::Button(std::string("Reset Rot" + model.id).c_str())) model.rotFactor[0] = model.rotFactor[1] = model.rotFactor[2] = 0.0f; ImGui::DragFloat3("Animate Scale", &model.scaleFactor[0], 0.0001); ImGui::SameLine(); if (ImGui::Button(std::string("Reset Scale" + model.id).c_str())) model.scaleFactor[0] = model.scaleFactor[1] = model.scaleFactor[2] = 0.0f; ImGui::DragFloat("Animation Time", &model.animTime, 0.001); } if (ImGui::Button(std::string("Reset Position: " + name).c_str())) model.position.at(0) = model.position.at(1) = model.position.at(2) = 0; ImGui::SameLine(); if (ImGui::Button(std::string("Reset Rotation: " + name).c_str())) model.rotate.at(0) = model.rotate.at(1) = model.rotate.at(2) = 0; ImGui::SameLine(); if (ImGui::Button(std::string("Reset Scale: " + name).c_str())) model.scale.at(0) = model.scale.at(1) = model.scale.at(2) = 1; ImGui::SameLine(); if (ImGui::Button(std::string("Reset Color: " + name).c_str())) model.color.R = model.color.G = model.color.B = 1; if (ImGui::Button(std::string("Delete: " + name).c_str())) { for (size_t q = 0; q < models.size(); q++) if (&models.at(q) == &model) models.erase(models.begin() + q); SortObjects(); return; } if (ImGui::Button(std::string("Duplicate: " + name).c_str())) { Model newModel = model; newModel.id = std::to_string(model.numofModels++); models.push_back(newModel); SortObjects(); return; } ImGui::Indent(20); if (ImGui::CollapsingHeader(std::string("Group " + name + " in ").c_str())) for (size_t i = 0; i < objs.size(); i++) { if (ImGui::Button(std::string(objs.at(i).name + " " + name).c_str())) { model.group = i; SortObjects(); } if ((i % 3 != 0) || i == 0) ImGui::SameLine(); } ImGui::Spacing(); ImGui::Unindent(20); if (ImGui::Button(std::string("Delete " + model.id + " from Group").c_str())) { model.group = -1; model.TranslateAccum(model.groupTrans.at(0), model.groupTrans.at(1), model.groupTrans.at(2)); model.groupCenter.at(0) = model.groupCenter.at(1) = model.groupCenter.at(2) = 0.0f; model.groupTrans.at(0) = model.groupTrans.at(1) = model.groupTrans.at(2) = 0.0f; SortObjects(); } ImGui::Spacing(); } } void CheckAllCollisions(); Model cubeDirection; void RenderUI() { glDisable(GL_DEPTH_TEST); if (firstPerson) { coins.Translate(cameraPos.x + firstCenter.x, cameraCenter.y + firstCenter.y + 4.4f, cameraPos.z + firstCenter.z); health.Translate(cameraPos.x + firstCenter.x, cameraCenter.y + firstCenter.y + 4.0f, cameraPos.z + firstCenter.z); } else { coins.Translate(cameraCenter.x, cameraCenter.y + 2.2f, cameraCenter.z); health.Translate(cameraCenter.x, cameraCenter.y + 2.0f, cameraCenter.z); } coins.Render(); health.Render(); glEnable(GL_DEPTH_TEST); } void ClearSelected() { for (auto& model : models) model.selected = false; } void SelectUnSelectGroup(int i) { for (auto& model : models) if (model.group == i) model.selected = !model.selected; } void MouseMove() { ImGuiIO& io = ImGui::GetIO(); mouseDeltX = io.MouseDelta.x / 100.0f; mouseDeltY = io.MouseDelta.y / 100.0f; if (io.MouseDown[0] && !ImGui::IsAnyWindowHovered() && !ImGui::IsAnyWindowFocused()) { for (auto& model : models) if (model.selected) model.TranslateAccum(-mouseDeltY, 0, mouseDeltX); if (io.MouseDown[0] && !mouseLock) firstAngle -= mouseDeltX * 10; } } void RenderIMGUI() { CheckAllCollisions(); MouseMove(); cameraPos = GetCharacterPos(); static bool showCode = false; ImGui::Begin("3D Editor"); ImGui::Checkbox("Lock Mouse", &mouseLock); if (ImGui::Button("Unselect All")) ClearSelected(); static int selectedType = 1; ImGui::RadioButton("First Person View", &selectedType, 0); ImGui::SameLine(); ImGui::RadioButton("Third Person View", &selectedType, 1); if (selectedType == 0) firstPerson = true; else firstPerson = false; ImGui::Checkbox("Show Code", &showCode); if (ImGui::CollapsingHeader("Camera Settings")) { if (ImGui::Button("Reset Camera Position")) { cameraPos.x = cameraPos.y = cameraPos.z = 0; cameraCenter.x = cameraCenter.y = cameraCenter.z = 0; angle = 0.0f; radius = 1.5f; } static int selectedType = 1; ImGui::RadioButton("Rotate Around", &selectedType, 0); ImGui::SameLine(); ImGui::RadioButton("Move with Center", &selectedType, 1); rotateAround = false; moveWithCenter = false; if (selectedType == 0) rotateAround = true; if (selectedType == 1) moveWithCenter = true; ImGui::DragFloat3("Camera Eye", &cameraPos.x, 0.1f); ImGui::DragFloat3("Camera Center", &cameraCenter.x, 0.1f); } if (ImGui::CollapsingHeader("UI")) { if (ImGui::Button("Reset Camera Position")) { } ImGui::DragFloat3("Camera Center", &cameraCenter.x, 0.1f); } if (ImGui::CollapsingHeader("Light Settings")) { if (ImGui::Button("Reset Light Setup")) for (size_t i = 0; i < lights.size(); i++) lightColor[0] = lightColor[1] = lightColor[2] = 1.0f; for (size_t i = 0; i < lights.size(); i++) { if (ImGui::CollapsingHeader(std::string("Light " + std::to_string(i)).c_str())) { ImGui::Indent(20); ImGui::ColorEdit3(std::string("Light Color: " + std::to_string(i)).c_str(), lights.at(i).diffuse); ImGui::DragFloat3(std::string("Light Position: " + std::to_string(i)).c_str(), lights.at(i).position, 0.1f); static int selectedType = 0; ImGui::RadioButton("Exponent", &selectedType, 0); ImGui::SameLine(); ImGui::RadioButton("Cutoff", &selectedType, 1); ImGui::SameLine(); ImGui::RadioButton("Direction", &selectedType, 2); if (lights.at(i).type == LightType::EXPONENT) ImGui::DragFloat(std::string("Exponent: " + std::to_string(i)).c_str(), &lights.at(i).exponent, 0.1f); if (lights.at(i).type == LightType::CUTOFF) ImGui::DragFloat(std::string("Cutoff Angle: " + std::to_string(i)).c_str(), &lights.at(i).angle, 0.1f); if (lights.at(i).type == LightType::DIRECTION) ImGui::DragFloat3(std::string("Direction: " + std::to_string(i)).c_str(), lights.at(i).direction, 0.1f); switch (selectedType) { case 0: lights.at(i).type = LightType::EXPONENT; break; case 1: lights.at(i).type = LightType::CUTOFF; break; case 2: lights.at(i).type = LightType::DIRECTION; break; default: break; } ImGui::Unindent(20); } } } ImGui::Spacing(); ImGui::Spacing(); ImGui::Spacing(); if (ImGui::Button("Cube")) { Model* cube = new Model(); cube->CreateCube(); models.push_back(*cube); } ImGui::SameLine(); if (ImGui::Button("Sphere")) { Model* sphere = new Model(); sphere->CreateSphere(); models.push_back(*sphere); } ImGui::SameLine(); if (ImGui::Button("Torus")) { Model* torus = new Model(); torus->CreateTours(); models.push_back(*torus); } if (ImGui::Button("Cylinder")) { Model* cylinder = new Model(); cylinder->CreateCylinder(); models.push_back(*cylinder); } ImGui::SameLine(); if (ImGui::Button("Cone")) { Model* cone = new Model(); cone->CreateCone(); models.push_back(*cone); } ImGui::SameLine(); if (ImGui::Button("Teapot")) { Model* teapot = new Model(); teapot->CreateTeapot(0.5f); models.push_back(*teapot); } if (ImGui::Button("Collision Box")) { Model* cube = new Model(); cube->CreateWireCube(); cube->collider = true; models.push_back(*cube); } ImGui::SameLine(); if (ImGui::Button("Group")) objs.emplace_back("Group" + std::to_string(Randomize(0, 1000))); if (ImGui::Button("3D Model")) { Model* model3D = new Model(); model3D->Assign3DModel(""); models.push_back(*model3D); } ImGui::SameLine(); if (ImGui::Button("Light")) if (lights.size() < GL_MAX_LIGHTS) { LightModel light(lights.size()); lights.push_back(light); } static int i; for (auto& obj : objs) { if (ImGui::Button(std::string("(Un)Select " + obj.name).c_str())) if (!obj.obj.empty()) SelectUnSelectGroup(obj.obj.at(0)->group); ImGui::SameLine(); if (ImGui::CollapsingHeader(std::string("Group " + obj.name).c_str())) { float arr[]{ 0.1, 0.1, 0.1 }; ImGui::DragFloat3(std::string("Position: " + obj.name).c_str(), &obj.transGroup.at(0), 0.1f); ImGui::SameLine(); if (ImGui::Button("Reset Position")) obj.transGroup.at(0) = obj.transGroup.at(1) = obj.transGroup.at(2) = 0.0f; obj.Translate(); ImGui::DragFloat3(std::string("Rotation: " + obj.name).c_str(), &obj.rotateGroup.at(0), 0.1f); ImGui::SameLine(); if (ImGui::Button("Reset Rotation")) obj.rotateGroup.at(0) = obj.rotateGroup.at(1) = obj.rotateGroup.at(2) = 0.0f; obj.Rotate(); if (ImGui::Button(std::string("Duplicate Group " + obj.name).c_str())) { for (auto& model : obj.obj) { Model newModel = *model; newModel.group = objs.size(); newModel.id = std::to_string(model->numofModels++); models.push_back(newModel); } objs.emplace_back(obj.name + std::to_string(Randomize(0, 1000))); SortObjects(); break; } ImGui::Checkbox(std::string("Show Center " + obj.name).c_str(), &obj.showCenter); if (obj.showCenter) { ImGui::DragFloat3(std::string("Center Position: " + obj.name).c_str(), &obj.center.at(0), 0.01f); ImGui::Checkbox(std::string("Centralize: " + obj.name).c_str(), &obj.centralize); if (obj.centralize) obj.CalculateEstimatedCenter(); obj.RenderCenter(); ImGui::Spacing(); ImGui::Spacing(); } ImGui::Indent(20); for (size_t j = 0; j < obj.obj.size(); j++) { if (obj.obj.size() == j) { SortObjects(); break; } std::string name = obj.obj.at(j)->GetPrimitveString() + std::to_string(i++); ShowModelAttributes(*obj.obj.at(j), name); } ImGui::Unindent(20); } ImGui::Spacing(); ImGui::Spacing(); } for (auto& model : models) if (model.group == -1) { std::string name = model.GetPrimitveString() + std::to_string(i++); ShowModelAttributes(model, name); } i = 0; ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate); ImGui::End(); std::string codeString; code.str(""); code << std::setprecision(4) << std::noshowbase; if (models.empty()) code << " \n \n"; for (size_t i = 0; i < models.size(); i++) { Model& model = models.at(i); std::string name = model.GetPrimitveString() + std::to_string(i); if (model.group != -1) code << " // " + name + " of Group " + objs.at(model.group).name + "\n"; else code << " // " + name + "\n"; code << "Model " << name << ";\n"; if (model.GetPrimitive() == Primitive::Cube) code << name << ".CreateCube(" << model.size << ");\n"; if (model.GetPrimitive() == Primitive::WireCube) code << name << ".CreateWireCube(" << model.size << ");\n"; if (model.GetPrimitive() == Primitive::Teapot) code << name << ".CreateTeapot(" << model.size << ");\n"; if (model.GetPrimitive() == Primitive::Tours) code << name << ".CreateTours(" << (model.size) << ", " << (model.modelHeight) << ", " << (model.slices) << ", " << (model.stacks) << ");\n"; if (model.GetPrimitive() == Primitive::Cone) code << name << ".CreateCone(" << (model.size) << ", " << (model.modelHeight) << ", " << (model.slices) << ", " << (model.stacks) << ");\n"; if (model.GetPrimitive() == Primitive::Sphere) code << name << ".CreateSphere(" << (model.size) << ", " << (model.slices) << ", " << (model.stacks) << ");\n"; if (model.GetPrimitive() == Primitive::Cylinder) code << name << ".CreateCylinder(" << (model.size) << ", " << (model.radius) << ", " << (model.modelHeight) << ", " << (model.slices) << ", " << (model.stacks) << ");\n"; if (model.GetPrimitive() == Primitive::Model) code << name << ".Assign3DModel(\"" << model.path << "\");\n"; code << name << ".Translate(" << model.position.at(0) << ", " << model.position.at(1) << ", " << model.position.at(2) << ");\n"; if (model.scale.at(0) != 1 || model.scale.at(1) != 1 || model.scale.at(2) != 1) code << name << ".Scale(" << model.scale.at(0) << ", " << model.scale.at(1) << ", " << model.scale.at(2) << ");\n"; if (model.rotate.at(0) != 0 || model.rotate.at(1) != 0 || model.rotate.at(2) != 0) code << name << ".Rotate(" << model.rotate.at(0) << ", " << model.rotate.at(1) << ", " << model.rotate.at(2) << ");\n"; if (model.color.R != 1 || model.color.G != 1 || model.color.B != 1) code << name << ".SetColor(" << model.color.R << ", " << model.color.G << ", " << model.color.B << ");\n"; if (model.collider) code << name << ".collider = " << "true;\n"; if (model.animated) { code << name << ".animated = " << "true;\n"; code << name << ".SetAnimParam(" << model.transFactor.at(0) << ", " << model.transFactor.at(1) << ", " << model.transFactor.at(2) << ", " << model.rotFactor.at(0) << ", " << model.rotFactor.at(1) << ", " << model.rotFactor.at(2) << ", " << model.scaleFactor.at(0) << ", " << model.scaleFactor.at(1) << ", " << model.scaleFactor.at(2) << ");\n"; } if (model.soundFileName != "") code << name << ".soundFileName = \"" << model.soundFileName << "\";\n"; if (model.animSoundFileName != "") code << name << ".animSoundFileName = \"" << model.animSoundFileName << "\";\n"; if (model.group != -1) code << name << ".group = " << model.group << ";\n"; code << "models.emplace_back(" << name << ");\n\n"; } if (showCode) { ImGui::Begin("Code:"); codeString = code.str(); char* c = const_cast<char*>(codeString.c_str()); if (ImGui::Button("Copy Code")) ImGui::SetClipboardText(c); ImGui::InputTextMultiline("Code: ", c, codeString.length()); ImGui::Text("W, A, S, D Buttons to change Camera's Eye"); ImGui::Text("UP, LEFT, DOWN, RIGHT Arrows to change Camera's Center"); ImGui::End(); } if (updateData) WriteHeader(); WIDTH = glutGet(GLUT_WINDOW_WIDTH); HEIGHT = glutGet(GLUT_WINDOW_HEIGHT); glViewport(0, 0, WIDTH, HEIGHT); } void RenderScene(void) { SetupCamera(); SetupLights(); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glClearColor(0.2f, 0.5f, 0.8f, 1.0f); for (auto& model : models) { if (model.animateNow) if (model.animated) model.Animate(); model.Render(); } RenderUI(); RenderIMGUI(); } bool ModelsIntresect(Model& model1, Model& model2, float x, float z) { if (std::abs((model1.position.at(0) + x) - model2.position.at(0)) < model1.scale.at(0) / 4 + model2.scale.at(0) / 4) if (std::abs(model1.position.at(1) - model2.position.at(1)) < model1.scale.at(1) / 4 + model2.scale.at(1) / 4) if (std::abs((model1.position.at(2) + z) - model2.position.at(2)) < model1.scale.at(2) / 4 + model2.scale.at(2) / 4) return true; return false; } Model* CheckCollision(float x, float z) { for (auto& model : models) if (model.collider) for (auto& modelCollision : models) if (modelCollision.collider && &modelCollision != &model && model.group != -1) if (ModelsIntresect(model, modelCollision, x, z) && objs.at(model.group).name == "Character") { lastHit = &modelCollision; modelCollision.PlaySoundOnce(); return &modelCollision; } lastHit = nullptr; return nullptr; } static int historyNum = 0; void key(unsigned char key, int x, int y) { ImGuiIO& io = ImGui::GetIO(); io.AddInputCharacter(key); if (key == '[') if (modelsHistory.size() - historyNum > 0) { historyNum++; models = modelsHistory[modelsHistory.size() - historyNum]; } //#TODO Work on The Redo if (key == ']') if (historyNum > 1) { historyNum--; models = modelsHistory[(modelsHistory.size() - historyNum)]; } if (key == 'w') { if (moveWithCenter) { cameraCenter.z -= 0.5f; cameraPos.z -= 0.5f; } else radius -= 0.5f; } if (key == 's') if (moveWithCenter) { cameraCenter.z += 0.5f; cameraPos.z += 0.5f; } else radius += 0.5f; if (key == 'a') if (moveWithCenter) { cameraCenter.x -= 0.5f; cameraPos.x -= 0.5f; } else angle -= 5.0f; if (key == 'd') if (moveWithCenter) { cameraCenter.x += 0.5f; cameraPos.x += 0.5f; } else angle += 5.0f; if (key == 'q') cameraPos.y += 0.5f; if (key == 'e') cameraPos.y -= 0.5f; if (key == 'i') cameraCenter.z -= 0.1f; if (key == 'k') cameraCenter.z += 0.1f; if (key == 'j') cameraCenter.x -= 0.1f; if (key == 'l') cameraCenter.x += 0.1f; if (key == 'z') for (auto& model : models) if (model.selected) model.TranslateAccum(0, 0.1, 0); if (key == 'x') for (auto& model : models) if (model.selected) model.TranslateAccum(0, -0.1, 0); if (key == 'r') if (lastHit != nullptr && lastHit->collider && lastHit->animated) { for (auto& model : models) { if (model.animateNow || model.animated) for (size_t i = 0; i < 3; i++) { model.positionAnim[i] = 0.0f; model.rotateAnim[i] = 0.0f; model.scaleAnim[i] = 0.0f; lastHit->positionAnim[i] = 0.0f; lastHit->rotateAnim[i] = 0.0f; lastHit->scaleAnim[i] = 0.0f; } } lastHit->PlayAnimSoundOnce(); lastHit->animateNow = true; for (auto& model : objs.at(lastHit->group).obj) { model->transFactor = lastHit->transFactor; model->rotFactor = lastHit->rotFactor; model->scaleFactor = lastHit->scaleFactor; model->animateNow = true; } } if (key == 't') { angle = -45.11f; radius = 1.5f; } if (key == 'y') { angle = -120.11f; radius = 5.5f; } if (key == 'u') { angle = 7.11f; radius = -7.5f; } } bool CheckCoinsCollision() { std::string name = "coin"; if (objs.at(lastHit->group).name.substr(0, name.length()) == name) { for (auto& model : objs.at(lastHit->group).obj) { model->collider = false; model->hidden = true; } if (lastHit != nullptr) coinsVal += 10; lastHit = nullptr; return true; } return false; } bool CheckKeyCollision1() { std::string name = "key1"; if (objs.at(lastHit->group).name.substr(0, name.length()) == name) { for (auto& model : objs.at(lastHit->group).obj) { model->collider = false; model->hidden = true; } for (auto& model : models) { if (model.group != -1) { if (objs.at(model.group).name == "smallBridge") { model.collider = false; model.hidden = true; } } } return true; } return false; } bool CheckKeyCollision2() { std::string name = "key2"; if (objs.at(lastHit->group).name.substr(0, name.length()) == name) { for (auto& model : objs.at(lastHit->group).obj) { model->collider = false; model->hidden = true; } for (auto& model : models) { if (model.group != -1) { if (objs.at(model.group).name == "chain") { model.collider = false; model.hidden = true; } } } return true; } return false; } bool CheckHealthKitCollision() { std::string name = "HealthKit"; if (objs.at(lastHit->group).name.substr(0, name.length()) == name) { //#TODO HealthKit Collision Logic return true; } return false; } bool CheckDeskCollision() { std::string name = "Desk"; if (objs.at(lastHit->group).name.substr(0, name.length()) == name) { //#TODO Desk Collision Logic return true; } return false; } bool CheckPrescriptionCollision() { std::string name = "prescription"; if (objs.at(lastHit->group).name.substr(0, name.length()) == name) { for (auto& model : models) { if (coinsVal >= 50) { if (model.group != -1) { if (objs.at(model.group).name == "door") { model.collider = false; model.Rotate(0, 150, 0); model.Translate(2.14, 0, -0.34); model.soundFileName = "prescription.wav"; } if (objs.at(model.group).name == "hidee") { model.collider = false; model.hidden = true; } } } } return true; } return false; } void CheckAllCollisions() { if (lastHit == nullptr || lastHit->group == -1) return; if (!CheckCoinsCollision()) if (!CheckKeyCollision1()) if (!CheckKeyCollision2()) if (!CheckDeskCollision()) if (!CheckPrescriptionCollision()) CheckHealthKitCollision(); } void key(int key, int x, int y) { ImGuiIO& io = ImGui::GetIO(); io.AddInputCharacter(key + 256); if (firstPerson) cameraPos = GetCharacterPos(); else cameraCenter = GetCharacterPos(); bool pass = false; const float limit = 0.2f; const float speed = 0.1f; for (auto& model : models) if (model.group != -1) if (objs.at(model.group).name == "Character") { if ((key == GLUT_KEY_DOWN && CheckCollision(-limit, 0.0f) == nullptr) || (key == GLUT_KEY_UP && CheckCollision(limit, 0.0f) == nullptr) || (key == GLUT_KEY_LEFT && CheckCollision(0.0f, -limit) == nullptr) || (key == GLUT_KEY_RIGHT && CheckCollision(0.0f, limit) == nullptr)) pass = true; if (pass) if (key == GLUT_KEY_UP) { model.TranslateAccum(speed, 0.0f, 0.0f); if (firstPerson) cameraCenter.z -= speed; else cameraPos.z -= speed; } else if (key == GLUT_KEY_DOWN) { model.TranslateAccum(-speed, 0.0f, 0.0f); if (firstPerson) cameraCenter.z += speed; else cameraPos.z += speed; } else if (key == GLUT_KEY_LEFT) { model.TranslateAccum(0.0f, 0.0f, -speed); if (firstPerson) cameraCenter.x -= speed; else cameraPos.x += speed; } else if (key == GLUT_KEY_RIGHT) { model.TranslateAccum(0.0f, 0.0f, speed); if (firstPerson) cameraCenter.x += speed; else cameraPos.x -= speed; } } } void glut_display_func() { // Start the Dear ImGui frame ImGui_ImplOpenGL2_NewFrame(); ImGui_ImplGLUT_NewFrame(); RenderScene(); // Rendering ImGui::Render(); ImGuiIO& io = ImGui::GetIO(); ImGui_ImplOpenGL2_RenderDrawData(ImGui::GetDrawData()); glutSwapBuffers(); glutPostRedisplay(); } void Generate(int value) { GenerateModels(models, objs); } void WriteHeader() { time_t now = time(0); tm* ltm = localtime(&now); std::stringstream groupCode; for (size_t i = 0; i < objs.size(); i++) { std::string groupName = objs.at(i).name + std::to_string(i); groupCode << "Object " << groupName << "(\"" << objs.at(i).name << "\");\n"; if (!objs.at(i).centralize) groupCode << groupName + ".centralize = false;\n"; if (objs.at(i).center.at(0) == 0 && objs.at(i).center.at(1) == 0 && objs.at(i).center.at(2) == 0) groupCode << groupName + ".SetCenter(" << objs.at(i).center.at(0) << "," << objs.at(i).center.at(1) << "," << objs.at(i).center.at(2) << ");\n"; if (objs.at(i).transGroup.at(0) == 0 && objs.at(i).transGroup.at(1) == 0 && objs.at(i).transGroup.at(2) == 0) groupCode << groupName + ".SetGroupTranslate(" << objs.at(i).transGroup.at(0) << "," << objs.at(i).transGroup.at(1) << "," << objs.at(i).transGroup.at(2) << ");\n"; if (objs.at(i).rotateGroup.at(0) == 0 && objs.at(i).rotateGroup.at(1) == 0 && objs.at(i).rotateGroup.at(2) == 0) groupCode << groupName + ".SetGroupRotate(" << objs.at(i).rotateGroup.at(0) << "," << objs.at(i).rotateGroup.at(1) << "," << objs.at(i).rotateGroup.at(2) << ");\n"; groupCode << "objs" << ".emplace_back(" << groupName << ");\n\n"; } if (backup) { std::stringstream path; path << "src/backup/" << 1900 + ltm->tm_year << "-" << ltm->tm_mon << "-" << ltm->tm_mday << " at " << ltm->tm_hour << "." << ltm->tm_min << "." << ltm->tm_sec << ".h"; std::string pathStr = path.str(); std::ofstream myFile(pathStr); if (myFile.is_open()) { myFile << "#pragma once\n#include \"Model.h\"\nvoid GenerateModels(std::vector<Model>& models, std::vector<Object>& objs)\n{\n\n"; myFile << "//Backup at: " << 1900 + ltm->tm_year << "-" << ltm->tm_mon << "-" << ltm->tm_mday << " at: " << ltm->tm_hour << ":" << ltm->tm_min << ":" << ltm->tm_sec << "\n\n"; myFile << groupCode.str(); myFile << code.str(); myFile << "}\n"; } } else { std::ofstream myFile("src/ModelsGenerator.h"); if (myFile.is_open()) { myFile << "#pragma once\n#include \"Model.h\"\nvoid GenerateModels(std::vector<Model>& models, std::vector<Object>& objs)\n{\n\n"; myFile << groupCode.str(); myFile << code.str(); myFile << "}\n"; } } } void HistoryTimer(int value) { bool same = true; //#TODO Optimize to only include the changed if (!modelsHistory.empty()) for (size_t i = 0; i < (models.size() < modelsHistory.at(modelsHistory.size() - 1).size() ? models.size() : modelsHistory.at(modelsHistory.size() - 1).size()); i++) { Model& modelHis = modelsHistory.at(modelsHistory.size() - 1).at(i); Model& model = models.at(i); for (size_t i = 0; i < model.position.size(); i++) if (model.position.at(i) != modelHis.position.at(i) || model.groupTrans.at(i) != modelHis.groupTrans.at(i) || model.scale.at(i) != modelHis.scale.at(i) || model.rotate.at(i) != modelHis.rotate.at(i)) same = false; } else same = false; if (!same) { modelsHistory.erase(modelsHistory.end() - historyNum, modelsHistory.end()); historyNum = 0; modelsHistory.push_back(models); } glutTimerFunc(2000, HistoryTimer, 2000); } void WriteHeaderBackup() { backup = true; WriteHeader(); } int main(int argc, char** argv) { srand(time(0)); float R = (float)((rand() % 100) / 100.0f); glutInit(&argc, argv); glutInitDisplayMode(GLUT_DEPTH | GLUT_DOUBLE | GLUT_RGB); glutInitWindowPosition(100, 100); glutInitWindowSize(WIDTH, HEIGHT); glutCreateWindow("Garden Game"); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable(GL_BLEND); glEnable(GL_DEPTH_TEST); glEnable(GL_LIGHTING); glEnable(GL_LIGHT0); glEnable(GL_NORMALIZE); glEnable(GL_COLOR_MATERIAL); glEnable(GL_TEXTURE_2D); glPixelStorei(GL_UNPACK_ALIGNMENT, 1); IMGUI_CHECKVERSION(); ImGui::CreateContext(); ImGuiIO& io = ImGui::GetIO(); (void)io; ImGui::StyleColorsDark(); ImGui_ImplGLUT_Init(); ImGui_ImplGLUT_InstallFuncs(); ImGui_ImplOpenGL2_Init(); gluOrtho2D(0, WIDTH, 0, HEIGHT); glutDisplayFunc(glut_display_func); glutKeyboardFunc(key); glutSpecialFunc(key); Generate(100); glutTimerFunc(10, HistoryTimer, 10); SortObjects(); std::atexit(WriteHeaderBackup); for (auto& model : models) { if (model.GetPrimitive() == Primitive::WireCube) model.collider = true; model.hidden = false; if (model.group != -1) { if (objs.at(model.group).name == "Character") { objs.at(model.group).obj.at(0)->position.at(0) = 1.13; objs.at(model.group).obj.at(0)->position.at(1) = 0; objs.at(model.group).obj.at(0)->position.at(2) = -1.1; objs.at(model.group).obj.at(1)->position.at(0) = 1.1; objs.at(model.group).obj.at(1)->position.at(1) = 0.64; objs.at(model.group).obj.at(1)->position.at(2) = -1.08; } if (objs.at(model.group).name == "door") { objs.at(model.group).obj.at(0)->Translate(2.33, 0, 0.04); objs.at(model.group).obj.at(0)->Rotate(0, 90, 0); objs.at(model.group).obj.at(1)->Translate(2.35, 0.870, 0.04); objs.at(model.group).obj.at(1)->Rotate(0, 90, 0); } } } glEnable(GL_DEPTH_TEST); glEnable(GL_LIGHTING); glEnable(GL_LIGHT0); glEnable(GL_NORMALIZE); glEnable(GL_COLOR_MATERIAL); glShadeModel(GL_SMOOTH); LightModel baseLight(0); baseLight.SetPosition(5.6f, 10.0f, 7.5f); lights.push_back(baseLight); glutMainLoop(); // Cleanup ImGui_ImplOpenGL2_Shutdown(); ImGui_ImplGLUT_Shutdown(); ImGui::DestroyContext(); return 1; }
[ "abdullah.safaan@gmail.com" ]
abdullah.safaan@gmail.com
c2a15d0237b9b3237da51588b84ee98e8a46da28
fbd563aafc1c5b5a54e1d1f78b5328f1a51a3540
/chrome/updater/app/server/win/server.h
a4b75cd100ebc7bd4241949f46372464a4ce8e38
[ "BSD-3-Clause" ]
permissive
EiraGe/chromium
47e40a127cdfcd89b8eac93c23572c8762ce4913
4aab8648a821dd0c432b1b5abc2435723a272d98
refs/heads/master
2022-12-04T17:32:53.054384
2020-06-25T20:55:34
2020-06-25T20:55:34
246,615,946
0
0
BSD-3-Clause
2020-03-11T15:58:42
2020-03-11T15:58:41
null
UTF-8
C++
false
false
3,428
h
// 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. #ifndef CHROME_UPDATER_APP_SERVER_WIN_SERVER_H_ #define CHROME_UPDATER_APP_SERVER_WIN_SERVER_H_ #include <wrl/implements.h> #include <wrl/module.h> #include <string> #include "base/memory/scoped_refptr.h" #include "base/sequenced_task_runner.h" #include "base/win/scoped_com_initializer.h" #include "chrome/updater/app/app.h" #include "chrome/updater/update_service.h" namespace updater { class Configurator; class UpdateService; // The COM objects involved in this server are free threaded. Incoming COM calls // arrive on COM RPC threads. Outgoing COM calls are posted from a blocking // sequenced task runner in the thread pool. Calls to the update service occur // in the main sequence, which is bound to the main thread. // // The free-threaded COM objects exposed by this server are entered either by // COM RPC threads, when their functions are invoked by COM clients, or by // threads from the updater's thread pool, when callbacks posted by the // update service are handled. Access to the shared state maintained by these // objects is synchronized by a lock. The sequencing of callbacks is ensured // by using a sequenced task runner, since the callbacks can't use base // synchronization primitives on the main sequence where they are posted from. // // This class is responsible for the lifetime of the COM server, as well as // class factory registration. // // The instance of the this class is managed by a singleton and it leaks at // runtime. class ComServerApp : public App { public: ComServerApp(); scoped_refptr<base::SequencedTaskRunner> main_task_runner() { return main_task_runner_; } scoped_refptr<UpdateService> service() { return service_; } private: ~ComServerApp() override; // Overrides for App. void InitializeThreadPool() override; void Initialize() override; void FirstTaskRun() override; // Registers and unregisters the out-of-process COM class factories. HRESULT RegisterClassObjects(); void UnregisterClassObjects(); // Waits until the last COM object is released. void WaitForExitSignal(); // Called when the last object is released. void SignalExit(); // Creates an out-of-process WRL Module. void CreateWRLModule(); // Handles object unregistration then triggers program shutdown. This // function runs on a COM RPC thread when the WRL module is destroyed. void Stop(); // Identifier of registered class objects used for unregistration. DWORD cookies_[2] = {}; // While this object lives, COM can be used by all threads in the program. base::win::ScopedCOMInitializer com_initializer_; // Task runner bound to the main sequence and the update service instance. scoped_refptr<base::SequencedTaskRunner> main_task_runner_; // The UpdateService to use for handling the incoming COM requests. This // instance of the service runs the in-process update service code, which is // delegating to the update_client component. scoped_refptr<UpdateService> service_; // The updater's Configurator. scoped_refptr<Configurator> config_; }; // Returns a singleton application object bound to this COM server. scoped_refptr<ComServerApp> AppServerSingletonInstance(); } // namespace updater #endif // CHROME_UPDATER_APP_SERVER_WIN_SERVER_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
72e33e58136949c64300055202c1fc5c83f9a0f2
8c7af9fedd99d385089aa13d9cfb6c932a64aac1
/实验3-2/MFCApplication1/MFCApplication1Doc.h
63d4b4226d1832085958c8ab017252fe57013fac
[]
no_license
zhang1-meili/Test2
9355592fc11ec75ebfc863e2d92a791ee813031c
676db7f31192bbaa74a3bd8bd60350dcf004e294
refs/heads/master
2021-05-23T20:00:20.265851
2020-05-26T07:47:48
2020-06-02T06:21:23
253,441,721
0
0
null
null
null
null
GB18030
C++
false
false
927
h
// MFCApplication1Doc.h : CMFCApplication1Doc 类的接口 // #pragma once class CMFCApplication1Doc : public CDocument { protected: // 仅从序列化创建 CMFCApplication1Doc(); DECLARE_DYNCREATE(CMFCApplication1Doc) // 特性 public: // 操作 public: CArray <CRect, CRect&> ca; // 重写 public: virtual BOOL OnNewDocument(); virtual void Serialize(CArchive& ar); #ifdef SHARED_HANDLERS virtual void InitializeSearchContent(); virtual void OnDrawThumbnail(CDC& dc, LPRECT lprcBounds); #endif // SHARED_HANDLERS // 实现 public: virtual ~CMFCApplication1Doc(); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: // 生成的消息映射函数 protected: DECLARE_MESSAGE_MAP() #ifdef SHARED_HANDLERS // 用于为搜索处理程序设置搜索内容的 Helper 函数 void SetSearchContent(const CString& value); #endif // SHARED_HANDLERS };
[ "1031601344@qq.com" ]
1031601344@qq.com
42460ad64d0a4f122e13de919b3ebff2bc0478d8
5df66b7c0cf0241831ea7d8345aa4102f77eba03
/Carberp Botnet/source - absource/pro/all source/BlackJoeWhiteJoe/include/pipnss/nsIKeyModule.h
c58f16d5c2f5366d05d282dd7c46d65a13b5e940
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
bengalm/fireroothacker
e8f20ae69f4246fc4fe8c48bbb107318f7a79265
ceb71ba972caca198524fe91a45d1e53b80401f6
refs/heads/main
2023-04-02T03:00:41.437494
2021-04-06T00:26:28
2021-04-06T00:26:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,247
h
/* * DO NOT EDIT. THIS FILE IS GENERATED FROM e:/builds/moz2_slave/mozilla-1.9.1-win32-xulrunner/build/security/manager/ssl/public/nsIKeyModule.idl */ #ifndef __gen_nsIKeyModule_h__ #define __gen_nsIKeyModule_h__ #ifndef __gen_nsISupports_h__ #include "nsISupports.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define NS_NO_VTABLE #endif /* starting interface: nsIKeyObject */ #define NS_IKEYOBJECT_IID_STR "4b31f4ed-9424-4710-b946-79b7e33cf3a8" #define NS_IKEYOBJECT_IID \ {0x4b31f4ed, 0x9424, 0x4710, \ { 0xb9, 0x46, 0x79, 0xb7, 0xe3, 0x3c, 0xf3, 0xa8 }} class NS_NO_VTABLE NS_SCRIPTABLE nsIKeyObject : public nsISupports { public: NS_DECLARE_STATIC_IID_ACCESSOR(NS_IKEYOBJECT_IID) enum { SYM_KEY = 1 }; enum { PRIVATE_KEY = 2 }; enum { PUBLIC_KEY = 3 }; enum { RC4 = 1 }; enum { AES_CBC = 2 }; enum { HMAC = 257 }; /* [noscript] void initKey (in short aAlgorithm, in voidPtr aKey); */ NS_IMETHOD InitKey(PRInt16 aAlgorithm, void * aKey) = 0; /* [noscript] voidPtr getKeyObj (); */ NS_IMETHOD GetKeyObj(void * *_retval NS_OUTPARAM) = 0; /* short getType (); */ NS_SCRIPTABLE NS_IMETHOD GetType(PRInt16 *_retval NS_OUTPARAM) = 0; }; NS_DEFINE_STATIC_IID_ACCESSOR(nsIKeyObject, NS_IKEYOBJECT_IID) /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSIKEYOBJECT \ NS_IMETHOD InitKey(PRInt16 aAlgorithm, void * aKey); \ NS_IMETHOD GetKeyObj(void * *_retval NS_OUTPARAM); \ NS_SCRIPTABLE NS_IMETHOD GetType(PRInt16 *_retval NS_OUTPARAM); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSIKEYOBJECT(_to) \ NS_IMETHOD InitKey(PRInt16 aAlgorithm, void * aKey) { return _to InitKey(aAlgorithm, aKey); } \ NS_IMETHOD GetKeyObj(void * *_retval NS_OUTPARAM) { return _to GetKeyObj(_retval); } \ NS_SCRIPTABLE NS_IMETHOD GetType(PRInt16 *_retval NS_OUTPARAM) { return _to GetType(_retval); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSIKEYOBJECT(_to) \ NS_IMETHOD InitKey(PRInt16 aAlgorithm, void * aKey) { return !_to ? NS_ERROR_NULL_POINTER : _to->InitKey(aAlgorithm, aKey); } \ NS_IMETHOD GetKeyObj(void * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetKeyObj(_retval); } \ NS_SCRIPTABLE NS_IMETHOD GetType(PRInt16 *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(_retval); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsKeyObject : public nsIKeyObject { public: NS_DECL_ISUPPORTS NS_DECL_NSIKEYOBJECT nsKeyObject(); private: ~nsKeyObject(); protected: /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsKeyObject, nsIKeyObject) nsKeyObject::nsKeyObject() { /* member initializers and constructor code */ } nsKeyObject::~nsKeyObject() { /* destructor code */ } /* [noscript] void initKey (in short aAlgorithm, in voidPtr aKey); */ NS_IMETHODIMP nsKeyObject::InitKey(PRInt16 aAlgorithm, void * aKey) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] voidPtr getKeyObj (); */ NS_IMETHODIMP nsKeyObject::GetKeyObj(void * *_retval NS_OUTPARAM) { return NS_ERROR_NOT_IMPLEMENTED; } /* short getType (); */ NS_IMETHODIMP nsKeyObject::GetType(PRInt16 *_retval NS_OUTPARAM) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif /* starting interface: nsIKeyObjectFactory */ #define NS_IKEYOBJECTFACTORY_IID_STR "264eb54d-e20d-49a0-890c-1a5986ea81c4" #define NS_IKEYOBJECTFACTORY_IID \ {0x264eb54d, 0xe20d, 0x49a0, \ { 0x89, 0x0c, 0x1a, 0x59, 0x86, 0xea, 0x81, 0xc4 }} class NS_NO_VTABLE NS_SCRIPTABLE nsIKeyObjectFactory : public nsISupports { public: NS_DECLARE_STATIC_IID_ACCESSOR(NS_IKEYOBJECTFACTORY_IID) /* nsIKeyObject lookupKeyByName (in ACString aName); */ NS_SCRIPTABLE NS_IMETHOD LookupKeyByName(const nsACString & aName, nsIKeyObject **_retval NS_OUTPARAM) = 0; /* nsIKeyObject unwrapKey (in short aAlgorithm, [array, size_is (aWrappedKeyLen), const] in octet aWrappedKey, in unsigned long aWrappedKeyLen); */ NS_SCRIPTABLE NS_IMETHOD UnwrapKey(PRInt16 aAlgorithm, const PRUint8 *aWrappedKey, PRUint32 aWrappedKeyLen, nsIKeyObject **_retval NS_OUTPARAM) = 0; /* nsIKeyObject keyFromString (in short aAlgorithm, in ACString aKey); */ NS_SCRIPTABLE NS_IMETHOD KeyFromString(PRInt16 aAlgorithm, const nsACString & aKey, nsIKeyObject **_retval NS_OUTPARAM) = 0; }; NS_DEFINE_STATIC_IID_ACCESSOR(nsIKeyObjectFactory, NS_IKEYOBJECTFACTORY_IID) /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSIKEYOBJECTFACTORY \ NS_SCRIPTABLE NS_IMETHOD LookupKeyByName(const nsACString & aName, nsIKeyObject **_retval NS_OUTPARAM); \ NS_SCRIPTABLE NS_IMETHOD UnwrapKey(PRInt16 aAlgorithm, const PRUint8 *aWrappedKey, PRUint32 aWrappedKeyLen, nsIKeyObject **_retval NS_OUTPARAM); \ NS_SCRIPTABLE NS_IMETHOD KeyFromString(PRInt16 aAlgorithm, const nsACString & aKey, nsIKeyObject **_retval NS_OUTPARAM); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSIKEYOBJECTFACTORY(_to) \ NS_SCRIPTABLE NS_IMETHOD LookupKeyByName(const nsACString & aName, nsIKeyObject **_retval NS_OUTPARAM) { return _to LookupKeyByName(aName, _retval); } \ NS_SCRIPTABLE NS_IMETHOD UnwrapKey(PRInt16 aAlgorithm, const PRUint8 *aWrappedKey, PRUint32 aWrappedKeyLen, nsIKeyObject **_retval NS_OUTPARAM) { return _to UnwrapKey(aAlgorithm, aWrappedKey, aWrappedKeyLen, _retval); } \ NS_SCRIPTABLE NS_IMETHOD KeyFromString(PRInt16 aAlgorithm, const nsACString & aKey, nsIKeyObject **_retval NS_OUTPARAM) { return _to KeyFromString(aAlgorithm, aKey, _retval); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSIKEYOBJECTFACTORY(_to) \ NS_SCRIPTABLE NS_IMETHOD LookupKeyByName(const nsACString & aName, nsIKeyObject **_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->LookupKeyByName(aName, _retval); } \ NS_SCRIPTABLE NS_IMETHOD UnwrapKey(PRInt16 aAlgorithm, const PRUint8 *aWrappedKey, PRUint32 aWrappedKeyLen, nsIKeyObject **_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->UnwrapKey(aAlgorithm, aWrappedKey, aWrappedKeyLen, _retval); } \ NS_SCRIPTABLE NS_IMETHOD KeyFromString(PRInt16 aAlgorithm, const nsACString & aKey, nsIKeyObject **_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->KeyFromString(aAlgorithm, aKey, _retval); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsKeyObjectFactory : public nsIKeyObjectFactory { public: NS_DECL_ISUPPORTS NS_DECL_NSIKEYOBJECTFACTORY nsKeyObjectFactory(); private: ~nsKeyObjectFactory(); protected: /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsKeyObjectFactory, nsIKeyObjectFactory) nsKeyObjectFactory::nsKeyObjectFactory() { /* member initializers and constructor code */ } nsKeyObjectFactory::~nsKeyObjectFactory() { /* destructor code */ } /* nsIKeyObject lookupKeyByName (in ACString aName); */ NS_IMETHODIMP nsKeyObjectFactory::LookupKeyByName(const nsACString & aName, nsIKeyObject **_retval NS_OUTPARAM) { return NS_ERROR_NOT_IMPLEMENTED; } /* nsIKeyObject unwrapKey (in short aAlgorithm, [array, size_is (aWrappedKeyLen), const] in octet aWrappedKey, in unsigned long aWrappedKeyLen); */ NS_IMETHODIMP nsKeyObjectFactory::UnwrapKey(PRInt16 aAlgorithm, const PRUint8 *aWrappedKey, PRUint32 aWrappedKeyLen, nsIKeyObject **_retval NS_OUTPARAM) { return NS_ERROR_NOT_IMPLEMENTED; } /* nsIKeyObject keyFromString (in short aAlgorithm, in ACString aKey); */ NS_IMETHODIMP nsKeyObjectFactory::KeyFromString(PRInt16 aAlgorithm, const nsACString & aKey, nsIKeyObject **_retval NS_OUTPARAM) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #endif /* __gen_nsIKeyModule_h__ */
[ "ludi@ps.ac.cn" ]
ludi@ps.ac.cn
a1395fb345da06b987db523034a128b6415e7904
356dc08b712d5cc23d1f0faacae01a145ba01f0b
/Src/sslib/Path.h
09ef91817f9d9f2d608b1d8dc91b357a21649df9
[ "LicenseRef-scancode-nysl-0.9982" ]
permissive
ytakanashi/TimeStampKeeper
80f2840dbce627cf8766ee26d3495621fc782486
8593bd23ec2e34dadc1c90886ec892502babd5ce
refs/heads/master
2021-12-14T13:38:46.311925
2021-12-06T10:47:19
2021-12-06T10:47:19
56,291,207
0
0
null
null
null
null
UTF-8
C++
false
false
4,026
h
//Path.h #ifndef _PATH_H_CF78ED0E_4800_4E6F_903D_7DDF669BD13F #define _PATH_H_CF78ED0E_4800_4E6F_903D_7DDF669BD13F namespace sslib{ namespace path{ //スペースが含まれていれば'"'で囲む tstring quote(const tstring& file_path); //MAX_PATHを超えるパスの為の接頭辞'\\?\'を追加 tstring addLongPathPrefix(const tstring& file_path); //MAX_PATHを超えるパスの為の接頭辞'\\?\'を削除 tstring removeLongPathPrefix(const tstring& file_path); //ディレクトリを再帰的に検索してlistに追加 void recursiveSearch(std::list<tstring>* path_list,const TCHAR* search_dir,const TCHAR* wildcard=_T("*"),bool include_dir=false); //ファイル名に使えない文字が含まれるかどうか bool isBadName(const TCHAR* file_name); //末尾にスラッシュ/バックスラッシュを追加 tstring addTailSlash(const tstring& file_path); //末尾のスラッシュ/バックスラッシュを削除 tstring removeTailSlash(const tstring& file_path); //区切り文字を推測、含まれなければ'\'を返す inline int guessDelimiter(const TCHAR* file_path){ return (str::locateLastCharacter(file_path,'\\')!=-1)? '\\': (str::locateLastCharacter(file_path,'/')!=-1)? '/': '\\'; } //カレントディレクトリを取得 tstring getCurrentDirectory(); //親ディレクトリを取得 tstring getParentDirectory(const tstring& file_path_orig); //ルートディレクトリを取得 tstring getRootDirectory(const tstring& file_path); //ルートディレクトリを削除 tstring removeRootDirectory(const tstring& file_path); //実行ファイル名を取得 tstring getExeName(); //実行ファイルのディレクトリを取得 tstring getExeDirectory(); //ファイル名を取得 tstring getFileName(const tstring& file_path_orig); //拡張子を削除 tstring removeExtension(const tstring& file_path); //拡張子を取得 tstring getExtension(const tstring& file_path); //短いファイル名を取得 tstring getShortPathName(const TCHAR* file_path); //長いファイル名を取得 tstring getLongPathName(const TCHAR* file_path); //二重引用符を取り除く tstring removeQuotation(const tstring& file_path); //末尾の条件に合致する文字を削除 tstring removeLastCharacters(const tstring& file_path,int(*check)(int c)); //末尾の記号を削除 tstring removeLastSymbols(const tstring& file_path); //末尾の数字を削除 tstring removeLastNumbers(const tstring& file_path); //末尾の数字と記号を削除 tstring removeLastNumbersAndSymbols(const tstring& file_path); //末尾のスペースとドットを削除 tstring removeSpacesAndDots(const tstring& file_path); //一時ディレクトリのパスを取得(末尾に\有り) tstring getTempDirPath(); //相対パスを取得する //注意:ディレクトリの場合末尾に区切り文字が追加される tstring makeRelativePath(const TCHAR* base_path_orig,DWORD base_path_attr,const TCHAR* file_path_orig,DWORD file_path_attr); //ルートであるか否か bool isRoot(const TCHAR* file_path); //絶対パスであるか否か bool isAbsolutePath(const TCHAR* file_path); //相対パスであるか否か bool isRelativePath(const TCHAR* file_path); //ディレクトリであるかどうか bool isDirectory(const TCHAR* file_path); //ファイルが存在するか否か bool fileExists(const TCHAR* file_path); //空のディレクトリである bool isEmptyDirectory(const TCHAR* dir_path); //フルパスを取得 bool getFullPath(TCHAR* full_path,unsigned int buffer_size,const TCHAR*relative_path,const TCHAR*base_dir=NULL); //ワイルドカードを含むパスである bool containsWildcard(const TCHAR* file_path); //分割ファイル名の拡張子を作成 tstring createPartExtension(long count,int digit=3); //namespace path } //namespace sslib } #endif //_PATH_H_CF78ED0E_4800_4E6F_903D_7DDF669BD13F
[ "Y.R.Takanashi@gmail.com" ]
Y.R.Takanashi@gmail.com
f1472f2e47bd6e840d28f5f37dafa5b760cb9e94
2ae76b911b189aa971cb88b68382580ba30128b4
/SapphireBase/SapphireCPakReader.cpp
0ef71864566e1cd2a796a82fa95fa92224d2cfdf
[]
no_license
zxycode007/Sapphire
c863733e69523d03b19c2f6db9ec67498aec282b
710f538d1c0fe0a70f49d35a5c70d4ce6d133b9f
refs/heads/master
2021-01-21T04:54:55.316069
2016-06-24T10:38:58
2016-06-24T10:38:58
45,906,974
1
0
null
null
null
null
UTF-8
C++
false
false
3,982
cpp
#include "SapphireCPakReader.h" #ifdef _SAPPHIRE_COMPILE_WITH_PAK_ARCHIVE_LOADER_ #include "SapphireOS.h" #include "SapphireCoreUtil.h" namespace Sapphire { inline bool isHeaderValid(const SPAKFileHeader& header) { const c8* tag = header.tag; return tag[0] == 'P' && tag[1] == 'A' && tag[2] == 'C' && tag[3] == 'K'; } //! Constructor CArchiveLoaderPAK::CArchiveLoaderPAK(IFileSystem* fs) : FileSystem(fs) { #ifdef _DEBUG setDebugName("CArchiveLoaderPAK"); #endif } //! returns true if the file maybe is able to be loaded by this class bool CArchiveLoaderPAK::isALoadableFileFormat(const path& filename) const { return hasFileExtension(filename, "pak"); } //! Check to see if the loader can create archives of this type. bool CArchiveLoaderPAK::isALoadableFileFormat(E_FILE_ARCHIVE_TYPE fileType) const { return fileType == EFAT_PAK; } //! Creates an archive from the filename /** \param file File handle to check. \return Pointer to newly created archive, or 0 upon error. */ IFileArchive* CArchiveLoaderPAK::createArchive(const path& filename, bool ignoreCase, bool ignorePaths) const { IFileArchive *archive = 0; IReadFile* file = FileSystem->createAndOpenFile(filename); if (file) { archive = createArchive(file, ignoreCase, ignorePaths); file->drop(); } return archive; } //! creates/loads an archive from the file. //! \return Pointer to the created archive. Returns 0 if loading failed. IFileArchive* CArchiveLoaderPAK::createArchive(IReadFile* file, bool ignoreCase, bool ignorePaths) const { IFileArchive *archive = 0; if (file) { file->seek(0); archive = new CPakReader(file, ignoreCase, ignorePaths); } return archive; } //! Check if the file might be loaded by this class /** Check might look into the file. \param file File handle to check. \return True if file seems to be loadable. */ bool CArchiveLoaderPAK::isALoadableFileFormat(IReadFile* file) const { SPAKFileHeader header; file->read(&header, sizeof(header)); return isHeaderValid(header); } /*! PAK Reader */ CPakReader::CPakReader(IReadFile* file, bool ignoreCase, bool ignorePaths) : CFileList((file ? file->getFileName() : path("")), ignoreCase, ignorePaths), File(file) { #ifdef _DEBUG setDebugName("CPakReader"); #endif if (File) { File->grab(); scanLocalHeader(); sort(); } } CPakReader::~CPakReader() { if (File) File->drop(); } const IFileList* CPakReader::getFileList() const { return this; } bool CPakReader::scanLocalHeader() { SPAKFileHeader header; // Read and validate the header File->read(&header, sizeof(header)); if (!isHeaderValid(header)) return false; // Seek to the table of contents #if (SAPPHIRE_CONFIG_ENDIAN == SAPPHIRE_BIG_ENDIAN) header.offset = Byteswap::byteswap(header.offset); header.length = Byteswap::byteswap(header.length); #endif File->seek(header.offset); const int numberOfFiles = header.length / sizeof(SPAKFileEntry); // Loop through each entry in the table of contents for (int i = 0; i < numberOfFiles; i++) { // read an entry SPAKFileEntry entry; File->read(&entry, sizeof(entry)); #ifdef _DEBUG Printer::log(entry.name); #endif #if (SAPPHIRE_CONFIG_ENDIAN == SAPPHIRE_BIG_ENDIAN) entry.offset = Byteswap::byteswap(entry.offset); entry.length = Byteswap::byteswap(entry.length); #endif addItem(path(entry.name), entry.offset, entry.length, false); } return true; } //! opens a file by file name IReadFile* CPakReader::createAndOpenFile(const path& filename) { SINT32 index = findFile(filename, false); if (index != -1) return createAndOpenFile(index); return 0; } //! opens a file by index IReadFile* CPakReader::createAndOpenFile(UINT32 index) { if (index >= Files.size()) return 0; const SFileListEntry &entry = Files[index]; return createLimitReadFile(entry.FullName, File, entry.Offset, entry.Size); } } #endif
[ "373982141@qq.com" ]
373982141@qq.com
27e37e04c411c4376e4d9e2a312663b27a946a00
56a7a0bf05cb154f7996918beeff7819841d7fd3
/tile.cpp
9459c04c89a9c1df057361373b773f16da4dbde2
[]
no_license
jpfingst/snake_v1
f7306378d00f420d166bfceb75ac7a0771c4c1e1
973000bebe040d6541f7ab8417f57b59e8cf7b89
refs/heads/master
2020-04-13T01:47:51.211689
2018-12-23T11:07:45
2018-12-23T11:07:45
162,883,972
0
0
null
null
null
null
UTF-8
C++
false
false
351
cpp
#include "tile.h" Tile::Tile(float x, float y, int tileType) { box.x = x; box.y = y; box.w = TILE_WIDTH; box.h = TILE_HEIGHT; this->type = tileType; } Tile::~Tile() { } void Tile::render() { gTileTexture.render( box.x, box.y, &gTileClips[ type ] ); } int Tile::getType() { return type; } SDL_Rect Tile::getBox() { return box; }
[ "juergen.pfingstner@gmail.com" ]
juergen.pfingstner@gmail.com
97b046a1af81d082bbcc30b0315f6efcb78ad7ae
94516a020ccdb5b154669c96bdcdbd17ef0bc5a2
/Source/qtPlist/plistparser.h
a1d19821b12abf57a6221a897267395aff9538c6
[ "Zlib" ]
permissive
raydelto/Turquoise2D
d5380e01fa9cc8a8685ca0e385d67df080274ece
247a0e747d8750248db12f830c9408a85d4712bc
refs/heads/master
2022-09-06T13:59:32.477183
2020-05-28T02:51:28
2020-05-28T02:51:28
266,917,031
0
0
Zlib
2020-05-26T01:35:20
2020-05-26T01:35:19
null
UTF-8
C++
false
false
414
h
#pragma once // Qt includes #include <QIODevice> #include <QVariant> #include <QVariantList> #include <QVariantMap> #include <QDomElement> class PListParser { public: static QVariant parsePList(QIODevice *device); private: static QVariant parseElement(const QDomElement &e); static QVariantList parseArrayElement(const QDomElement& node); static QVariantMap parseDictElement(const QDomElement& element); };
[ "erayzesen@gmail.com" ]
erayzesen@gmail.com
209fc2b03daeaee98aa64f246591be41b7f72726
13a239fb1ea5500b926fbb66709557fa2bf7a466
/main.cpp
aa8a4c354d68bbe80d6dd4523c749242a456f3f1
[]
no_license
DesislavaPA/OpticsApp
21ac9ae40470aa1783392cadf7a43b9fc15e461b
9a377d4ad408fc0efa7714677a47903ab260c290
refs/heads/main
2023-01-23T14:05:23.469974
2020-12-02T12:25:32
2020-12-02T12:25:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,105
cpp
#include <iostream> #include <fstream> #include <string.h> #include <stdlib.h> #include <stdio.h> #include <errno.h> #include <cstring> #include <vector> #include <iomanip> #include <bits/stdc++.h> #include "./include/Suppliers.h" #include "./include/Materials.h" #include "./include/Optics.h" #include "./include/main.h" using namespace std; /*Local DB*/ vector <Suppliers> v_suppliers; vector <Optics> v_optics; /*using manipulators to format the output to print the DB as table*/ void printElement(string text, int width) { const char separator = ' '; cout << left << setw(width) << setfill(separator) << text; } /*By given bulstat to find how many optics entries he has in the DB*/ int get_optics_count(string bulstat) { int count = 0; for(int i = 0; i < v_optics.size(); i++) { if(!bulstat.compare(v_optics[i].supplier.get_bulstat())) count++; } return count; } bool check_if_supplier_exists(string bulstat) { for(int i = 0; i < v_suppliers.size(); i++) { if(!bulstat.compare(v_suppliers[i].get_bulstat())) return true; } return false; } Suppliers get_supplier_from_local_db(string bulstat) { for(int i = 0; i < v_suppliers.size(); i++) { if(!bulstat.compare(v_suppliers[i].get_bulstat())) return v_suppliers[i]; } return Suppliers(); } bool check_if_optics_exists(Optics *op) { for(int i = 0; i < v_optics.size(); i++) { if( (op->get_type() == v_optics[i].get_type()) && (op->get_price() == v_optics[i].get_price()) && (op->get_width() == v_optics[i].get_width()) && (op->get_diopter() == v_optics[i].get_diopter()) && (!op->get_material_type().compare(v_optics[i].get_material_type())) && (!op->supplier.get_bulstat().compare(v_optics[i].supplier.get_bulstat())) ) { return true; } } return false; } /**************************************************** * Function Name: read_info_from_file() * Input : The name of the file * Logic : Read the file line by line * Note : Used for testing purposes *****************************************************/ void read_info_from_file(string file_name) { string line; ifstream ifs(file_name); while(getline(ifs, line)){ cout << line << '\n'; } } void write_suppliers_info_to_file(Suppliers s) { ofstream ofs("Suppliers.txt", ios_base::app); ofs << s; ofs.close(); } void write_optics_info_to_file(Optics opt) { ofstream ofs("Optics.txt", ios_base::app); ofs << opt; ofs.close(); } /*The following three functions below are used to format and print the DBs as tables*/ void show_suppliers_info() { if(v_suppliers.size() == 0) return; cout << endl << "-------------------------------------------------------------------------------------------------------------------------------" << endl; printElement("Supplier name:", 35); printElement("Supplier BULSTAT:", 35); printElement("Supplier location:", 35); printElement("Supplier phone number:", 35); cout << endl << "===============================================================================================================================" << endl; for(int i = 0; i < v_suppliers.size(); i++) cout << v_suppliers[i] << endl; cout << "-------------------------------------------------------------------------------------------------------------------------------" << endl; } void show_optic_header() { cout << endl << "-------------------------------------------------------------------------------------------------------------------------------" << endl; printElement("Id:", 10); printElement("Optic type:", 35); printElement("Materials:", 35); printElement("Diopter:", 10); printElement("Width:", 10); printElement("Price:", 10); printElement("Supplier BULSTAT:", 35); cout << endl << "===============================================================================================================================" << endl; } void show_optics_info() { const char separator = ' '; if(v_suppliers.size() == 0) return; show_optic_header(); for(int i = 0; i < v_optics.size(); i++) { cout << left << setw(10) << setfill(separator) << i; cout << v_optics[i] << endl; } cout << "-------------------------------------------------------------------------------------------------------------------------------" << endl; } /***************************************************************** * Function Name: process_choice() * Input : string choice - chosen supplier's bulstat; * vector<double> order_prices - list with the prices of all product that the user will order; * Return : true - the user want to continue ordering; * false - user completed the order; * Logic : If the user entered "exit" calculate the cost of the order; else show the optics of the chosen supplier; *****************************************************************/ bool process_choice(string choice, vector<double> order_prices) { double order_price = 0.0; const char separator = ' '; if(!choice.compare("exit")) { for(int i = 0; i < order_prices.size(); i++) order_price += order_prices[i]; if(order_price > 0) cout << endl << "The total cost of your order is:" << order_price << " lv" << endl; return false; } else { if(get_optics_count(choice)) { show_optic_header(); for(int i = 0; i < v_optics.size(); i++) { if(!choice.compare(v_optics[i].supplier.get_bulstat())) { cout << left << setw(10) << setfill(separator) << i; cout << v_optics[i] << endl; } } cout << "----------------------------------------------------------------------------------------------------------------------" << endl; } } return true; } /************************************************************* * Function Name: check_optics_id() * Input : The bulstat of the chosen supplier; The id of the chosen product/optics; * Return : true - entered id is correct; false - entered id is not correct; * Logic : The id's of the products/optics from one supplier are not consistently ordered. This function finds out if the entered id is relevant for the chosen supplier; **************************************************************/ bool check_optics_id(string bulstat, int id) { for(int i = 0; i < v_optics.size(); i++) { if(!bulstat.compare(v_optics[i].supplier.get_bulstat())) { if(i == id) return true; } } return false; } /**************************************************************** * Function Name: order_products_from_supplier() * Input : The bulstat of the chosen supplier; * Return : The final cost of the ordered items from this supplier; * Logic : If supplier has products, allow user to add as many as he want, until he presses "-1" which indicates you should calculate the final cost of the added products and return it; *****************************************************************/ double order_products_from_supplier(string bulstat) { int id = 0; int product_count = 0; double order_price = 0.0; double product_price = 0.0; vector<double> orders; if(!get_optics_count(bulstat)) { cout << "This supplier doesn't have products yet!" << endl; return 0; } while(1) { cout << endl << "Enter the ID of the product/s you want to order!" << endl; cout << "Enter '-1' if you want to complete the order from this supplier!" << endl; cin >> id; if(id != -1) { if( id < 0 || !check_optics_id(bulstat, id)) { cout << "Chosen ID is wrong!" << endl; continue; } cout << endl << "How many pieces of this product would you like to order?" << endl; cin >> product_count; product_price = v_optics.at(id).get_price(); order_price = product_price * product_count; orders.push_back(order_price); order_price = 0.0; } else break; } for(int i = 0; i < orders.size(); i++) order_price += orders[i]; return order_price; } /********************************************************* * Function Name: MakeOrders() * Description : Handles the case of ordering products until the user presses "exit". Keep the costs of all the prices from different suppliers which will be used at the end to calculate the final cost of the order; **********************************************************/ void MakeOrders() { string choice; double order_price = 0.0; vector<double> order_prices; show_suppliers_info(); while(1) { cout << endl << "Enter 'exit' if you want to return to the main menu!" << endl; cout << "Enter supplier BULSTAT to view his products:" << endl; if(!cin) { cin.clear(); cin.ignore(numeric_limits<streamsize>::max(),'\n'); } getline(cin, choice); if(!process_choice(choice, order_prices)) return; order_price = order_products_from_supplier(choice); order_prices.push_back(order_price); } return; } /******************************************************************* * Function Name: enterSuppliersInfo() * Description : Handles the case of adding new supplier in the DB * Logic : Get the data from user input, create new Supplier object, add it in the local DB and into the file; Checks for duplicated bulstats; * Notes : NONE ********************************************************************/ void enterSuppliersInfo() { Suppliers supplier; int err = supplier.create_new_supplier_from_ui(&supplier); if(!err) { v_suppliers.push_back(supplier); write_suppliers_info_to_file(supplier); //used for testing //read_info_from_file("Suppliers.txt"); } else cout << "Supplier with this bulstat already exists!" << endl; } /**************************************************************** * Function Name: enterOpticsInfo() * Description : Handles the case of adding new optics in the DB * Logic : Get the data from user input, create new Optics object, add it in the local DB and into the file; Checks for duplicated entries and exsisting suppliers; * Notes : NONE ******************************************************************/ void enterOpticsInfo() { Optics optic; int err = optic.create_new_optics_from_ui(&optic); if(!err) { v_optics.push_back(optic); write_optics_info_to_file(optic); //used for testing //read_info_from_file("Optics.txt"); } else cout << "Couldn't create optic entry!" << endl; } /*************************************************************** * Function Name: convert_line_to_obj() * Description : Function that takes line read from file, splits the data, create and add an object (Supplier/Optics) in the local DB, depending on the given type (SUPPLIER_OBJ/OPTICS_OBJ); * Input : string line - line read from file; * int type - type of object to create; ****************************************************************/ void convert_line_to_obj(string line, int type) { stringstream check(line); vector <string> obj_elements; string obj_element; string::size_type sz; while(getline(check, obj_element, '#')) obj_elements.push_back(obj_element); //https://stackoverflow.com/questions/5685471/error-jump-to-case-label switch(type) { case SUPPLIER_OBJ: { /*Indexes*/ /*1 - name; 2 - bulstat; 3 - location; 4 - phone_number;*/ Suppliers supplier(obj_elements[1], obj_elements[2], obj_elements[3], obj_elements[4]); v_suppliers.push_back(supplier); } break; case OPTICS_OBJ: { /*Indexes*/ /*1 - type; 2 - price; 3 - material type; 4 - width; 5 - diopter; 6 - supplier name;*/ Optics optic(obj_elements[1], stod (obj_elements[2], &sz), stod (obj_elements[4], &sz), stod (obj_elements[5], &sz), obj_elements[3], obj_elements[6]); v_optics.push_back(optic); } break; default: break; } } void read_startup_db(string file_name, int type) { string line; ifstream ifs(file_name); while(getline(ifs, line)) convert_line_to_obj(line, type); } void print_menu() { cout << "Menu: " << endl; cout << "Press '1' to enter new supplier in the DB! " << endl; cout << "Press '2' to enter optics information in the DB! " << endl; cout << "Press '3' to order materials from a supplier!" << endl; cout << "Press '4' to view full db!" << endl; cout << "Press '5' to exit the program! " << endl; } int main() { int choice = 0; read_startup_db("Suppliers.txt", SUPPLIER_OBJ); read_startup_db("Optics.txt", OPTICS_OBJ); while(1) { print_menu(); cout << endl << "Enter the next operation you would like to proceed: " << endl; cin >> choice; switch ( choice ) { case 1: enterSuppliersInfo(); break; case 2: enterOpticsInfo(); break; case 3: MakeOrders(); break; case 4: show_suppliers_info(); show_optics_info(); break; case 5: exit(1); break; default: break; } } return 0; }
[ "dessiandreeva10@gmail.com" ]
dessiandreeva10@gmail.com
ad938b7bf2d1e152efcd4f0291a8aa7b9adb57b6
4277663d968e3ab9cc46d692252a6a91b9d50757
/src/model/topology.cpp
25d441ae3628c281f5cb75b4b9926032971bf495
[]
no_license
qiyangjie/timeloop
37457a0e1b4082e59861546b12813c964176845b
bce09c2ca2c6d6a4b487d51e19458caf16d507aa
refs/heads/master
2020-06-01T02:47:07.490555
2019-06-05T17:50:25
2019-06-05T17:50:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,496
cpp
/* Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of NVIDIA CORPORATION nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include <cassert> #include <string> #include "model/topology.hpp" namespace model { std::ostream& operator<<(std::ostream& out, const Topology& topology) { int level_id = 0; for (auto & level : topology.levels_) { out << "Level " << level_id << std::endl; out << "-------" << std::endl; level->Print(out); level_id++; } if (topology.is_evaluated_) { out << "Total topology energy: " << topology.Energy() << " pJ" << std::endl; out << "Total topology area: " << topology.Area() << " um^2" << std::endl; out << "Max topology cycles: " << topology.Cycles() << std::endl; } return out; } void Topology::Spec(const Topology::Specs& specs) { specs_ = specs; for (auto& level : levels_) { level.reset(); } levels_.clear(); for (unsigned i = 0; i < specs.NumLevels(); i++) { auto level_specs = specs.GetLevel(i); // What type of level is this? if (level_specs->Type() == "BufferLevel") { BufferLevel::Specs& specs = *std::static_pointer_cast<BufferLevel::Specs>(level_specs); std::shared_ptr<BufferLevel> buffer_level = std::make_shared<BufferLevel>(specs); std::shared_ptr<Level> level = std::static_pointer_cast<Level>(buffer_level); levels_.push_back(level); } else if (level_specs->Type() == "ArithmeticUnits") { ArithmeticUnits::Specs& specs = *std::static_pointer_cast<ArithmeticUnits::Specs>(level_specs); std::shared_ptr<ArithmeticUnits> arithmetic_level = std::make_shared<ArithmeticUnits>(specs); std::shared_ptr<Level> level = std::static_pointer_cast<Level>(arithmetic_level); levels_.push_back(level); } else { std::cerr << "ERROR: illegal level specs type: " << level_specs->Type() << std::endl; exit(1); } } is_specced_ = true; } // The hierarchical ParseSpecs functions are static and do not // affect the internal specs_ data structure, which is set by // the dynamic Spec() call later. // This function implements the "classic" hierarchical topology // with arithmetic units at level 0 and storage units at level 1+. Topology::Specs Topology::ParseSpecs(libconfig::Setting& storage, libconfig::Setting& arithmetic) { Specs specs; assert(storage.isList()); // Level 0: arithmetic. auto level_specs_p = std::make_shared<ArithmeticUnits::Specs>(ArithmeticUnits::ParseSpecs(arithmetic)); specs.AddLevel(0, std::static_pointer_cast<LevelSpecs>(level_specs_p)); // Storage levels. int num_storage_levels = storage.getLength(); for (int i = 0; i < num_storage_levels; i++) { libconfig::Setting& level = storage[i]; auto level_specs_p = std::make_shared<BufferLevel::Specs>(BufferLevel::ParseSpecs(level)); specs.AddLevel(i, std::static_pointer_cast<LevelSpecs>(level_specs_p)); } Validate(specs); return specs; } // Make sure the topology is consistent, // and update unspecified parameters if they can // be inferred from other specified parameters. void Topology::Validate(Topology::Specs& specs) { // Intra-level topology validation is carried out by the levels // themselves. We take care of inter-layer issues here. This // breaks abstraction since we will be poking at levels' private // specs. FIXME. // Assumption here is that level i always connects to level // i-1 via a 1:1 or fanout network. The network module will // eventually be factored out, at which point we can make the // interconnection more generic and specifiable. BufferLevel::Specs& inner = *specs.GetStorageLevel(0); ArithmeticUnits::Specs& arithmetic_specs = *specs.GetArithmeticLevel(); unsigned inner_start_pvi, inner_end_pvi; if (inner.sharing_type == BufferLevel::DataSpaceIDSharing::Shared) { inner_start_pvi = inner_end_pvi = unsigned(problem::GetShape()->NumDataSpaces); } else { inner_start_pvi = 0; inner_end_pvi = unsigned(problem::GetShape()->NumDataSpaces) - 1; } auto inner_start_pv = problem::Shape::DataSpaceID(inner_start_pvi); if (inner.Instances(inner_start_pv).Get() == arithmetic_specs.Instances().Get()) { for (unsigned pvi = inner_start_pvi; pvi <= inner_end_pvi; pvi++) { inner.FanoutX(problem::Shape::DataSpaceID(pvi)) = 1; inner.FanoutY(problem::Shape::DataSpaceID(pvi)) = 1; inner.Fanout(problem::Shape::DataSpaceID(pvi)) = 1; } } else { // fanout assert(arithmetic_specs.Instances().Get() % inner.Instances(inner_start_pv).Get() == 0); unsigned fanout_in = arithmetic_specs.Instances().Get() / inner.Instances(inner_start_pv).Get(); for (unsigned pvi = inner_start_pvi; pvi <= inner_end_pvi; pvi++) inner.Fanout(problem::Shape::DataSpaceID(pvi)) = fanout_in; // fanout x assert(arithmetic_specs.MeshX().IsSpecified()); assert(arithmetic_specs.MeshX().Get() % inner.MeshX(inner_start_pv).Get() == 0); unsigned fanoutX_in = arithmetic_specs.MeshX().Get() / inner.MeshX(inner_start_pv).Get(); for (unsigned pvi = inner_start_pvi; pvi <= inner_end_pvi; pvi++) inner.FanoutX(problem::Shape::DataSpaceID(pvi)) = fanoutX_in; // fanout y assert(arithmetic_specs.MeshY().IsSpecified()); assert(arithmetic_specs.MeshY().Get() % inner.MeshY(inner_start_pv).Get() == 0); unsigned fanoutY_in = arithmetic_specs.MeshY().Get() / inner.MeshY(inner_start_pv).Get(); for (unsigned pvi = inner_start_pvi; pvi <= inner_end_pvi; pvi++) inner.FanoutY(problem::Shape::DataSpaceID(pvi)) = fanoutY_in; } for (unsigned i = 0; i < specs.NumStorageLevels()-1; i++) { BufferLevel::Specs& inner = *specs.GetStorageLevel(i); BufferLevel::Specs& outer = *specs.GetStorageLevel(i+1); // FIXME: for partitioned levels, we're only going to look at the // pvi==0 partition. Our buffer.cpp's ParseSpecs function guarantees // that all partitions will have identical specs anyway. // HOWEVER, if we're deriving any specs, we need to set them for all // pvs for partitioned buffers. // All of this // will go away once we properly separate out partitions from // datatypes. unsigned inner_start_pvi, inner_end_pvi; if (inner.sharing_type == BufferLevel::DataSpaceIDSharing::Shared) { inner_start_pvi = inner_end_pvi = unsigned(problem::GetShape()->NumDataSpaces); } else { inner_start_pvi = 0; inner_end_pvi = unsigned(problem::GetShape()->NumDataSpaces) - 1; } auto inner_start_pv = problem::Shape::DataSpaceID(inner_start_pvi); unsigned outer_start_pvi, outer_end_pvi; if (outer.sharing_type == BufferLevel::DataSpaceIDSharing::Shared) { outer_start_pvi = outer_end_pvi = unsigned(problem::GetShape()->NumDataSpaces); } else { outer_start_pvi = 0; outer_end_pvi = unsigned(problem::GetShape()->NumDataSpaces) - 1; } auto outer_start_pv = problem::Shape::DataSpaceID(outer_start_pvi); assert(inner.Instances(inner_start_pv).Get() % outer.Instances(outer_start_pv).Get() == 0); unsigned fanout = inner.Instances(inner_start_pv).Get() / outer.Instances(outer_start_pv).Get(); if (outer.Fanout(outer_start_pv).IsSpecified()) assert(outer.Fanout(outer_start_pv).Get() == fanout); else { for (unsigned pvi = outer_start_pvi; pvi <= outer_end_pvi; pvi++) outer.Fanout(problem::Shape::DataSpaceID(pvi)) = fanout; } assert(inner.MeshX(inner_start_pv).Get() % outer.MeshX(outer_start_pv).Get() == 0); unsigned fanoutX = inner.MeshX(inner_start_pv).Get() / outer.MeshX(outer_start_pv).Get(); if (outer.FanoutX(outer_start_pv).IsSpecified()) assert(outer.FanoutX(outer_start_pv).Get() == fanoutX); else { for (unsigned pvi = outer_start_pvi; pvi <= outer_end_pvi; pvi++) outer.FanoutX(problem::Shape::DataSpaceID(pvi)) = fanoutX; } assert(inner.MeshY(inner_start_pv).Get() % outer.MeshY(outer_start_pv).Get() == 0); unsigned fanoutY = inner.MeshY(inner_start_pv).Get() / outer.MeshY(outer_start_pv).Get(); if (outer.FanoutY(outer_start_pv).IsSpecified()) assert(outer.FanoutY(outer_start_pv).Get() == fanoutY); else { for (unsigned pvi = outer_start_pvi; pvi <= outer_end_pvi; pvi++) outer.FanoutY(problem::Shape::DataSpaceID(pvi)) = fanoutY; } assert(outer.Fanout(outer_start_pv).Get() == outer.FanoutX(outer_start_pv).Get() * outer.FanoutY(outer_start_pv).Get()); } } // // Level accessors. // // Specs. unsigned Topology::Specs::NumLevels() const { return levels.size(); } unsigned Topology::Specs::NumStorageLevels() const { return storage_map.size(); } std::shared_ptr<LevelSpecs> Topology::Specs::GetLevel(unsigned level_id) const { return levels.at(level_id); } std::shared_ptr<BufferLevel::Specs> Topology::Specs::GetStorageLevel(unsigned storage_level_id) const { auto level_id = storage_map.at(storage_level_id); return std::static_pointer_cast<BufferLevel::Specs>(levels.at(level_id)); } std::shared_ptr<ArithmeticUnits::Specs> Topology::Specs::GetArithmeticLevel() const { auto level_id = arithmetic_map; return std::static_pointer_cast<ArithmeticUnits::Specs>(levels.at(level_id)); } // Topology class. unsigned Topology::NumLevels() const { assert(is_specced_); return levels_.size(); } unsigned Topology::NumStorageLevels() const { assert(is_specced_); return specs_.NumStorageLevels(); } std::shared_ptr<Level> Topology::GetLevel(unsigned level_id) const { return levels_.at(level_id); } std::shared_ptr<BufferLevel> Topology::GetStorageLevel(unsigned storage_level_id) const { auto level_id = specs_.StorageMap(storage_level_id); return std::static_pointer_cast<BufferLevel>(levels_.at(level_id)); } std::shared_ptr<ArithmeticUnits> Topology::GetArithmeticLevel() const { auto level_id = specs_.ArithmeticMap(); return std::static_pointer_cast<ArithmeticUnits>(levels_.at(level_id)); } // PreEvaluationCheck(): allows for a very fast capacity-check // based on given working-set sizes that can be trivially derived // by the caller. The more powerful Evaluate() function also // performs these checks, but computes both tile sizes and access counts // and requires full tiling data that is generated by a very slow // Nest::ComputeWorkingSets() algorithm. The PreEvaluationCheck() // function is an optional call that extensive design-space searches // can use to fail early. // FIXME: integrate with Evaluate() and re-factor. // FIXME: what about instances and fanout checks? bool Topology::PreEvaluationCheck(const Mapping& mapping, analysis::NestAnalysis* analysis) { auto masks = tiling::TransposeMasks(mapping.datatype_bypass_nest); auto working_set_sizes = analysis->GetWorkingSetSizes_LTW(); bool success = true; for (unsigned storage_level = 0; storage_level < NumStorageLevels(); storage_level++) { success &= GetStorageLevel(storage_level)->PreEvaluationCheck( working_set_sizes.at(storage_level), masks.at(storage_level)); if (!success) { break; } } return success; } bool Topology::Evaluate(Mapping& mapping, analysis::NestAnalysis* analysis, const problem::Workload& workload) { assert(is_specced_); bool success = true; // Compute working-set tile hierarchy for the nest. auto ws_tiles = analysis->GetWorkingSets(); // Ugh... FIXME. auto compute_cycles = analysis->GetBodyInfo().accesses; // Create a mask indicating which levels support distributed multicast. tiling::CompoundMaskNest distribution_supported; for (unsigned pv = 0; pv < unsigned(problem::GetShape()->NumDataSpaces); pv++) { distribution_supported[pv].reset(); for (unsigned storage_level = 0; storage_level < NumStorageLevels(); storage_level++) { if (GetStorageLevel(storage_level)->DistributedMulticastSupported()) { distribution_supported[pv].set(storage_level); } } } // Collapse tiles into a specified number of tiling levels. The solutions are // received in a set of per-problem::Shape::DataSpaceID arrays. auto collapsed_tiles = tiling::CollapseTiles(ws_tiles, specs_.NumStorageLevels(), mapping.datatype_bypass_nest, distribution_supported); // Transpose the tiles into level->datatype structure. auto tiles = tiling::TransposeTiles(collapsed_tiles); assert(tiles.size() == NumStorageLevels()); // Transpose the datatype bypass nest into level->datatype structure. auto keep_masks = tiling::TransposeMasks(mapping.datatype_bypass_nest); assert(keep_masks.size() >= NumStorageLevels()); // Area of all the compute + buffer elements in inner levels // (needed for wire energy calculation). // FIXME: Breaks abstraction by making assumptions about arithmetic // (multiplier) organization and querying multiplier area. double inner_tile_area = GetArithmeticLevel()->AreaPerInstance(); for (unsigned storage_level_id = 0; storage_level_id < NumStorageLevels(); storage_level_id++) { auto storage_level = GetStorageLevel(storage_level_id); // Evaluate Loop Nest on hardware structures: calculate // primary statistics. success &= storage_level->Evaluate(tiles[storage_level_id], keep_masks[storage_level_id], inner_tile_area, compute_cycles); if (!success) break; // The inner tile area is the area of the local sub-level that I will // send data to. Note that it isn't the area of the entire sub-level // because I may only have reach into a part of the level, which will // reduce my wire energy costs. To determine this, we use the fanout // from this level inwards. // FIXME: We need a better model. double cur_level_area = storage_level->AreaPerInstance(); inner_tile_area = cur_level_area + (inner_tile_area * storage_level->MaxFanout()); } success &= GetArithmeticLevel()->HackEvaluate(analysis, workload); if (success) is_evaluated_ = true; return success; } double Topology::Energy() const { double energy = 0; for (auto level : levels_) { assert(level->Energy() >= 0); energy += level->Energy(); } return energy; } double Topology::Area() const { double area = 0; for (auto level : levels_) { assert(level->Area() >= 0); area += level->Area(); } return area; } std::uint64_t Topology::Cycles() const { std::uint64_t cycles = 0; for (auto level : levels_) { cycles = std::max(cycles, level->Cycles()); } return cycles; } double Topology::Utilization() const { // FIXME. return (GetArithmeticLevel()->IdealCycles() / Cycles()); } std::uint64_t Topology::MACCs() const { return GetArithmeticLevel()->MACCs(); } } // namespace model
[ "aparashar@nvidia.com" ]
aparashar@nvidia.com
13fd346882e33310c65a3ee9ef50387865f1903e
c098ec56ee465fd4ccfe3cdeb74ed632ec2a0075
/uudeview/uud32acx/uulib.cpp
3e186ab16262e5a7c32f6d69a1ca0e28755ca188
[]
no_license
maiken2051/uudeview
326875690b025ee65d982c7429b33033d7a73ef3
0b8eba1f9406104b73696870d68ad221064ca13d
refs/heads/master
2021-01-20T08:47:10.694490
2013-01-26T23:02:31
2013-01-26T23:02:31
7,598,749
0
2
null
null
null
null
UTF-8
C++
false
false
30,486
cpp
/* * This file is part of the UUDeview ActiveX Control, a powerful, * simple and friendly multi-part multi-file encoder/decoder * software component. * * Copyright (c) 1997, 2001 by: * Michael Newcomb <miken@miken.com> * Frank Pilhofer <fp@informatik.uni-frankfurt.de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * --> Commercial reuse is prohibited <-- * */ // // ------------------------- UULIB.C ------------------------------------------ // /* * This file implements the externally visible functions, as declared * in uudeview.h, and some internal interfacing functions */ #include "uudcore.h" #pragma hdrstop #include "windows.h" // Just for GetTickCount! char * uulib_id = "$Id: uulib.c,v 1.24 2002/03/11 09:15:47 fp Exp $"; #ifdef SYSTEM_WINDLL BOOL _export WINAPI DllEntryPoint (HINSTANCE hInstance, DWORD seginfo, LPVOID lpCmdLine) { /* Don't do anything, so just return true */ return TRUE; } #endif /* * In DOS, we must open the file binary, O_BINARY is defined there */ #ifndef O_BINARY #define O_BINARY 0 #endif /* for braindead systems */ #ifndef SEEK_SET #ifdef L_BEGIN #define SEEK_SET L_BEGIN #else #define SEEK_SET 0 #endif #endif /* * Callback functions and their opaque arguments */ void (*uu_MsgCallback) _ANSI_ARGS_((void *, char *, int)) = NULL; int (*uu_BusyCallback) _ANSI_ARGS_((void *, uuprogress *)) = NULL; int (*uu_FileCallback) _ANSI_ARGS_((void *, char *, char *, int)) = NULL; char * (*uu_FNameFilter) _ANSI_ARGS_((void *, char *)) = NULL; void *uu_MsgCBArg = NULL; void *uu_BusyCBArg = NULL; void *uu_FileCBArg = NULL; void *uu_FFCBArg = NULL; /* * Global variables */ #if SKIP int uu_fast_scanning = 0; /* assumes at most 1 part per file */ int uu_bracket_policy = 0; /* gives part numbers in [] higher priority */ int uu_verbose = 1; /* enables/disables messages&notes */ int uu_desperate = 0; /* desperate mode */ int uu_ignreply = 0; /* ignore replies */ int uu_debug = 0; /* debugging mode (print __FILE__/__LINE__) */ int uu_errno = 0; /* the errno that caused this UURET_IOERR */ int uu_dumbness = 0; /* switch off the program's intelligence */ int uu_overwrite = 1; /* whether it's ok to overwrite ex. files */ int uu_ignmode = 0; /* ignore the original file mode */ int uu_handletext = 0; /* do we want text/plain messages */ int uu_usepreamble = 0; /* do we want Mime preambles/epilogues */ int uu_tinyb64 = 0; /* detect short B64 outside of MIME */ int uu_remove_input = 0; /* remove input files after decoding */ int uu_more_mime = 0; /* strictly adhere to MIME headers */ #endif headercount hlcount = { 3, /* restarting after a MIME body */ 2, /* after useful data in freestyle mode */ 1 /* after useful data and an empty line */ }; /* * version string */ char uulibversion[256] = VERSION "pl" PATCH; /* * prefix to the files on disk, usually a path name to save files to */ char *uusavepath; /* * extension to use when encoding single-part files */ char *uuencodeext; /* * areas to malloc */ char *uulib_msgstring; char *uugen_inbuffer; char *uugen_fnbuffer; /* * The Global List of Files */ uulist *UUGlobalFileList = NULL; /* * time values for BusyCallback. msecs is MILLIsecs here */ static long uu_busy_msecs = 0; /* call callback function each msecs */ static long uu_last_secs = 0; /* secs of last call to callback */ static long uu_last_usecs = 0; /* usecs of last call to callback */ /* * progress information */ uuprogress progress; /* * Linked list of files we want to delete after decoding */ #if SKIP typedef struct _itbd { char *fname; struct _itbd *NEXT; } itbd; static itbd * ftodel = NULL; #endif #if SKIP /* * for the busy poll */ unsigned long uuyctr; /* * Areas to allocate. Instead of using static memory areas, we malloc() * the memory in UUInitialize() and release them in UUCleanUp to prevent * blowing up of the binary size * This is a table with the pointers to allocate and required sizes. * They are guaranteed to be never NULL. */ typedef struct { char **ptr; size_t size; } allomap; static allomap toallocate[] = { { &uugen_fnbuffer, 1024 }, /* generic filename buffer */ { &uugen_inbuffer, 1024 }, /* generic input data buffer */ { &uucheck_lastname, 256 }, /* from uucheck.c */ { &uucheck_tempname, 256 }, { &uuestr_itemp, 256 }, /* from uuencode.c:UUEncodeStream() */ { &uuestr_otemp, 1024 }, { &uulib_msgstring, 1024 }, /* from uulib.c:UUMessage() */ { &uuncdl_fulline, 300 }, /* from uunconc.c:UUDecodeLine() */ { &uuncdp_oline, 1200 }, /* from uunconc.c:UUDecodePart() */ { &uunconc_UUxlat, 256 * sizeof (int) }, /* from uunconc.c:toplevel */ { &uunconc_UUxlen, 64 * sizeof (int) }, { &uunconc_B64xlat, 256 * sizeof (int) }, { &uunconc_XXxlat, 256 * sizeof (int) }, { &uunconc_BHxlat, 256 * sizeof (int) }, { &uunconc_save, 3*300 }, /* from uunconc.c:decoding buffer */ { &uuscan_shlline, 1024 }, /* from uuscan.c:ScanHeaderLine() */ { &uuscan_pvvalue, 300 }, /* from uuscan.c:ParseValue() */ { &uuscan_phtext, 300 }, /* from uuscan.c:ParseHeader() */ { &uuscan_sdline, 300 }, /* from uuscan.c:ScanData() */ { &uuscan_sdbhds1, 300 }, { &uuscan_sdbhds2, 300 }, { &uuscan_spline, 300 }, /* from uuscan.c:ScanPart() */ { &uuutil_bhwtmp, 300 }, /* from uuutil.c:UUbhwrite() */ { NULL, 0 } }; #endif /* * Handle the printing of messages. Works like printf. */ #if defined(STDC_HEADERS) || defined(HAVE_STDARG_H) int UUDWrap::UUMessage (char *file, int line, int level, char *format, ...) #else int UUMessage (va_alist) va_dcl #endif { char *msgptr; #if defined(STDC_HEADERS) || defined(HAVE_STDARG_H) va_list ap; va_start (ap, format); #else char *file, *format; int line, level; va_list ap; va_start (ap); file = va_arg (ap, char *); line = va_arg (ap, int); level = va_arg (ap, int); format = va_arg (ap, char *); #endif if (uu_debug) { sprintf (uulib_msgstring, "%s(%d): %s", file, line, msgnames[level]); msgptr = uulib_msgstring + strlen (uulib_msgstring); } else { sprintf (uulib_msgstring, "%s", msgnames[level]); msgptr = uulib_msgstring + strlen (uulib_msgstring); } #if SKIP if (uu_MsgCallback && (level>UUMSG_NOTE || uu_verbose)) { vsprintf (msgptr, format, ap); (*uu_MsgCallback) (uu_MsgCBArg, uulib_msgstring, level); } #endif if (level>UUMSG_NOTE || uu_verbose) { vsprintf (msgptr, format, ap); MessageHandler(uulib_msgstring, level); } va_end (ap); return UURET_OK; } /* * Call the Busy Callback from time to time. This function must be * polled from the Busy loops. */ int UUDWrap::UUBusyPoll (void) { #if SKIP #ifdef HAVE_GETTIMEOFDAY struct timeval tv; long msecs; if (uu_BusyCallback) { (void) gettimeofday (&tv, NULL); msecs = 1000*(tv.tv_sec-uu_last_secs)+(tv.tv_usec-uu_last_usecs)/1000; if (uu_last_secs==0 || msecs > uu_busy_msecs) { uu_last_secs = tv.tv_sec; uu_last_usecs = tv.tv_usec; return (*uu_BusyCallback) (uu_BusyCBArg, &progress); } } #else time_t now; long msecs; if (uu_BusyCallback) { if (uu_busy_msecs <= 0) { msecs = 1; } else { now = time(NULL); msecs = 1000 * (now - uu_last_secs); } if (uu_last_secs==0 || msecs > uu_busy_msecs) { uu_last_secs = now; uu_last_usecs = 0; return (*uu_BusyCallback) (uu_BusyCBArg, &progress); } } #endif #endif unsigned long tc = GetTickCount(); if (uu_last_usecs == 0 || (tc - uu_last_usecs) > BUSY_MSECS) { uu_last_usecs = tc; return(BusyCallback(&progress)); } return 0; } /* * Initialization function */ #if SKIP int UUEXPORT UUInitialize (void) { allomap *aiter; progress.action = 0; progress.curfile[0] = '\0'; ftodel = NULL; uusavepath = NULL; uuencodeext = NULL; mssdepth = 0; memset (&localenv, 0, sizeof (headers)); memset (&sstate, 0, sizeof (scanstate)); nofnum = 0; mimseqno = 0; lastvalid = 0; lastenc = 0; uuyctr = 0; /* * Allocate areas */ for (aiter=toallocate; aiter->ptr; aiter++) *(aiter->ptr) = NULL; for (aiter=toallocate; aiter->ptr; aiter++) { if ((*(aiter->ptr) = (char *) malloc (aiter->size)) == NULL) { /* * oops. we may not print a message here, because we need these * areas (uulib_msgstring) in UUMessage() */ for (aiter=toallocate; aiter->ptr; aiter++) { _FP_free (*(aiter->ptr)); } return UURET_NOMEM; } } /* * Must be called after areas have been malloced */ UUInitConc (); return UURET_OK; } #endif /* * Set and get Options */ int UUEXPORT UUGetOption (int option, int *ivalue, char *cvalue, int clength) { int result; switch (option) { case UUOPT_VERSION: _FP_strncpy (cvalue, uulibversion, clength); result = 0; break; case UUOPT_FAST: if (ivalue) *ivalue = uu_fast_scanning; result = uu_fast_scanning; break; case UUOPT_DUMBNESS: if (ivalue) *ivalue = uu_dumbness; result = uu_dumbness; break; case UUOPT_BRACKPOL: if (ivalue) *ivalue = uu_bracket_policy; result = uu_bracket_policy; break; case UUOPT_VERBOSE: if (ivalue) *ivalue = uu_verbose; result = uu_verbose; break; case UUOPT_DESPERATE: if (ivalue) *ivalue = uu_desperate; result = uu_desperate; break; case UUOPT_IGNREPLY: if (ivalue) *ivalue = uu_ignreply; result = uu_ignreply; break; case UUOPT_DEBUG: if (ivalue) *ivalue = uu_debug; result = uu_debug; break; case UUOPT_ERRNO: if (ivalue) *ivalue = uu_errno; result = uu_errno; break; case UUOPT_OVERWRITE: if (ivalue) *ivalue = uu_overwrite; result = uu_overwrite; break; case UUOPT_SAVEPATH: _FP_strncpy (cvalue, uusavepath, clength); result = 0; break; case UUOPT_PROGRESS: if (clength==sizeof(uuprogress)) { memcpy (cvalue, &progress, sizeof (uuprogress)); result = 0; } else result = -1; break; case UUOPT_IGNMODE: if (ivalue) *ivalue = uu_ignmode; result = uu_ignmode; break; case UUOPT_USETEXT: if (ivalue) *ivalue = uu_handletext; result = uu_handletext; break; case UUOPT_PREAMB: if (ivalue) *ivalue = uu_usepreamble; result = uu_usepreamble; break; case UUOPT_TINYB64: if (ivalue) *ivalue = uu_tinyb64; result = uu_tinyb64; break; case UUOPT_ENCEXT: _FP_strncpy (cvalue, uuencodeext, clength); result = 0; break; case UUOPT_REMOVE: if (ivalue) *ivalue = uu_remove_input; result = uu_remove_input; break; case UUOPT_MOREMIME: if (ivalue) *ivalue = uu_more_mime; result = uu_more_mime; break; case UUOPT_STRICTFN: if (ivalue) *ivalue = uu_strict_filename; result = uu_strict_filename; break; default: return -1; } return result; } int UUEXPORT UUSetOption (int option, int ivalue, char *cvalue) { switch (option) { case UUOPT_FAST: uu_fast_scanning = ivalue; break; case UUOPT_DUMBNESS: uu_dumbness = ivalue; break; case UUOPT_BRACKPOL: uu_bracket_policy = ivalue; break; case UUOPT_VERBOSE: uu_verbose = ivalue; break; case UUOPT_DESPERATE: uu_desperate = ivalue; break; case UUOPT_IGNREPLY: uu_ignreply = ivalue; break; case UUOPT_DEBUG: uu_debug = ivalue; break; case UUOPT_OVERWRITE: uu_overwrite = ivalue; break; case UUOPT_SAVEPATH: _FP_free (uusavepath); uusavepath = _FP_strdup (cvalue); break; case UUOPT_IGNMODE: uu_ignmode = ivalue; break; case UUOPT_USETEXT: uu_handletext = ivalue; break; case UUOPT_PREAMB: uu_usepreamble = ivalue; break; case UUOPT_TINYB64: uu_tinyb64 = ivalue; break; case UUOPT_ENCEXT: _FP_free (uuencodeext); uuencodeext = _FP_strdup (cvalue); break; case UUOPT_REMOVE: uu_remove_input = ivalue; break; case UUOPT_MOREMIME: uu_more_mime = ivalue; break; case UUOPT_STRICTFN: uu_strict_filename = ivalue; break; default: return UURET_ILLVAL; } return UURET_OK; } char * UUEXPORT UUstrerror (int code) { return uuretcodes[code]; } /* * Set the various Callback functions */ #if SKIP int UUEXPORT UUSetMsgCallback (void *opaque, void (*func) _ANSI_ARGS_((void *, char *, int))) { uu_MsgCallback = func; uu_MsgCBArg = opaque; return UURET_OK; } int UUEXPORT UUSetBusyCallback (void *opaque, int (*func) _ANSI_ARGS_((void *, uuprogress *)), long msecs) { uu_BusyCallback = func; uu_BusyCBArg = opaque; uu_busy_msecs = msecs; return UURET_OK; } int UUEXPORT UUSetFileCallback (void *opaque, int (*func) _ANSI_ARGS_((void *, char *, char *, int))) { uu_FileCallback = func; uu_FileCBArg = opaque; return UURET_OK; } int UUEXPORT UUSetFNameFilter (void *opaque, char * (*func) _ANSI_ARGS_((void *, char *))) { uu_FNameFilter = func; uu_FFCBArg = opaque; return UURET_OK; } #endif /* * Return a pointer to the nth element of the GlobalFileList * zero-based, returns NULL if item is too large. */ uulist * UUEXPORT UUGetFileListItem (int item) { uulist *iter=UUGlobalFileList; if (item < 0) return NULL; while (item && iter) { iter = iter->NEXT; item--; } return iter; } /* * call the current filter */ #if SKIP char * UUEXPORT UUFNameFilter (char *fname) { if (uu_FNameFilter) return (*uu_FNameFilter) (uu_FFCBArg, fname); return fname; } #endif /* * Load a File. We call ScanPart repeatedly until at EOF and * add the parts to UUGlobalFileList */ int UUEXPORT UULoadFile (char *filename, char *fileid, int delflag) { int res, sr, count=0; struct stat finfo; fileread *loaded; uufile *fload; itbd *killem; FILE *datei; if ((datei = fopen (filename, "rb")) == NULL) { UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_NOT_OPEN_SOURCE), filename, strerror (uu_errno = errno)); return UURET_IOERR; } if (fstat (fileno(datei), &finfo) == -1) { UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_NOT_STAT_FILE), filename, strerror (uu_errno = errno)); fclose (datei); return UURET_IOERR; } /* * schedule for destruction */ if (delflag && fileid==NULL) { if ((killem = (itbd *) malloc (sizeof (itbd))) == NULL) { UUMessage (uulib_id, __LINE__, UUMSG_WARNING, uustring (S_OUT_OF_MEMORY), sizeof (itbd)); } else if ((killem->fname = _FP_strdup (filename)) == NULL) { UUMessage (uulib_id, __LINE__, UUMSG_WARNING, uustring (S_OUT_OF_MEMORY), strlen(filename)+1); _FP_free (killem); } else { killem->NEXT = ftodel; ftodel = killem; } } progress.action = 0; progress.partno = 0; progress.numparts = 1; progress.fsize = (long) ((finfo.st_size>0)?finfo.st_size:-1); progress.percent = 0; progress.foffset = 0; _FP_strncpy (progress.curfile, (strlen(filename)>255)? (filename+strlen(filename)-255):filename, 256); progress.action = UUACT_SCANNING; if (fileid == NULL) fileid = filename; while (!feof (datei) && !ferror (datei)) { /* * Peek file, or some systems won't detect EOF */ res = fgetc (datei); if (feof (datei) || ferror (datei)) break; else ungetc (res, datei); if ((loaded = ScanPart (datei, fileid, &sr)) == NULL) { if (sr != UURET_NODATA && sr != UURET_OK && sr != UURET_CONT) { UUkillfread (loaded); if (sr != UURET_CANCEL) { UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_READ_ERROR), filename, strerror (uu_errno)); } UUCheckGlobalList (); progress.action = 0; fclose (datei); return sr; } continue; } if (ferror (datei)) { UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_READ_ERROR), filename, strerror (uu_errno = errno)); UUCheckGlobalList (); progress.action = 0; fclose (datei); return UURET_IOERR; } if ((loaded->uudet == QP_ENCODED || loaded->uudet == PT_ENCODED) && (loaded->filename == NULL || *(loaded->filename) == '\0') && !uu_handletext && (loaded->flags&FL_PARTIAL)==0) { /* * Don't want text */ UUkillfread (loaded); continue; } if ((loaded->subject == NULL || *(loaded->subject) == '\0') && (loaded->mimeid == NULL || *(loaded->mimeid) == '\0') && (loaded->filename== NULL || *(loaded->filename)== '\0') && (loaded->uudet == 0)) { /* * no useful data here */ UUkillfread (loaded); if (uu_fast_scanning && sr != UURET_CONT) break; continue; } if ((fload = UUPreProcessPart (loaded, &res)) == NULL) { /* * no useful data found */ if (res != UURET_NODATA) { UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_READ_ERROR), filename, (res==UURET_IOERR)?strerror(uu_errno):UUstrerror(res)); } UUkillfread (loaded); if (uu_fast_scanning && sr != UURET_CONT) break; continue; } if ((loaded->subject && *(loaded->subject)) || (loaded->mimeid && *(loaded->mimeid)) || (loaded->filename&& *(loaded->filename))|| (loaded->uudet)) { UUMessage (uulib_id, __LINE__, UUMSG_MESSAGE, uustring (S_LOADED_PART), filename, (loaded->subject) ? loaded->subject : "", (fload->subfname) ? fload->subfname : "", (loaded->filename) ? loaded->filename : "", fload->partno, (loaded->begin) ? "begin" : "", (loaded->end) ? "end" : "", codenames[loaded->uudet]); } if ((res = UUInsertPartToList (fload))) { /* * couldn't use the data */ UUkillfile (fload); if (res != UURET_NODATA) { UUCheckGlobalList (); progress.action = 0; fclose (datei); return res; } if (uu_fast_scanning && sr != UURET_CONT) break; continue; } /* * if in fast mode, we don't look any further, because we're told * that each source file holds at most one encoded part */ if (uu_fast_scanning && sr != UURET_CONT) break; if (loaded->uudet) count++; } fclose (datei); if (!uu_fast_scanning && count==0) { UUMessage (uulib_id, __LINE__, UUMSG_NOTE, uustring (S_NO_DATA_FOUND), filename); } progress.action = 0; UUCheckGlobalList (); return UURET_OK; } /* * decode to a temporary file. this is well handled by uudecode() */ #if SKIP int UUEXPORT UUDecodeToTemp (uulist *thefile) { return UUDecode (thefile); } #endif /* * decode file first to temp file, then copy it to a final location */ int UUEXPORT UUDecodeFile (uulist *thefile, char *destname) { FILE *target, *source; struct stat finfo; int fildes, res; size_t bytes; if (thefile == NULL) return UURET_ILLVAL; if ((res = UUDecode (thefile)) != UURET_OK) if (res != UURET_NOEND || !uu_desperate) return res; if (thefile->binfile == NULL) { UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_NO_BIN_FILE)); return UURET_IOERR; } if ((source = fopen (thefile->binfile, "rb")) == NULL) { UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_NOT_OPEN_FILE), thefile->binfile, strerror (uu_errno = errno)); return UURET_IOERR; } /* * for system security, strip setuid/setgid bits from mode */ if ((thefile->mode & 0777) != thefile->mode) { UUMessage (uulib_id, __LINE__, UUMSG_NOTE, uustring (S_STRIPPED_SETUID), destname, (int)thefile->mode); thefile->mode &= 0777; } /* * Determine the name of the target file according to the rules: * * IF (destname!=NULL) THEN filename=destname; * ELSE * filename = thefile->filename * IF (FilenameFilter!=NULL) THEN filename=FilenameFilter(filename); * filename = SaveFilePath + filename * END */ if (destname) strcpy (uugen_fnbuffer, destname); else { sprintf (uugen_fnbuffer, "%s%s", (uusavepath)?uusavepath:"", UUFNameFilter ((thefile->filename)? thefile->filename:"unknown.xxx")); } /* * if we don't want to overwrite existing files, check if it's there */ if (!uu_overwrite) { if (stat (uugen_fnbuffer, &finfo) == 0) { UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_TARGET_EXISTS), uugen_fnbuffer); fclose (source); return UURET_EXISTS; } } if (fstat (fileno(source), &finfo) == -1) { UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_NOT_STAT_FILE), thefile->binfile, strerror (uu_errno = errno)); fclose (source); return UURET_IOERR; } progress.action = 0; _FP_strncpy (progress.curfile, (strlen(uugen_fnbuffer)>255)? (uugen_fnbuffer+strlen(uugen_fnbuffer)-255):uugen_fnbuffer, 256); progress.partno = 0; progress.numparts = 1; progress.fsize = (long) ((finfo.st_size)?finfo.st_size:-1); progress.foffset = 0; progress.percent = 0; progress.action = UUACT_COPYING; if ((fildes = open (uugen_fnbuffer, O_WRONLY | O_CREAT | O_BINARY | O_TRUNC, (uu_ignmode)?0666:thefile->mode)) == -1) { progress.action = 0; UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_NOT_OPEN_TARGET), uugen_fnbuffer, strerror (uu_errno = errno)); fclose (source); return UURET_IOERR; } if ((target = fdopen (fildes, "wb")) == NULL) { progress.action = 0; UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_IO_ERR_TARGET), uugen_fnbuffer, strerror (uu_errno = errno)); fclose (source); close (fildes); return UURET_IOERR; } while (!feof (source)) { if (UUBUSYPOLL(ftell(source),progress.fsize)) { UUMessage (uulib_id, __LINE__, UUMSG_NOTE, uustring (S_DECODE_CANCEL)); fclose (source); fclose (target); unlink (uugen_fnbuffer); return UURET_CANCEL; } bytes = fread (uugen_inbuffer, 1, 1024, source); if (ferror (source) || (bytes == 0 && !feof (source))) { progress.action = 0; UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_READ_ERROR), thefile->binfile, strerror (uu_errno = errno)); fclose (source); fclose (target); unlink (uugen_fnbuffer); return UURET_IOERR; } if (fwrite (uugen_inbuffer, 1, bytes, target) != bytes) { progress.action = 0; UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_WR_ERR_TARGET), uugen_fnbuffer, strerror (uu_errno = errno)); fclose (source); fclose (target); unlink (uugen_fnbuffer); return UURET_IOERR; } } fclose (target); fclose (source); /* * after a successful decoding run, we delete the temporary file */ if (unlink (thefile->binfile)) { UUMessage (uulib_id, __LINE__, UUMSG_WARNING, uustring (S_TMP_NOT_REMOVED), thefile->binfile, strerror (uu_errno = errno)); } _FP_free (thefile->binfile); thefile->binfile = NULL; thefile->state &= ~UUFILE_TMPFILE; thefile->state |= UUFILE_DECODED; progress.action = 0; return UURET_OK; } /* * Calls a function repeatedly with all the info we have for a file * If the function returns non-zero, we break and don't send any more */ int UUEXPORT UUInfoFile (uulist *thefile, void *opaque) { int errflag=0, res, bhflag=0, dd; long maxpos; FILE *inpfile; /* * We might need to ask our callback function to download the file */ if (uu_FileCallback) { if ((res = (*uu_FileCallback) (uu_FileCBArg, thefile->thisfile->data->sfname, uugen_fnbuffer, 1)) != UURET_OK) return res; if ((inpfile = fopen (uugen_fnbuffer, "rb")) == NULL) { (*uu_FileCallback) (uu_FileCBArg, thefile->thisfile->data->sfname, uugen_fnbuffer, 0); UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_NOT_OPEN_FILE), uugen_fnbuffer, strerror (uu_errno = errno)); return UURET_IOERR; } } else { if ((inpfile = fopen (thefile->thisfile->data->sfname, "rb")) == NULL) { UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_NOT_OPEN_FILE), thefile->thisfile->data->sfname, strerror (uu_errno=errno)); return UURET_IOERR; } _FP_strncpy (uugen_fnbuffer, thefile->thisfile->data->sfname, 1024); } /* * seek to beginning of info */ fseek (inpfile, thefile->thisfile->data->startpos, SEEK_SET); maxpos = thefile->thisfile->data->startpos + thefile->thisfile->data->length; while (!feof (inpfile) && (uu_fast_scanning || ftell(inpfile) < maxpos)) { if (_FP_fgets (uugen_inbuffer, 511, inpfile) == NULL) break; uugen_inbuffer[511] = '\0'; if (ferror (inpfile)) break; dd = UUValidData (uugen_inbuffer, 0, &bhflag); if (thefile->uudet == B64ENCODED && dd == B64ENCODED) break; else if (thefile->uudet == BH_ENCODED && bhflag) break; else if ((thefile->uudet == UU_ENCODED || thefile->uudet == XX_ENCODED) && strncmp (uugen_inbuffer, "begin ", 6) == 0) break; else if (thefile->uudet == YENC_ENCODED && strncmp (uugen_inbuffer, "=ybegin ", 8) == 0) break; // if ((*func) (opaque, uugen_inbuffer)) // break; if (UUInfoHandler(opaque, uugen_inbuffer)) break; } if (ferror (inpfile)) { UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_READ_ERROR), uugen_fnbuffer, strerror (uu_errno = errno)); errflag = 1; } fclose (inpfile); if (uu_FileCallback) (*uu_FileCallback) (uu_FileCBArg, thefile->thisfile->data->sfname, uugen_fnbuffer, 0); if (errflag) return UURET_IOERR; return UURET_OK; } int UUEXPORT UURenameFile (uulist *thefile, char *newname) { char *oldname; if (thefile == NULL) return UURET_ILLVAL; oldname = thefile->filename; if ((thefile->filename = _FP_strdup (newname)) == NULL) { UUMessage (uulib_id, __LINE__, UUMSG_ERROR, uustring (S_NOT_RENAME), oldname, newname); thefile->filename = oldname; return UURET_NOMEM; } _FP_free (oldname); return UURET_OK; } int UUEXPORT UURemoveTemp (uulist *thefile) { if (thefile == NULL) return UURET_ILLVAL; if (thefile->binfile) { if (unlink (thefile->binfile)) { UUMessage (uulib_id, __LINE__, UUMSG_WARNING, uustring (S_TMP_NOT_REMOVED), thefile->binfile, strerror (uu_errno = errno)); } _FP_free (thefile->binfile); thefile->binfile = NULL; thefile->state &= ~UUFILE_TMPFILE; } return UURET_OK; } int UUEXPORT UUCleanUp (void) { itbd *iter=ftodel, *ptr; uulist *liter; uufile *fiter; // allomap *aiter; /* * delete temporary input files (such as the copy of stdin) */ while (iter) { if (unlink (iter->fname)) { UUMessage (uulib_id, __LINE__, UUMSG_WARNING, uustring (S_TMP_NOT_REMOVED), iter->fname, strerror (uu_errno = errno)); } _FP_free (iter->fname); ptr = iter; iter = iter->NEXT; _FP_free (ptr); } ftodel = NULL; /* * Delete input files after successful decoding */ if (uu_remove_input) { liter = UUGlobalFileList; while (liter) { if (liter->state & UUFILE_DECODED) { fiter = liter->thisfile; while (fiter) { if (fiter->data && fiter->data->sfname) { /* * Error code ignored. We might want to delete a file multiple * times */ unlink (fiter->data->sfname); } fiter = fiter->NEXT; } } liter = liter->NEXT; } } UUkilllist (UUGlobalFileList); UUGlobalFileList = NULL; _FP_free (uusavepath); _FP_free (uuencodeext); _FP_free (sstate.source); uusavepath = NULL; uuencodeext = NULL; UUkillheaders (&localenv); UUkillheaders (&sstate.envelope); memset (&localenv, 0, sizeof (headers)); memset (&sstate, 0, sizeof (scanstate)); while (mssdepth) { mssdepth--; UUkillheaders (&(multistack[mssdepth].envelope)); _FP_free (multistack[mssdepth].source); } /* * clean up the malloc'ed stuff */ #if SKIP for (aiter=toallocate; aiter->ptr; aiter++) { _FP_free (*(aiter->ptr)); *(aiter->ptr) = NULL; } #endif return UURET_OK; }
[ "uud@miken.com" ]
uud@miken.com
842c399fe32d0bdef3d09a466487d1558b61e3cb
db8715dd187d5111ba521d0d040255d76f7d7ad9
/build/moc_transactionview.cpp
805ce01920cf456374a721c8de28dffdbb1d33ad
[ "MIT" ]
permissive
zm112211mz/mycoin
01ed0e56cfd7deb6dc68951ca8b298b7afa53da0
85b1970cb12b0949fe71d66ff7517e4a25dee46c
refs/heads/master
2021-01-23T11:47:50.566630
2014-05-20T09:37:42
2014-05-20T09:37:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,571
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'transactionview.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.0.1) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "../src/qt/transactionview.h" #include <QtCore/qbytearray.h> #include <QtCore/qmetatype.h> #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'transactionview.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 67 #error "This file was generated using the moc from 5.0.1. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE struct qt_meta_stringdata_TransactionView_t { QByteArrayData data[20]; char stringdata[227]; }; #define QT_MOC_LITERAL(idx, ofs, len) \ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ offsetof(qt_meta_stringdata_TransactionView_t, stringdata) + ofs \ - idx * sizeof(QByteArrayData) \ ) static const qt_meta_stringdata_TransactionView_t qt_meta_stringdata_TransactionView = { { QT_MOC_LITERAL(0, 0, 15), QT_MOC_LITERAL(1, 16, 13), QT_MOC_LITERAL(2, 30, 0), QT_MOC_LITERAL(3, 31, 14), QT_MOC_LITERAL(4, 46, 16), QT_MOC_LITERAL(5, 63, 11), QT_MOC_LITERAL(6, 75, 11), QT_MOC_LITERAL(7, 87, 9), QT_MOC_LITERAL(8, 97, 9), QT_MOC_LITERAL(9, 107, 10), QT_MOC_LITERAL(10, 118, 8), QT_MOC_LITERAL(11, 127, 10), QT_MOC_LITERAL(12, 138, 3), QT_MOC_LITERAL(13, 142, 10), QT_MOC_LITERAL(14, 153, 13), QT_MOC_LITERAL(15, 167, 6), QT_MOC_LITERAL(16, 174, 13), QT_MOC_LITERAL(17, 188, 6), QT_MOC_LITERAL(18, 195, 13), QT_MOC_LITERAL(19, 209, 16) }, "TransactionView\0doubleClicked\0\0" "contextualMenu\0dateRangeChanged\0" "showDetails\0copyAddress\0editLabel\0" "copyLabel\0copyAmount\0copyTxID\0chooseDate\0" "idx\0chooseType\0changedPrefix\0prefix\0" "changedAmount\0amount\0exportClicked\0" "focusTransaction\0" }; #undef QT_MOC_LITERAL static const uint qt_meta_data_TransactionView[] = { // content: 7, // revision 0, // classname 0, 0, // classinfo 15, 14, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 1, // signalCount // signals: name, argc, parameters, tag, flags 1, 1, 89, 2, 0x05, // slots: name, argc, parameters, tag, flags 3, 1, 92, 2, 0x08, 4, 0, 95, 2, 0x08, 5, 0, 96, 2, 0x08, 6, 0, 97, 2, 0x08, 7, 0, 98, 2, 0x08, 8, 0, 99, 2, 0x08, 9, 0, 100, 2, 0x08, 10, 0, 101, 2, 0x08, 11, 1, 102, 2, 0x0a, 13, 1, 105, 2, 0x0a, 14, 1, 108, 2, 0x0a, 16, 1, 111, 2, 0x0a, 18, 0, 114, 2, 0x0a, 19, 1, 115, 2, 0x0a, // signals: parameters QMetaType::Void, QMetaType::QModelIndex, 2, // slots: parameters QMetaType::Void, QMetaType::QPoint, 2, QMetaType::Void, QMetaType::Void, QMetaType::Void, QMetaType::Void, QMetaType::Void, QMetaType::Void, QMetaType::Void, QMetaType::Void, QMetaType::Int, 12, QMetaType::Void, QMetaType::Int, 12, QMetaType::Void, QMetaType::QString, 15, QMetaType::Void, QMetaType::QString, 17, QMetaType::Void, QMetaType::Void, QMetaType::QModelIndex, 2, 0 // eod }; void TransactionView::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { if (_c == QMetaObject::InvokeMetaMethod) { TransactionView *_t = static_cast<TransactionView *>(_o); switch (_id) { case 0: _t->doubleClicked((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; case 1: _t->contextualMenu((*reinterpret_cast< const QPoint(*)>(_a[1]))); break; case 2: _t->dateRangeChanged(); break; case 3: _t->showDetails(); break; case 4: _t->copyAddress(); break; case 5: _t->editLabel(); break; case 6: _t->copyLabel(); break; case 7: _t->copyAmount(); break; case 8: _t->copyTxID(); break; case 9: _t->chooseDate((*reinterpret_cast< int(*)>(_a[1]))); break; case 10: _t->chooseType((*reinterpret_cast< int(*)>(_a[1]))); break; case 11: _t->changedPrefix((*reinterpret_cast< const QString(*)>(_a[1]))); break; case 12: _t->changedAmount((*reinterpret_cast< const QString(*)>(_a[1]))); break; case 13: _t->exportClicked(); break; case 14: _t->focusTransaction((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; default: ; } } else if (_c == QMetaObject::IndexOfMethod) { int *result = reinterpret_cast<int *>(_a[0]); void **func = reinterpret_cast<void **>(_a[1]); { typedef void (TransactionView::*_t)(const QModelIndex & ); if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&TransactionView::doubleClicked)) { *result = 0; } } } } const QMetaObject TransactionView::staticMetaObject = { { &QWidget::staticMetaObject, qt_meta_stringdata_TransactionView.data, qt_meta_data_TransactionView, qt_static_metacall, 0, 0} }; const QMetaObject *TransactionView::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; } void *TransactionView::qt_metacast(const char *_clname) { if (!_clname) return 0; if (!strcmp(_clname, qt_meta_stringdata_TransactionView.stringdata)) return static_cast<void*>(const_cast< TransactionView*>(this)); return QWidget::qt_metacast(_clname); } int TransactionView::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QWidget::qt_metacall(_c, _id, _a); if (_id < 0) return _id; if (_c == QMetaObject::InvokeMetaMethod) { if (_id < 15) qt_static_metacall(this, _c, _id, _a); _id -= 15; } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { if (_id < 15) *reinterpret_cast<int*>(_a[0]) = -1; _id -= 15; } return _id; } // SIGNAL 0 void TransactionView::doubleClicked(const QModelIndex & _t1) { void *_a[] = { 0, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) }; QMetaObject::activate(this, &staticMetaObject, 0, _a); } QT_END_MOC_NAMESPACE
[ "zhumin@qiyi.com" ]
zhumin@qiyi.com
86b1824446008f5318646fad122f3ee795337d3b
ac2c7ce45a28c8ceb10d543944db90f6025e8a58
/src/serialization/urihandler.hpp
92aa51d9286c1658a0fb32a331707170e0092c2d
[ "MIT", "BSD-3-Clause", "Zlib", "BSL-1.0" ]
permissive
degarashi/revenant
a5997ccc9090690abd03a19e749606c9cdf935d4
9e671320a5c8790f6bdd1b14934f81c37819f7b3
refs/heads/master
2021-01-11T00:15:06.876412
2019-09-08T13:00:26
2019-09-08T13:00:26
70,564,404
0
0
null
null
null
null
UTF-8
C++
false
false
372
hpp
#pragma once #include "../uri/handler.hpp" #include <cereal/types/vector.hpp> #include <cereal/types/utility.hpp> namespace rev { template <class Ar> void serialize(Ar& ar, UriHandlerV& u) { ar(u._handler); } } #include <cereal/types/polymorphic.hpp> #include <cereal/archives/binary.hpp> #include <cereal/archives/json.hpp> CEREAL_REGISTER_TYPE(::rev::URIHandler);
[ "slice013@gmail.com" ]
slice013@gmail.com
2c1a2e8a3a51ff609bda10769a22addab9b446a5
ae0db002fc10256c3171ab17f13e339d8c8d8f04
/Desktop/Sample programs/C++/Programs/Program3/Creatures.cpp
c319e153498e4787d24dfaf8f2786f7add3c8b01
[]
no_license
DavidWallacedot/Magical-Creatures-Zoo
7345f0cf23415154633a0e9a02861ca94d9b2383
2b0fd01b2e1f633ea02e1718993b74f43d181de5
refs/heads/master
2021-05-11T14:12:50.176737
2018-01-16T15:16:29
2018-01-16T15:16:29
117,697,529
0
0
null
null
null
null
UTF-8
C++
false
false
1,303
cpp
/* Author: David Wallace Date: 11/11/2017 name: Creatures.cpp purpose: constructs a zoo of magical creatures for hagrid */ #include "Creatures.h" int main(){ creature creaturez; int numCreatures=0; char userInput = 'y'; while (tolower(userInput) == 'y' ){ creature zoo[100];//array of type creature cout<<"What would you like to do?\n"; cout<<"1. Enter new magical creatures or load from a file.\n"; cout<<"2. Remove magical creature from the zoo\n"; cout<<"3. Print all creatures.\n"; cout<<"4. Print statistics on creature cost.\n"; cout<<"5. End program.\n"; cout<<"Enter 1, 2, 3, 4 or 5.\n"; cout<<"CHOICE: "; int input =0; cin>>input; while(input<0 || input>5){//validates userInput cout<<"Your choice was invalid. Choose a number 1 - 5\nCHOICE: "; cin>>input; } switch(input){//determines which function to call case 1: cout<<endl; numCreatures += enterCreatures(numCreatures,zoo); break; case 2: numCreatures = deleteMagicalCreature(numCreatures,zoo); break; case 3: cout<<endl; printCreatures(numCreatures,zoo); break; case 4: cout<<endl; printStatistics(numCreatures,zoo); break; case 5: cout<<endl; saveCreaturesToFile(numCreatures,zoo); userInput = 'n'; break; } } return 0; }
[ "davidwallacedot@yahoo.com" ]
davidwallacedot@yahoo.com
3df3f1918717fd7af5da48b261d7b681aedd8736
f77d2d84af7b1d555a96f5ab9f42f1b7c7abd60c
/src/skiplist/QuadList_insert.h
0cbf2120f587db69e4cd530791d256826f5692a0
[]
no_license
pangpang20/data-structure
d8e43a2cf167c88a64d9128b165ed438f194d3e5
53a2f76919eda2add01f6e60bc40c4c13365d481
refs/heads/main
2023-05-01T01:43:06.359569
2021-05-26T07:14:23
2021-05-26T07:14:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
705
h
/****************************************************************************************** * Data Structures in C++ * ISBN: 7-302-33064-6 & 7-302-33065-3 & 7-302-29652-2 & 7-302-26883-3 * Junhui DENG, deng@tsinghua.edu.cn * Computer Science & Technology, Tsinghua University * Copyright (c) 2003-2020. All rights reserved. ******************************************************************************************/ #pragma once template <typename T> QListNodePosi<T> //将e作为p的后继、b的上邻插入Quadlist Quadlist<T>::insertAfterAbove ( T const& e, QListNodePosi<T> p, QListNodePosi<T> b ) { _size++; return p->insertAsSuccAbove ( e, b ); } //返回新节点位置(below = NULL)
[ "melodyhaya@gmail.com" ]
melodyhaya@gmail.com
6804ece782b85e640bc67df8397f69a120f4fe5d
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5688567749672960_1/C++/Amoo/e.cpp
91746c559ef1b6ef1f36e8ef09809b840c8bdc3f
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
690
cpp
//ITNOG #include<bits/stdc++.h> using namespace std; #define int long long #define rep(i, s, e) for(int i = s; i < e; i ++) const int maxN = 1000*1000 + 5; const int mod = 1000*1000*1000 + 7; int ch(int x) { int res = 0; while(x) { res *= 10, res += x % 10; x /= 10; } return res; } int solve() { int n; cin >> n; int cur = n, cnt = 0; while(cur) { if(cur % 10 == 0) { cur --; cnt ++; continue; } cur = min(cur - 1, ch(cur)); cnt ++; } return cnt; } main() { ios::sync_with_stdio(0); cin.tie(); int T; cin >> T; rep(i,1,T+1) { cout << "Case #" << i << ": " << solve() << endl; } return 0; }
[ "eewestman@gmail.com" ]
eewestman@gmail.com
08a0e1f14437e6644c8da5f459700e2670652e3f
23c524e47a96829d3b8e0aa6792fd40a20f3dd41
/.history/vector/main_20210422151051.cpp
b62ab0de02146913207b23b304e7f8b861ef03a8
[]
no_license
nqqw/ft_containers
4c16d32fb209aea2ce39e7ec25d7f6648aed92e8
f043cf52059c7accd0cef7bffcaef0f6cb2c126b
refs/heads/master
2023-06-25T16:08:19.762870
2021-07-23T17:28:09
2021-07-23T17:28:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,704
cpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: dbliss <dbliss@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/04/22 13:32:30 by dbliss #+# #+# */ /* Updated: 2021/04/22 15:10:51 by dbliss ### ########.fr */ /* */ /* ************************************************************************** */ #include "Vector.hpp" #include "Iterator.hpp" #include <iostream> #include <unistd.h> #include <vector> #define red "\x1b[31m" #define green "\x1b[32m" #define yellow "\x1b[33m" #define blue "\x1b[34m" #define cend "\x1b[0m" void print_int_array(ft::vector<int> &vec) { ft::vector<int>::iterator it = vec.begin(); ft::vector<int>::iterator ite = vec.end(); while (it != ite) { std::cout << *it << " "; it++; } std::cout << std::endl; std::cout << std::endl; } void constructor_test() { std::cout << blue << "***************[ Default constructor test ]***************" << cend << std::endl; std::cout << green << "Testing empty vector int: " << cend << std::endl; ft::vector<int> vec; std::cout << "Vector size is: " << vec.size() << std::endl << std::endl; std::cout << blue << "***************[ Fill constructor test ]***************" << cend << std::endl; std::cout << green << "Testing vector<int> vec1(10, 42): " << cend << std::endl; ft::vector<int> vec1(10, 42); print_int_array(vec1); std::cout << std::endl; std::cout << blue << "***************[ Range constructor test ]***************" << cend << std::endl; ft::vector<int> vec2; for (int i = 0; i < 10; ++i) { vec2.push_back(i); } ft::vector<int>::iterator it = vec2.begin(); ft::vector<int> vec3(it, it + 2); print_int_array(vec3); std::cout << std::endl; std::cout << blue << "***************[ Copy constructor test ]***************" << cend << std::endl; std::cout << green << "Making copy vector<int> vec4(vec1): " << cend << std::endl; ft::vector<int> vec4 = vec1; ft::vector<int>::iterator its = vec4.begin(); ft::vector<int>::iterator ites = vec4.end(); while (its != ites) { std::cout << *its << " "; its++; } std::cout << std::endl; } int main() { constructor_test(); return 0; }
[ "dbliss@at-q1.msk.21-school.ru" ]
dbliss@at-q1.msk.21-school.ru
cdf65b8bdd5f3eca802a34d4df5f81744e529168
eafdba6a2e9ee8a31270d576f5da60df6e72eb0c
/BOJ 대회 스코어보드/BOJ 대회 스코어보드.cpp
b906eb9d9729c31c5359d592a69695e1a7a0738d
[]
no_license
DahamChoi/Algorithm2
a076b14bc0f7d86710a4447b2f64a2dc76624fd0
3fc30d1751c447e388b976a2ce7c5955513cbaa9
refs/heads/master
2023-06-01T10:21:51.507089
2021-06-27T09:00:53
2021-06-27T09:00:53
374,948,754
0
1
null
null
null
null
UTF-8
C++
false
false
7,771
cpp
#include <iostream> #include <vector> #include <map> #include <algorithm> #include <ctime> #include <string> using namespace std; struct competition { string start; long long panalty, last, ce, cscore, format; }; struct problem { long long order, pscore; }; struct submission { string uid, date; long long sid, pid, result, presult, score; }; struct result { long long type, try_cnt, good_solution_pid, penalty_1, penalty_2, try_cnt_2, good_solution_score; }; struct user { string id; long long score, penalty, last_ac_id, last_submission_id; map<long long, result> problem_result; }; struct compare { bool operator()(const pair<string, user>& _left, const pair<string, user>& _right) { const user& left = _left.second; const user& right = _right.second; if (left.score == right.score) { if (left.penalty == right.penalty) { if (left.last_ac_id == right.last_ac_id) { if (left.last_submission_id == right.last_submission_id) { return left.id < right.id; } return left.last_submission_id < right.last_submission_id; } return left.last_ac_id < right.last_ac_id; } return left.penalty < right.penalty; } return left.score > right.score; } }; long long get_solution_time(const string& start, const string& end) { tm end_time = { atoi(end.substr(17, 2).c_str()), atoi(end.substr(14, 2).c_str()), atoi(end.substr(11, 2).c_str()), atoi(end.substr(8, 2).c_str()), atoi(end.substr(5, 2).c_str()) - 1, atoi(end.substr(0, 4).c_str()) - 1900 }; tm start_time = { atoi(start.substr(17, 2).c_str()), atoi(start.substr(14, 2).c_str()), atoi(start.substr(11, 2).c_str()), atoi(start.substr(8, 2).c_str()), atoi(start.substr(5, 2).c_str()) - 1, atoi(start.substr(0, 4).c_str()) - 1900 }; double diff = (difftime(mktime(&end_time), mktime(&start_time))); long long tm_min = diff / 60; return tm_min; } string make_string(long long min) { string s1 = to_string(min / 60); string s2 = to_string(min % 60); if (s2.size() == 1) { s2.insert(s2.begin(), '0'); } return s1 + ":" + s2; } int main() { ios::sync_with_stdio(false); cin.tie(NULL); // 대회 정보 competition compet; cin >> compet.panalty; string str; cin >> str; compet.start = str + ' '; cin >> str; compet.start.insert(compet.start.end(), str.begin(), str.end()); cin >> compet.last >> compet.ce >> compet.cscore >> compet.format; // 문제 정보 long long N; cin >> N; map<long long, problem> problems; for (long long i = 0; i < N; i++) { long long id, order, pscore; cin >> id >> order >> pscore; problems[id] = { order, pscore }; } // 유저 정보 long long M; cin >> M; map<string, user> users; for (long long i = 0; i < M; i++) { string str; cin >> str; users[str].id = str; for (auto& it : problems) { users[str].problem_result[it.first]; } } // 제출 정보 long long S; cin >> S; vector<submission> submissions(S); for (long long i = 0; i < S; i++) { cin >> submissions[i].sid >> submissions[i].pid >> submissions[i].uid >> submissions[i].result >> submissions[i].presult >> submissions[i].score; string str; cin >> str; submissions[i].date = str + ' '; cin >> str; submissions[i].date.insert(submissions[i].date.end(), str.begin(), str.end()); } for (auto& it : submissions) { if (users[it.uid].id.empty() || (compet.ce == 1 && it.result == 11) || it.result == 13) { continue; } users[it.uid].last_submission_id = it.sid; auto& p_result = users[it.uid].problem_result[it.pid]; // 일반 대회 if (compet.cscore == 0) { if (it.result == 4) { if (p_result.good_solution_pid == 0) { p_result.good_solution_pid = it.pid; p_result.penalty_1 = (p_result.try_cnt++) * compet.panalty; p_result.penalty_2 = get_solution_time(compet.start, it.date); ++users[it.uid].score; p_result.type = 1; } users[it.uid].last_ac_id = it.sid; } else if (p_result.good_solution_pid == 0) { ++p_result.try_cnt; } } // 점수 대회 else { if (it.result == 4) { if (it.score > 0) { if (it.score > p_result.good_solution_score) { p_result.good_solution_score = it.score; p_result.penalty_1 = (p_result.try_cnt_2++) * compet.panalty; p_result.penalty_2 = get_solution_time(compet.start, it.date); p_result.type = 1; p_result.try_cnt = p_result.try_cnt_2; } else { ++p_result.try_cnt_2; } } else { if (p_result.good_solution_score < problems[it.pid].pscore) { p_result.good_solution_score = problems[it.pid].pscore; p_result.penalty_1 = (p_result.try_cnt_2++) * compet.panalty; p_result.penalty_2 = get_solution_time(compet.start, it.date); p_result.type = 1; p_result.try_cnt = p_result.try_cnt_2; } else { ++p_result.try_cnt_2; } } users[it.uid].last_ac_id = it.sid; } else { ++p_result.try_cnt_2; } } } for (auto& it : users) { if (compet.last == 0) { for (auto& it2 : it.second.problem_result) { it.second.penalty += (it2.second.penalty_1 + it2.second.penalty_2); } } else { long long max_value = 0; for (auto& it2 : it.second.problem_result) { max_value = max(it2.second.penalty_2, max_value); it.second.penalty += it2.second.penalty_1; } it.second.penalty += max_value; } if (compet.cscore == 1) { for (auto& it2 : it.second.problem_result) { it.second.score += it2.second.good_solution_score; } } } vector<pair<string, user>> users_vector(users.begin(), users.end()); sort(users_vector.begin(), users_vector.end(), compare()); long long rank = 1; for (long long i = 0; i < users_vector.size(); i++) { if (users[users_vector[i].first].id.empty()) { continue; } cout << rank << "," << users_vector[i].first << ","; vector<pair<long long, result>> problem_result_vector( users_vector[i].second.problem_result.begin(), users_vector[i].second.problem_result.end()); sort(problem_result_vector.begin(), problem_result_vector.end(), [&](const pair<long long, result>& left, const pair<long long, result>& right) { return problems[left.first].order < problems[right.first].order; }); for (auto& it : problem_result_vector) { // 일반 대회 if (compet.cscore == 0) { if (it.second.try_cnt == 0) { cout << "0/--,"; } else { if (it.second.type == 1) { long long penalty = (compet.last == 0 ? it.second.penalty_1 + it.second.penalty_2 : it.second.penalty_2); cout << "a/" << it.second.try_cnt << "/" << (compet.format == 1 ? make_string(penalty) : to_string(penalty)) << ","; } else { cout << "w/" << it.second.try_cnt << "/--,"; } } } // 점수 대회 else { if (it.second.try_cnt_2 == 0) { cout << "0/--,"; } else { if (it.second.type == 1) { if (it.second.good_solution_score == problems[it.first].pscore) { cout << "a/"; } else { cout << "p/"; } long long penalty = (compet.last == 0 ? it.second.penalty_1 + it.second.penalty_2 : it.second.penalty_2); cout << it.second.good_solution_score << "/" << it.second.try_cnt << "/" << (compet.format == 1 ? make_string(penalty) : to_string(penalty)) << ","; } else { cout << "w/" << it.second.try_cnt_2 << "/--,"; } } } } cout << users_vector[i].second.score << "/" << (compet.format == 1 ? make_string(users_vector[i].second.penalty) : to_string(users_vector[i].second.penalty)) << '\n'; if (i + 1 < users_vector.size() && !(users_vector[i].second.score == users_vector[i + 1].second.score && users_vector[i].second.penalty == users_vector[i + 1].second.penalty)) { rank = i + 2; } } return 0; }
[ "rorigu32@gmail.com" ]
rorigu32@gmail.com
a332d03c9b0f0b1a02eeb4debbbd5cd40901737e
138fbf302f4c4797c9bc992fa7aae1db0a2dc597
/lib/libcds/tests/test-hdr/ordered_list/hdr_michael_hrc.cpp
305fcf15ac42a90441597c268ac5548641f5ec1b
[ "BSD-2-Clause" ]
permissive
dimak08/seminar_in_algorithms
19cb7bed711963000cebb30f8b459df801df5be5
681e105dbdefa781eb0618192886b7b5004c7a6c
refs/heads/master
2021-01-18T05:48:57.474752
2015-09-23T16:10:39
2015-09-23T16:10:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,064
cpp
//$$CDS-header$$ #include "ordered_list/hdr_michael.h" #include <cds/container/michael_list_hrc.h> namespace ordlist { namespace { struct HRC_cmp_traits: public cc::michael_list::type_traits { typedef MichaelListTestHeader::cmp<MichaelListTestHeader::item> compare ; }; } void MichaelListTestHeader::HRC_cmp() { // traits-based version typedef cc::MichaelList< cds::gc::HRC, item, HRC_cmp_traits > list ; test< list >() ; // option-based version typedef cc::MichaelList< cds::gc::HRC, item, cc::michael_list::make_traits< cc::opt::compare< cmp<item> > >::type > opt_list ; test< opt_list >() ; } namespace { struct HRC_less_traits: public cc::michael_list::type_traits { typedef MichaelListTestHeader::lt<MichaelListTestHeader::item> less ; }; } void MichaelListTestHeader::HRC_less() { // traits-based version typedef cc::MichaelList< cds::gc::HRC, item, HRC_less_traits > list ; test< list >() ; // option-based version typedef cc::MichaelList< cds::gc::HRC, item, cc::michael_list::make_traits< cc::opt::less< lt<item> > >::type > opt_list ; test< opt_list >() ; } namespace { struct HRC_cmpmix_traits: public cc::michael_list::type_traits { typedef MichaelListTestHeader::cmp<MichaelListTestHeader::item> compare ; typedef MichaelListTestHeader::lt<MichaelListTestHeader::item> less ; }; } void MichaelListTestHeader::HRC_cmpmix() { // traits-based version typedef cc::MichaelList< cds::gc::HRC, item, HRC_cmpmix_traits> list ; test< list >() ; // option-based version typedef cc::MichaelList< cds::gc::HRC, item, cc::michael_list::make_traits< cc::opt::compare< cmp<item> > ,cc::opt::less< lt<item> > >::type > opt_list ; test< opt_list >() ; } namespace { struct HRC_ic_traits: public cc::michael_list::type_traits { typedef MichaelListTestHeader::lt<MichaelListTestHeader::item> less ; typedef cds::atomicity::item_counter item_counter ; }; } void MichaelListTestHeader::HRC_ic() { // traits-based version typedef cc::MichaelList< cds::gc::HRC, item, HRC_ic_traits > list ; test< list >() ; // option-based version typedef cc::MichaelList< cds::gc::HRC, item, cc::michael_list::make_traits< cc::opt::less< lt<item> > ,cc::opt::item_counter< cds::atomicity::item_counter > >::type > opt_list ; test< opt_list >() ; } } // namespace ordlist
[ "jakob.gruber@gmail.com" ]
jakob.gruber@gmail.com
f6e97a1225ede0186a418ae797955f417ec885f9
9f520bcbde8a70e14d5870fd9a88c0989a8fcd61
/pitzDaily/316/phi
a37405dfafefcbe03c317f18e5d24a3ae0477e72
[]
no_license
asAmrita/adjoinShapOptimization
6d47c89fb14d090941da706bd7c39004f515cfea
079cbec87529be37f81cca3ea8b28c50b9ceb8c5
refs/heads/master
2020-08-06T21:32:45.429939
2019-10-06T09:58:20
2019-10-06T09:58:20
213,144,901
1
0
null
null
null
null
UTF-8
C++
false
false
233,326
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1806 | | \\ / A nd | Web: www.OpenFOAM.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "316"; object phi; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; oriented oriented; internalField nonuniform List<scalar> 12640 ( -1.86497381051e-07 1.8670647913e-07 -3.59793695821e-07 1.73439620867e-07 -5.14363107348e-07 1.54670822573e-07 -6.44591945361e-07 1.30298289628e-07 -7.3618950015e-07 9.16667658123e-08 -7.86124978701e-07 5.00299549322e-08 -8.15322278373e-07 2.92883631822e-08 -8.72704076452e-07 5.74625313019e-08 -9.60643948044e-07 8.8006436481e-08 -1.04147272287e-06 8.08811923951e-08 -1.1151642001e-06 7.37226578421e-08 -1.19635456262e-06 8.12134128767e-08 -1.26787794326e-06 7.15376946394e-08 -1.32238582529e-06 5.45196250657e-08 -1.36881317146e-06 4.6438891635e-08 -1.42497093628e-06 5.6183469379e-08 -1.48320484649e-06 5.82568342861e-08 -1.52700647758e-06 4.3825574179e-08 -1.55307272313e-06 2.60676235145e-08 -1.57061418506e-06 1.75258680748e-08 -1.60401426733e-06 3.33708622886e-08 -1.65827046819e-06 5.4225813073e-08 -1.7190765973e-06 6.0769283208e-08 -1.77864081568e-06 5.95302795553e-08 -1.83214308533e-06 5.34646019626e-08 -1.87834472424e-06 4.61669421458e-08 -1.92129488426e-06 4.29087878371e-08 -1.95866900715e-06 3.73353662675e-08 -1.98800408749e-06 2.92866018946e-08 -2.01087003136e-06 2.28192517046e-08 -2.03281669739e-06 2.18880937396e-08 -2.0517288858e-06 1.88549546544e-08 -2.06287503577e-06 1.10845927277e-08 -2.07363974441e-06 1.06972254182e-08 -2.08326601189e-06 9.53435081842e-09 -2.09017334894e-06 6.81664506494e-09 -2.09987030045e-06 9.58660708493e-09 -2.10848134448e-06 8.48440296024e-09 -2.11200727845e-06 3.37910415713e-09 -2.11607039567e-06 3.91581386662e-09 -2.1356270133e-06 1.94035779765e-08 -2.15706181054e-06 2.12982190027e-08 -2.15517431433e-06 -2.02143924597e-09 -2.13812836042e-06 -1.71789585617e-08 -2.11442239236e-06 -2.38465263685e-08 -2.08298260036e-06 -3.15777381629e-08 -2.04374903805e-06 -3.93814713401e-08 -1.99476665599e-06 -4.91304227359e-08 -1.93692042345e-06 -5.80050500447e-08 -1.88038832081e-06 -5.66886786945e-08 -1.83547238292e-06 -4.50979055119e-08 -1.78437615113e-06 -5.12762279976e-08 -1.68931069455e-06 -9.52547582938e-08 -1.56265331126e-06 -1.26871647019e-07 -1.41552127912e-06 -1.4736193866e-07 -1.23582879903e-06 -1.79930827788e-07 -1.05303255792e-06 -1.83099007822e-07 -8.75909391357e-07 -1.77503842025e-07 -6.73605623289e-07 -2.02761014219e-07 -4.46185255835e-07 -2.27980586701e-07 -1.97736335179e-07 -2.49126147688e-07 6.83975453274e-08 -2.66891501791e-07 3.96235713851e-07 -3.28647257648e-07 6.23559722538e-07 -2.27860896269e-07 7.55790467541e-07 -1.32573877979e-07 8.42296586353e-07 -8.6746332202e-08 9.01948606765e-07 -5.98752418354e-08 9.4914729598e-07 -4.74362624763e-08 9.84428165874e-07 -3.55477715736e-08 1.00183286649e-06 -1.76900963384e-08 9.9700167274e-07 4.53773224126e-09 9.6647140501e-07 3.02511463627e-08 9.07142633515e-07 5.90654230214e-08 8.06743473689e-07 1.0014162324e-07 6.95200736457e-07 1.11302356481e-07 5.76431320488e-07 1.18554966628e-07 4.80153163942e-07 9.59991329388e-08 3.49612480821e-07 1.30302115376e-07 2.16271404542e-07 1.32969738339e-07 2.1593316678e-07 -9.35365448435e-08 2.80293631936e-07 -2.17098240625e-07 2.97086677413e-07 -3.37253749151e-07 2.74881724574e-07 -4.65550173846e-07 2.58641665237e-07 -6.37181373126e-07 2.6337171813e-07 -7.73819041318e-07 1.86742326331e-07 -8.50603016124e-07 1.0616311314e-07 -9.17948287698e-07 1.24881168795e-07 -9.90136516877e-07 1.60259769808e-07 -1.07166426361e-06 1.62447487673e-07 -1.15006190436e-06 1.5215486875e-07 -1.21211304109e-06 1.43279303755e-07 -1.26749749164e-06 1.26945422867e-07 -1.32120237281e-06 1.08245456421e-07 -1.37276985263e-06 9.80463141222e-08 -1.43199392594e-06 1.15433857434e-07 -1.48139950808e-06 1.07697065179e-07 -1.49171345515e-06 5.41396547625e-08 -1.49559288881e-06 2.99416828272e-08 -1.52172636196e-06 4.36289723876e-08 -1.57277535105e-06 8.43906677937e-08 -1.64984649744e-06 1.31250313005e-07 -1.72588292122e-06 1.36776840814e-07 -1.77969955679e-06 1.13301805384e-07 -1.82808088777e-06 1.01816877727e-07 -1.88156846668e-06 9.96070623274e-08 -1.92581987992e-06 8.71289890572e-08 -1.95965305511e-06 7.11153246596e-08 -1.98788475136e-06 5.74804016911e-08 -2.01135740332e-06 4.62301204647e-08 -2.02843872158e-06 3.89239082399e-08 -2.0407644679e-06 3.11193320864e-08 -2.04559369179e-06 1.58580807183e-08 -2.05154844966e-06 1.65678684775e-08 -2.06774790669e-06 2.56650284201e-08 -2.07535220354e-06 1.4303167627e-08 -2.08139921397e-06 1.55191351584e-08 -2.09992432018e-06 2.68668103865e-08 -2.1228996722e-06 2.62201410837e-08 -2.1324138877e-06 1.32658307885e-08 -2.08752079005e-06 -2.56222183248e-08 -2.01770951982e-06 -4.86536893386e-08 -1.98434722347e-06 -3.5503040695e-08 -1.9744400302e-06 -2.72310371917e-08 -1.96876376617e-06 -2.9653083937e-08 -1.96420106966e-06 -3.62940275079e-08 -1.95385004304e-06 -4.98706414587e-08 -1.93679232633e-06 -6.63484528296e-08 -1.90888112544e-06 -8.60643348451e-08 -1.85287734907e-06 -1.12862111852e-07 -1.7572009324e-06 -1.40928002029e-07 -1.65488411008e-06 -1.53767931569e-07 -1.60759095339e-06 -1.42732957769e-07 -1.54709746784e-06 -1.87590524349e-07 -1.43199196674e-06 -2.62702785729e-07 -1.3106781755e-06 -3.01533889003e-07 -1.165045866e-06 -3.29071864739e-07 -9.76211323e-07 -3.66761280392e-07 -7.62358918523e-07 -4.17124168109e-07 -5.13423679651e-07 -4.7754603804e-07 -2.18453636709e-07 -5.44755730525e-07 8.08705813776e-08 -5.66926920391e-07 3.92149862763e-07 -6.40681968978e-07 6.13837849463e-07 -4.50084626746e-07 7.34821652765e-07 -2.53876086666e-07 7.98874322031e-07 -1.51038588942e-07 8.65298723145e-07 -1.2651700341e-07 9.34160227823e-07 -1.16536360053e-07 9.82402513973e-07 -8.40531257583e-08 1.00199799077e-06 -3.7573914656e-08 9.87411513199e-07 1.88368986422e-08 9.42020018272e-07 7.53756617281e-08 8.90158744009e-07 1.10671346687e-07 8.43169254441e-07 1.46878035583e-07 7.71547454696e-07 1.8266954858e-07 6.83841625258e-07 2.05993769738e-07 5.63952151842e-07 2.15643791774e-07 4.31870500815e-07 2.62015361004e-07 2.33292339606e-07 3.31105235094e-07 4.4899830446e-07 -1.26183423016e-07 4.06607741608e-07 -1.8257444362e-07 3.53543013986e-07 -3.39422423534e-07 4.31791273519e-07 -5.28297918849e-07 4.47593279533e-07 -6.96590220159e-07 4.3174271238e-07 -7.75656262116e-07 2.65868811323e-07 -8.11090402704e-07 1.41644502957e-07 -8.8554112433e-07 1.99380056383e-07 -9.74498915664e-07 2.49256056714e-07 -1.06258795657e-06 2.5056587426e-07 -1.14386569102e-06 2.33452907088e-07 -1.21036503507e-06 2.09810273381e-07 -1.26633131905e-06 1.8295434996e-07 -1.32088318626e-06 1.62846157343e-07 -1.35468445365e-06 1.31891831985e-07 -1.30800567866e-06 6.87882818884e-08 -1.22269250979e-06 2.23876459966e-08 -1.20533418239e-06 3.67740982012e-08 -1.26710654549e-06 9.16909814871e-08 -1.41062108176e-06 1.87112886711e-07 -1.56748770443e-06 2.41221423558e-07 -1.65654512812e-06 2.20277842715e-07 -1.71263674514e-06 1.9283200378e-07 -1.77881431085e-06 1.79447993159e-07 -1.83983878519e-06 1.62802780827e-07 -1.88465800465e-06 1.44392310621e-07 -1.92177794991e-06 1.24205579839e-07 -1.95479753198e-06 1.04095392157e-07 -1.98164853925e-06 8.42815403663e-08 -2.0045481783e-06 6.90850756285e-08 -2.01751627328e-06 5.18423472548e-08 -2.02520841982e-06 3.8756021036e-08 -2.03566456923e-06 2.62582709884e-08 -2.02304847934e-06 3.88610375286e-09 -2.01914894654e-06 2.16634643945e-08 -2.05018201949e-06 4.5227844993e-08 -2.06150071241e-06 2.67083817129e-08 -2.06890389442e-06 3.4133290135e-08 -2.10531484896e-06 6.24801616045e-08 -2.13917391735e-06 4.69839167511e-08 -2.16135011644e-06 -3.59187295295e-09 -2.17044300147e-06 -3.96996226688e-08 -2.16073749177e-06 -4.53579930346e-08 -2.14209552355e-06 -4.60163439548e-08 -2.11876379861e-06 -5.31371085422e-08 -2.08929967336e-06 -6.59041303927e-08 -2.05499939859e-06 -8.43251441567e-08 -2.01475312017e-06 -1.06743394026e-07 -1.96763281738e-06 -1.33340489747e-07 -1.91581887586e-06 -1.6482594488e-07 -1.85975052622e-06 -1.97158128855e-07 -1.78841980524e-06 -2.25269860871e-07 -1.67427266102e-06 -2.57069399107e-07 -1.54724391862e-06 -3.14824631391e-07 -1.43838783553e-06 -3.71798969938e-07 -1.31448444491e-06 -4.25720258965e-07 -1.15140203584e-06 -4.92496262442e-07 -9.51698326159e-07 -5.6686638064e-07 -7.2150661365e-07 -6.47790746687e-07 -4.65263103493e-07 -7.34324972803e-07 -1.98896081881e-07 -8.11736084964e-07 1.04926680181e-07 -8.71428133208e-07 3.43847341951e-07 -8.80255078335e-07 5.25207733496e-07 -6.31897832847e-07 6.64332504295e-07 -3.93304124365e-07 7.85799502968e-07 -2.72738177453e-07 8.69604895986e-07 -2.10540176452e-07 9.18062236879e-07 -1.6521684207e-07 9.45499069336e-07 -1.11739857019e-07 9.53163168316e-07 -4.5504546004e-08 9.52389328146e-07 1.93439654927e-08 9.59122579471e-07 6.83883960122e-08 9.53123707699e-07 1.1642269224e-07 9.05247949953e-07 1.94506607043e-07 8.09680961466e-07 2.78010465579e-07 6.89491643326e-07 3.25951641091e-07 5.64331752203e-07 3.40503457091e-07 4.41544361729e-07 3.84578868346e-07 1.99506671951e-07 5.72830223051e-07 6.48352910857e-07 -8.87267632072e-08 4.95354646171e-07 -1.10357829125e-07 3.75219042053e-07 -2.9978677414e-07 6.21290715916e-07 -4.46987958145e-07 5.94879581171e-07 -4.35116966475e-07 4.19927291876e-07 -3.5941062728e-07 1.90180355926e-07 -5.04581645931e-07 2.86828259793e-07 -7.5614860454e-07 4.50961567739e-07 -9.26357915063e-07 4.19486578727e-07 -1.03813474189e-06 3.62363683986e-07 -1.13299585216e-06 3.28349353121e-07 -1.20988694503e-06 2.86752539256e-07 -1.25383437719e-06 2.26959914358e-07 -1.22179831305e-06 1.30866179756e-07 -1.13591937871e-06 4.60465858391e-08 -1.09486778785e-06 2.77393135562e-08 -1.13801628282e-06 6.55236279313e-08 -1.26058851226e-06 1.59322079103e-07 -1.43030302336e-06 2.61378108427e-07 -1.54771238106e-06 3.04496504979e-07 -1.60334269025e-06 2.96827290121e-07 -1.6647338774e-06 2.81638589488e-07 -1.73170123876e-06 2.59770272449e-07 -1.7872516889e-06 2.34965477152e-07 -1.83483734254e-06 2.10358748823e-07 -1.87590477655e-06 1.85423053402e-07 -1.91422934242e-06 1.62496407804e-07 -1.94657314009e-06 1.36394818013e-07 -1.97468162812e-06 1.12349483766e-07 -1.99230175652e-06 8.66620410681e-08 -2.00861444041e-06 6.81104365205e-08 -2.00979011732e-06 3.98892593218e-08 -1.99480263524e-06 1.12081059975e-08 -2.01668635927e-06 2.56832636767e-08 -2.03018198488e-06 3.50606484942e-08 -2.03979282364e-06 5.47157894321e-08 -2.09742862482e-06 8.4207675366e-08 -2.14724145131e-06 8.38018259533e-08 -2.15713051532e-06 7.22315785502e-08 -2.15554117398e-06 4.52491519748e-08 -2.1616575947e-06 2.37745413084e-09 -2.16791560451e-06 -3.35950704931e-08 -2.16217856346e-06 -5.12424716502e-08 -2.14624432113e-06 -6.21006993588e-08 -2.12373955557e-06 -7.57867170461e-08 -2.09542427503e-06 -9.43675741991e-08 -2.06190300794e-06 -1.17990409909e-07 -2.02267377225e-06 -1.46120603719e-07 -1.97716108639e-06 -1.78997679819e-07 -1.92526000176e-06 -2.16876276094e-07 -1.86423342731e-06 -2.58334133496e-07 -1.78666876735e-06 -3.02991898707e-07 -1.68769330032e-06 -3.56217378648e-07 -1.5795681669e-06 -4.23144925251e-07 -1.45707449413e-06 -4.9452051144e-07 -1.30859210179e-06 -5.74471375377e-07 -1.12964861373e-06 -6.7175225805e-07 -9.16461476917e-07 -7.80419378807e-07 -6.71577828474e-07 -8.93087085914e-07 -4.06590523811e-07 -9.99772864463e-07 -1.36929421299e-07 -1.08188004069e-06 1.09927994806e-07 -1.11880967889e-06 2.8041565167e-07 -1.05125676313e-06 4.9546583654e-07 -8.47376516652e-07 6.72433611822e-07 -5.70585871517e-07 7.70817666243e-07 -3.7135016777e-07 8.43276047112e-07 -2.83197854285e-07 9.02913817513e-07 -2.25067838497e-07 9.49587738133e-07 -1.58645808074e-07 9.870096737e-07 -8.31852282421e-08 1.01576020171e-06 -9.66439229177e-09 1.01544468102e-06 6.84572054804e-08 9.54259999082e-07 1.77396139105e-07 8.55538079557e-07 2.93053850012e-07 7.48258237274e-07 3.8508306666e-07 6.09563126147e-07 4.64448485945e-07 4.4477654646e-07 5.05170609856e-07 3.09337929274e-07 5.19836861814e-07 1.61789992586e-07 7.20220430298e-07 8.10105406523e-07 -1.12301657131e-08 5.06654467206e-07 -1.0051524457e-07 4.64539163695e-07 -2.56017833612e-07 7.76869440759e-07 -3.48049228811e-07 6.86992969944e-07 -3.06278476567e-07 3.78189119046e-07 -3.79555995372e-07 2.63461582185e-07 -5.85005961219e-07 4.92278983005e-07 -7.49038694974e-07 6.15011156946e-07 -8.75936553689e-07 5.46400267203e-07 -9.93796876224e-07 4.80257430639e-07 -1.10146779362e-06 4.36077422333e-07 -1.14072442331e-06 3.26066086291e-07 -1.08616584041e-06 1.72454285957e-07 -1.03640003965e-06 8.11271179864e-08 -1.06602418752e-06 7.56692689654e-08 -1.16033221842e-06 1.22032310456e-07 -1.30469257741e-06 2.09861106739e-07 -1.44165817213e-06 2.96262675414e-07 -1.50902464298e-06 3.28724120486e-07 -1.54364327519e-06 3.39096145239e-07 -1.60260758443e-06 3.55769818788e-07 -1.66971409405e-06 3.48721186632e-07 -1.73008261167e-06 3.20112660787e-07 -1.78147435217e-06 2.86333077143e-07 -1.82635509013e-06 2.55210430641e-07 -1.86929746617e-06 2.28339417816e-07 -1.90263845515e-06 1.95798029763e-07 -1.93555621022e-06 1.69278022714e-07 -1.95724252959e-06 1.34001951936e-07 -1.97574669047e-06 1.05132300059e-07 -1.97534732351e-06 6.76730526822e-08 -1.9848678972e-06 4.93553754137e-08 -2.02219138911e-06 4.84593062959e-08 -2.02499619123e-06 2.83902997956e-08 -2.05076385199e-06 6.0708621772e-08 -2.10459923639e-06 1.08420582513e-07 -2.13804576869e-06 1.17519720143e-07 -2.15729393177e-06 1.02916763924e-07 -2.16376923742e-06 7.85674810969e-08 -2.16476996821e-06 4.61056411116e-08 -2.16878830576e-06 6.24359845202e-09 -2.17214701571e-06 -3.03894695139e-08 -2.16715592181e-06 -5.63884207742e-08 -2.15295659589e-06 -7.64502231657e-08 -2.13167350966e-06 -9.72186141244e-08 -2.10453840291e-06 -1.21646178764e-07 -2.07204333897e-06 -1.50628124845e-07 -2.03388953643e-06 -1.84413316103e-07 -1.98938261445e-06 -2.23644645265e-07 -1.93732089941e-06 -2.69074803691e-07 -1.87470528509e-06 -3.21088990961e-07 -1.79697196354e-06 -3.808724734e-07 -1.70215425236e-06 -4.5118968685e-07 -1.59232058339e-06 -5.33161121657e-07 -1.46144600988e-06 -6.2560227917e-07 -1.30115026408e-06 -7.35008989313e-07 -1.10731898065e-06 -8.65866786437e-07 -8.78428055956e-07 -1.00962511823e-06 -6.20957430417e-07 -1.15090201149e-06 -3.52252318042e-07 -1.26883537282e-06 -9.51712426129e-08 -1.33935273409e-06 1.17207309005e-07 -1.3315954092e-06 2.62683333557e-07 -1.19713805245e-06 5.03322564725e-07 -1.08841154747e-06 6.92263810046e-07 -7.59833391783e-07 7.9918680544e-07 -4.78503629127e-07 8.63439603279e-07 -3.47659859677e-07 9.13531047804e-07 -2.75361654247e-07 9.61217087474e-07 -2.06556994307e-07 1.01215832533e-06 -1.34352736693e-07 1.04120560543e-06 -3.89480916392e-08 1.00296801158e-06 1.065186333e-07 9.2169791411e-07 2.58525874443e-07 8.30580714082e-07 3.84003570821e-07 7.13809418799e-07 5.01748715278e-07 5.62218005589e-07 6.159130532e-07 4.31069319024e-07 6.36188194764e-07 2.92317205645e-07 6.58575267314e-07 1.32738655547e-07 8.79739889143e-07 9.42792324872e-07 -3.80886184366e-09 5.10451702328e-07 -1.32299803731e-07 5.93066956291e-07 -2.11960368874e-07 8.5659790964e-07 -2.51001370748e-07 7.26079393539e-07 -2.34703529604e-07 3.61905926218e-07 -4.32352450067e-07 4.61114416273e-07 -6.44370740712e-07 7.04309325743e-07 -7.36952578213e-07 7.07602505862e-07 -8.36944999307e-07 6.46427170512e-07 -9.25639243385e-07 5.6900435212e-07 -9.53315827274e-07 4.63809563907e-07 -8.82663374468e-07 2.55460735109e-07 -8.64024432171e-07 1.53834795233e-07 -9.29366494516e-07 1.46466366846e-07 -1.04698053526e-06 1.93265969731e-07 -1.2179405314e-06 2.92966395707e-07 -1.37473354683e-06 3.6663121704e-07 -1.44011085304e-06 3.61626816964e-07 -1.47035961863e-06 3.58960092538e-07 -1.53826057102e-06 4.06981943033e-07 -1.60935496519e-06 4.26847242154e-07 -1.66688768122e-06 4.06235312768e-07 -1.72087330937e-06 3.74078882258e-07 -1.77472126996e-06 3.40157404065e-07 -1.82176704865e-06 3.02235620902e-07 -1.8466146704e-06 2.53158030413e-07 -1.88230447238e-06 2.31462148145e-07 -1.9076411255e-06 1.94586354758e-07 -1.93063499671e-06 1.56963213092e-07 -1.92566842924e-06 1.00132679819e-07 -1.92721565958e-06 6.91795614659e-08 -1.94368629901e-06 6.57640345567e-08 -1.95622504097e-06 6.09112519926e-08 -2.02787630052e-06 9.9931395201e-08 -2.09698463696e-06 1.29689700329e-07 -2.13466144075e-06 1.45969465895e-07 -2.15428196288e-06 1.37013524815e-07 -2.1655157827e-06 1.14021425815e-07 -2.17125480289e-06 8.41720258375e-08 -2.17434448243e-06 4.90508422829e-08 -2.17770073932e-06 9.4466452777e-09 -2.17923159284e-06 -2.90172893034e-08 -2.17427022062e-06 -6.15072588863e-08 -2.16131703683e-06 -8.95581758086e-08 -2.14136157578e-06 -1.17323600159e-07 -2.11547906869e-06 -1.47674241609e-07 -2.08415851235e-06 -1.82089098178e-07 -2.04713377271e-06 -2.21576180206e-07 -2.0035606293e-06 -2.67351509243e-07 -1.95192971172e-06 -3.2084005762e-07 -1.88962513384e-06 -3.83528494017e-07 -1.81339411113e-06 -4.57239028756e-07 -1.72073731313e-06 -5.44004813025e-07 -1.60864461835e-06 -6.45414189094e-07 -1.46987194772e-06 -7.64567936799e-07 -1.29734387544e-06 -9.07757335814e-07 -1.08871435752e-06 -1.07473236519e-06 -8.47080992484e-07 -1.25151566439e-06 -5.82708451032e-07 -1.41553892007e-06 -3.14809703686e-07 -1.53702338095e-06 -7.28953489987e-08 -1.5815670832e-06 1.16200543889e-07 -1.52100689126e-06 2.93641425514e-07 -1.37492240971e-06 4.98693553341e-07 -1.29381604008e-06 6.65144895383e-07 -9.26564390831e-07 7.78607593939e-07 -5.92181390995e-07 8.65578252355e-07 -4.34826107402e-07 9.34803223342e-07 -3.44802511774e-07 1.00095624664e-06 -2.72904926566e-07 1.05456207768e-06 -1.88190607075e-07 1.04617073664e-06 -3.07170104844e-08 9.87875372024e-07 1.64660147715e-07 9.21102632094e-07 3.25173654065e-07 8.3546993108e-07 4.69590602462e-07 7.14445024765e-07 6.22622217064e-07 5.79522043074e-07 7.50806216752e-07 4.37665465754e-07 7.7806837174e-07 2.91498526894e-07 8.0466405938e-07 1.45012718144e-07 1.02616321392e-06 1.08777194255e-06 -4.81995798617e-08 5.58691727996e-07 -2.06710225217e-07 7.51614560194e-07 -2.74789766381e-07 9.24747237423e-07 -2.24180631422e-07 6.75511423516e-07 -2.9016135626e-07 4.27892064832e-07 -5.24036317711e-07 6.94995119062e-07 -6.42132578004e-07 8.22413810303e-07 -7.17105514271e-07 7.82609353192e-07 -7.76583470578e-07 7.05939930009e-07 -8.6371002482e-07 6.56191575868e-07 -8.299525538e-07 4.30103622966e-07 -7.91221028872e-07 2.16751420969e-07 -8.5184253228e-07 2.14456833053e-07 -9.45226383495e-07 2.39829477003e-07 -1.10496277047e-06 3.52975108663e-07 -1.27434216998e-06 4.62329482212e-07 -1.3432734702e-06 4.35554656751e-07 -1.37167901545e-06 3.9002277031e-07 -1.45421568124e-06 4.41484173739e-07 -1.53943444405e-06 4.92188986264e-07 -1.60323655556e-06 4.90637533793e-07 -1.66094536201e-06 4.6393109716e-07 -1.7161872234e-06 4.29301271311e-07 -1.75860008568e-06 3.82555395574e-07 -1.78761573681e-06 3.31233760699e-07 -1.81872012601e-06 2.84240761754e-07 -1.83537085598e-06 2.48087204907e-07 -1.86408485055e-06 2.23270731803e-07 -1.87264078312e-06 1.65491986064e-07 -1.86987578628e-06 9.73345753404e-08 -1.89364010851e-06 9.28897476588e-08 -1.92918297374e-06 1.01237927943e-07 -1.98761196036e-06 1.19244004397e-07 -2.05176177722e-06 1.63965220351e-07 -2.11882011352e-06 1.96628427058e-07 -2.15017342969e-06 1.7720355641e-07 -2.1645862398e-06 1.5130520198e-07 -2.17402795908e-06 1.23336575847e-07 -2.18083727859e-06 9.08455913861e-08 -2.18537939222e-06 5.34465797615e-08 -2.18851175356e-06 1.24233813386e-08 -2.18896439951e-06 -2.8725359381e-08 -2.18382280904e-06 -6.68108297994e-08 -2.17166121771e-06 -1.01879214187e-07 -2.15284532816e-06 -1.36294742147e-07 -2.1281616476e-06 -1.72507571567e-07 -2.09800199866e-06 -2.12393680719e-07 -2.06212992356e-06 -2.57586451204e-07 -2.01977381619e-06 -3.09845533377e-07 -1.96955067968e-06 -3.71196420019e-07 -1.9092323564e-06 -4.4398129862e-07 -1.8357609607e-06 -5.3086142001e-07 -1.74514154365e-06 -6.34755976489e-07 -1.63140078573e-06 -7.59325166558e-07 -1.48632111708e-06 -9.09820524554e-07 -1.30376056361e-06 -1.0904954835e-06 -1.08340884976e-06 -1.29527791144e-06 -8.3099635342e-07 -1.50411672336e-06 -5.57987565924e-07 -1.68876624965e-06 -2.8391916107e-07 -1.81131457705e-06 -4.45692382257e-08 -1.82116918863e-06 1.51332768063e-07 -1.71719091669e-06 3.50860819756e-07 -1.57474846707e-06 4.61649371253e-07 -1.4049049374e-06 6.46407330111e-07 -1.11156757985e-06 7.82384790728e-07 -7.28363567563e-07 9.06546725107e-07 -5.59218120166e-07 1.00700109574e-06 -4.45463062682e-07 1.07366422482e-06 -3.39820063269e-07 1.08674466493e-06 -2.01426592473e-07 1.05013578747e-06 5.67843671235e-09 1.00856540556e-06 2.06135788353e-07 9.58473975248e-07 3.75229328658e-07 8.75545513696e-07 5.5235652628e-07 7.54449306478e-07 7.43805324368e-07 6.34211481061e-07 8.70995508797e-07 4.69784282475e-07 9.42423645474e-07 2.9859467885e-07 9.75869140706e-07 1.62558884207e-07 1.16209265172e-06 1.25022444441e-06 -9.17654495527e-08 6.50444392189e-07 -2.36251488728e-07 8.96140835406e-07 -2.58941424018e-07 9.47462893064e-07 -1.65257411713e-07 5.8184137959e-07 -3.34301491692e-07 5.96943343551e-07 -5.34551053889e-07 8.95254039256e-07 -6.14208540591e-07 9.02099254806e-07 -6.9636273091e-07 8.64794056236e-07 -6.97444666836e-07 7.07082388e-07 -7.16276533815e-07 6.75064188886e-07 -6.74072071079e-07 3.87925658236e-07 -7.63901731401e-07 3.06583800643e-07 -8.46479908981e-07 2.97019635799e-07 -9.82702918123e-07 3.76032221482e-07 -1.15357887677e-06 5.23832539406e-07 -1.23767508647e-06 5.4641618697e-07 -1.26513516725e-06 4.63011495858e-07 -1.35289380859e-06 4.77774087286e-07 -1.45546959232e-06 5.44050592943e-07 -1.5272966966e-06 5.64008098987e-07 -1.58502263259e-06 5.48355317688e-07 -1.64081390636e-06 5.19707416487e-07 -1.70165327856e-06 4.90132224455e-07 -1.75781562278e-06 4.38708504164e-07 -1.77782192855e-06 3.51222280687e-07 -1.8131233101e-06 3.19526673365e-07 -1.83310441182e-06 2.68046142112e-07 -1.82072509612e-06 2.10866404984e-07 -1.8291517641e-06 1.73886804404e-07 -1.90113740841e-06 1.69276788886e-07 -1.94188738631e-06 1.33584517551e-07 -1.94547588499e-06 1.04742655039e-07 -2.01402840221e-06 1.87697059042e-07 -2.0978319239e-06 2.47658406572e-07 -2.13496467973e-06 2.33649862642e-07 -2.15805267964e-06 2.00179156018e-07 -2.17336795978e-06 1.66503036755e-07 -2.18417982512e-06 1.34023698681e-07 -2.19233803018e-06 9.88685751887e-08 -2.19805736593e-06 5.90196544933e-08 -2.2012520318e-06 1.54611388494e-08 -2.20105959913e-06 -2.90810902741e-08 -2.19575205245e-06 -7.22843997574e-08 -2.18413373605e-06 -1.13662303104e-07 -2.16620123538e-06 -1.54389472983e-07 -2.14249203813e-06 -1.96375555886e-07 -2.11333626496e-06 -2.417035703e-07 -2.07862949073e-06 -2.92446428227e-07 -2.03788672517e-06 -3.50733509924e-07 -1.99012566047e-06 -4.19107582418e-07 -1.93344540648e-06 -5.00818728795e-07 -1.86449407939e-06 -5.99945524677e-07 -1.77781258258e-06 -7.21617483536e-07 -1.66521172723e-06 -8.72063971751e-07 -1.51755759554e-06 -1.05762874673e-06 -1.32903436265e-06 -1.2791928591e-06 -1.09978630709e-06 -1.52467319393e-06 -8.33755935117e-07 -1.77032464931e-06 -5.38310069824e-07 -1.9843700722e-06 -2.40053765725e-07 -2.10978870891e-06 1.35347619711e-08 -2.07499123926e-06 2.16771636761e-07 -1.92068253216e-06 3.7740412712e-07 -1.73564523527e-06 4.96384924977e-07 -1.52414882881e-06 6.62726189141e-07 -1.27818574559e-06 8.26279855866e-07 -8.92156788678e-07 9.53269541788e-07 -6.86419579968e-07 1.05473933482e-06 -5.47189963056e-07 1.1047191824e-06 -3.89962780222e-07 1.09974670532e-06 -1.96709058018e-07 1.07774830634e-06 2.76120091936e-08 1.06134060039e-06 2.22425331263e-07 1.02785031409e-06 4.08552096414e-07 9.53399531362e-07 6.26928508666e-07 8.40908861289e-07 8.56071890979e-07 7.02839226373e-07 1.00910495297e-06 5.23568553099e-07 1.12172972475e-06 3.13198383781e-07 1.18606062106e-06 1.5986070295e-07 1.31528270826e-06 1.41008189884e-06 -1.233777285e-07 7.73866296777e-07 -2.33987517547e-07 1.00678697812e-06 -2.07233078258e-07 9.20750983498e-07 -2.14602610651e-07 5.89221527389e-07 -4.14823643817e-07 7.97175955731e-07 -5.01783124689e-07 9.8223571567e-07 -5.75713391222e-07 9.76068165732e-07 -6.50844086083e-07 9.39969706002e-07 -6.66589222915e-07 7.2286049711e-07 -6.86517205795e-07 6.95035366448e-07 -6.94838375316e-07 3.96252481979e-07 -7.71305677654e-07 3.83045326572e-07 -8.70145481753e-07 3.95838251413e-07 -1.02916882054e-06 5.35030585284e-07 -1.17607415475e-06 6.70733678816e-07 -1.21787899117e-06 5.88225454325e-07 -1.26004651653e-06 5.05175966769e-07 -1.35204288405e-06 5.69762337473e-07 -1.44163913787e-06 6.33639942386e-07 -1.5117528848e-06 6.34114527376e-07 -1.56947157601e-06 6.06060612382e-07 -1.6142362948e-06 5.64468576078e-07 -1.65201867651e-06 5.27914994264e-07 -1.69166426066e-06 4.78347841786e-07 -1.72535250054e-06 3.84906492717e-07 -1.74551807101e-06 3.39676964888e-07 -1.78877043113e-06 3.11277316407e-07 -1.83704483561e-06 2.59115460283e-07 -1.87573997863e-06 2.12553483424e-07 -1.90011943425e-06 1.93612069481e-07 -1.94099641164e-06 1.74390510548e-07 -2.03496764675e-06 1.98621985151e-07 -2.08671062836e-06 2.39335443008e-07 -2.11850904905e-06 2.79352317482e-07 -2.14516269704e-06 2.60201930669e-07 -2.16700888709e-06 2.21919644203e-07 -2.1839428557e-06 1.83323640009e-07 -2.19632505244e-06 1.46281592615e-07 -2.20551680415e-06 1.0792478064e-07 -2.21214230254e-06 6.54968079972e-08 -2.21578626604e-06 1.8946746491e-08 -2.21546654089e-06 -2.95678485844e-08 -2.21006593842e-06 -7.78565859619e-08 -2.19879855874e-06 -1.25104706009e-07 -2.18147595858e-06 -1.71888034215e-07 -2.15837407354e-06 -2.19653863701e-07 -2.12988333432e-06 -2.70370134287e-07 -2.09623479496e-06 -3.26262071392e-07 -2.05746043434e-06 -3.89684440455e-07 -2.01318825222e-06 -4.63548267535e-07 -1.96201926326e-06 -5.52140920573e-07 -1.90050067995e-06 -6.6166753481e-07 -1.82185519935e-06 -8.00378904151e-07 -1.71607365954e-06 -9.78007900696e-07 -1.57214172307e-06 -1.20171940799e-06 -1.38221055647e-06 -1.46923688301e-06 -1.14255722268e-06 -1.76448612032e-06 -8.4896477721e-07 -2.06402006806e-06 -5.09218725922e-07 -2.32432961663e-06 -1.79280995254e-07 -2.43992411491e-06 6.63143083378e-08 -2.32083827357e-06 2.49964464656e-07 -2.10457494066e-06 4.1684828048e-07 -1.90277354737e-06 5.76658727536e-07 -1.6842164344e-06 7.11471207235e-07 -1.41325995838e-06 8.90048117658e-07 -1.0710091578e-06 1.03695818068e-06 -8.33601911161e-07 1.12522700377e-06 -6.35647820224e-07 1.15326382221e-06 -4.18289549346e-07 1.13669804632e-06 -1.80199027106e-07 1.13053816052e-06 3.35010428913e-08 1.13807732229e-06 2.147446052e-07 1.12957191975e-06 4.17113708223e-07 1.06939179239e-06 6.86701781065e-07 9.49908623217e-07 9.757170659e-07 7.73504774571e-07 1.18536515048e-06 5.68498313013e-07 1.32655814615e-06 3.335977124e-07 1.4209393794e-06 1.48613367918e-07 1.50021845923e-06 1.55856904137e-06 -1.47281490274e-07 9.21128366284e-07 -2.46824653769e-07 1.10634589634e-06 -1.90141572348e-07 8.64082893856e-07 -2.64724972583e-07 6.63823395646e-07 -4.404156537e-07 9.72892058712e-07 -4.63682926866e-07 1.00554454982e-06 -5.28723806299e-07 1.04113836138e-06 -5.49762640193e-07 9.61052414704e-07 -6.0765478628e-07 7.80780195392e-07 -5.95820828309e-07 6.83213971503e-07 -6.72413227705e-07 4.72846445433e-07 -7.69072343484e-07 4.79685353816e-07 -8.81280766801e-07 5.08030953309e-07 -1.02933162765e-06 6.83073270593e-07 -1.11149418315e-06 7.52893583572e-07 -1.13270074372e-06 6.09434671102e-07 -1.22495885014e-06 5.97431354931e-07 -1.32982962337e-06 6.74627162509e-07 -1.41381549232e-06 7.176196668e-07 -1.48898497517e-06 7.0927547417e-07 -1.55673495099e-06 6.7381318105e-07 -1.61467480769e-06 6.22410001792e-07 -1.64159074773e-06 5.5482909299e-07 -1.65820428157e-06 4.94963865592e-07 -1.71786150269e-06 4.44556520803e-07 -1.74197160169e-06 3.63772006931e-07 -1.73100321673e-06 3.00297817035e-07 -1.74569609982e-06 2.73789954471e-07 -1.80107729313e-06 2.67898344296e-07 -1.88535178507e-06 2.77834813948e-07 -1.95914084832e-06 2.48104606806e-07 -2.0206040543e-06 2.59989835605e-07 -2.09737707608e-06 3.1600470722e-07 -2.13330691433e-06 3.15187987562e-07 -2.15697639309e-06 2.83777309889e-07 -2.17871639951e-06 2.43558693522e-07 -2.19714301625e-06 2.0163851076e-07 -2.21099170091e-06 1.60007979026e-07 -2.22092451717e-06 1.17722531773e-07 -2.22802703617e-06 7.24528989118e-08 -2.23212397413e-06 2.28846463348e-08 -2.23205213535e-06 -2.98080400974e-08 -2.22674345982e-06 -8.33428750473e-08 -2.21563752803e-06 -1.36395023883e-07 -2.19859219661e-06 -1.89125607024e-07 -2.17573189806e-06 -2.42712480191e-07 -2.14744355803e-06 -2.98855468102e-07 -2.11444556425e-06 -3.59472028315e-07 -2.07762430956e-06 -4.26694337447e-07 -2.03768471437e-06 -5.03690158058e-07 -1.99426156735e-06 -5.95789202658e-07 -1.94433616528e-06 -7.11718094939e-07 -1.88063074339e-06 -8.64288815117e-07 -1.79068388394e-06 -1.06807945895e-06 -1.65943660222e-06 -1.33306885894e-06 -1.47234713104e-06 -1.65649716238e-06 -1.21392627336e-06 -2.02300267831e-06 -8.6444672658e-07 -2.41372775259e-06 -4.60294563169e-07 -2.72863989064e-06 -1.24295612536e-07 -2.77616942702e-06 6.74595121067e-08 -2.51282605301e-06 2.3664912626e-07 -2.27401177497e-06 4.48852969215e-07 -2.11521545842e-06 6.77469625766e-07 -1.91305935344e-06 8.94971676053e-07 -1.63101767948e-06 1.11726120576e-06 -1.2935933924e-06 1.20783495244e-06 -9.24435970526e-07 1.18955586682e-06 -6.17685207664e-07 1.18853513298e-06 -4.17323080815e-07 1.17603704545e-06 -1.68030230319e-07 1.18453753489e-06 2.49969070768e-08 1.2206874423e-06 1.78483201889e-07 1.26548733228e-06 3.71858290438e-07 1.23949662467e-06 7.12896501801e-07 1.07883939234e-06 1.13595394497e-06 8.40053457738e-07 1.42411548728e-06 5.9227538709e-07 1.57436362922e-06 3.5227094064e-07 1.66077102875e-06 1.52155691841e-07 1.70012451021e-06 1.71093316112e-06 -1.39626709158e-07 1.06081017068e-06 -2.18008525929e-07 1.18477401627e-06 -1.94140553936e-07 8.40240507189e-07 -3.27373208814e-07 7.97078502166e-07 -3.79662141583e-07 1.02521043787e-06 -4.25311494929e-07 1.05121253745e-06 -4.91706852164e-07 1.1075875171e-06 -4.75944800822e-07 9.45302650782e-07 -5.86387017673e-07 8.91252545802e-07 -5.6852395865e-07 6.65359961893e-07 -6.61686344759e-07 5.66003276204e-07 -7.62536555005e-07 5.80529172861e-07 -8.84481193215e-07 6.29952216387e-07 -1.02474687706e-06 8.23333627161e-07 -1.08126167487e-06 8.09418696419e-07 -1.11210458325e-06 6.40277087569e-07 -1.20255903624e-06 6.87879613463e-07 -1.29986901658e-06 7.7193235673e-07 -1.37758794365e-06 7.95337489021e-07 -1.44784097342e-06 7.79535818344e-07 -1.52147980688e-06 7.47447992313e-07 -1.61466163296e-06 7.15591605316e-07 -1.65366993377e-06 5.93841990114e-07 -1.65230196876e-06 4.93592041666e-07 -1.65147280829e-06 4.437177392e-07 -1.68738337507e-06 3.99679556117e-07 -1.76234676189e-06 3.75249412474e-07 -1.83223615408e-06 3.43656483492e-07 -1.85984480642e-06 2.95473843723e-07 -1.84306529833e-06 2.60995801488e-07 -1.8978368194e-06 3.02791751467e-07 -2.01422311229e-06 3.76282854533e-07 -2.10038373974e-06 4.0207575168e-07 -2.14034759062e-06 3.55065982641e-07 -2.16748768003e-06 3.10828626653e-07 -2.1914346945e-06 2.67408215724e-07 -2.21194542564e-06 2.220414928e-07 -2.22780119844e-06 1.75743114199e-07 -2.23880424831e-06 1.28593365532e-07 -2.24615297142e-06 7.96557447642e-08 -2.25056725106e-06 2.7141384065e-08 -2.25094203444e-06 -2.96042705269e-08 -2.24583914399e-06 -8.86301025431e-08 -2.23474188986e-06 -1.47692644817e-07 -2.21760122313e-06 -2.06482395864e-07 -2.19445185385e-06 -2.66087703537e-07 -2.16572310764e-06 -3.2783061834e-07 -2.13261050456e-06 -3.92797105421e-07 -2.09719943742e-06 -4.62367630015e-07 -2.06184420587e-06 -5.39269001848e-07 -2.02824648584e-06 -6.29550743827e-07 -1.99545941134e-06 -7.44742108661e-07 -1.95646061785e-06 -9.0337312784e-07 -1.89586641315e-06 -1.1287944134e-06 -1.79063105666e-06 -1.43846402878e-06 -1.61102710215e-06 -1.83620436954e-06 -1.31765349314e-06 -2.31660865186e-06 -8.76881244065e-07 -2.85465481593e-06 -4.07586878141e-07 -3.1981954872e-06 -1.1122412501e-07 -3.07278202053e-06 -1.42317043114e-08 -2.61009468026e-06 1.54198242254e-07 -2.44272062635e-06 4.47693661379e-07 -2.40897520049e-06 7.80841002355e-07 -2.24645504941e-06 1.09673920358e-06 -1.94716217662e-06 1.35224100616e-06 -1.54935616012e-06 1.48980301183e-06 -1.06236226675e-06 1.46232319096e-06 -5.90324908346e-07 1.27272317757e-06 -2.28026094038e-07 1.1946685241e-06 -8.98914311509e-08 1.1944309564e-06 2.49327040332e-08 1.27384977795e-06 9.86913561801e-08 1.43960527441e-06 2.06152830102e-07 1.50016966362e-06 6.51725726157e-07 1.25058856687e-06 1.38562657564e-06 9.00414117289e-07 1.77421191726e-06 6.0712290385e-07 1.86743882679e-06 3.66069005835e-07 1.90178048287e-06 1.67374095597e-07 1.89920266496e-06 1.87818472101e-06 -1.03257405329e-07 1.16403976005e-06 -1.56584060716e-07 1.23809949135e-06 -2.25154683996e-07 9.08825419355e-07 -3.34177103666e-07 9.06113906246e-07 -3.02943684632e-07 9.93995154696e-07 -3.88864750383e-07 1.13717433336e-06 -4.74406415816e-07 1.19312848432e-06 -4.46318676779e-07 9.17260578983e-07 -5.72641282827e-07 1.01758047766e-06 -5.92275976762e-07 6.85004848417e-07 -6.64686635639e-07 6.38413061805e-07 -7.57223613847e-07 6.73045625516e-07 -8.77530868935e-07 7.50262900829e-07 -1.01354846087e-06 9.59348693601e-07 -1.03329104022e-06 8.29161667019e-07 -1.07879575251e-06 6.8578215227e-07 -1.1761498513e-06 7.85230261072e-07 -1.26811046766e-06 8.6389256198e-07 -1.34248339766e-06 8.69716370443e-07 -1.4075000307e-06 8.44553924045e-07 -1.4718942027e-06 8.11853278272e-07 -1.55154913555e-06 7.95249804964e-07 -1.61866453406e-06 6.60952414437e-07 -1.6470896765e-06 5.22007341267e-07 -1.66861481304e-06 4.65240329035e-07 -1.72994442778e-06 4.61005931017e-07 -1.75584768601e-06 4.01143613264e-07 -1.75709264787e-06 3.44880205988e-07 -1.83095897889e-06 3.69289396681e-07 -1.92819667352e-06 3.58164235972e-07 -1.99812439697e-06 3.72644614064e-07 -2.06616793364e-06 4.442413655e-07 -2.10427895104e-06 4.40108261236e-07 -2.14342905607e-06 3.94138196485e-07 -2.1763336699e-06 3.43649601972e-07 -2.20364751776e-06 2.94629132304e-07 -2.22698891559e-06 2.45277982035e-07 -2.24620583136e-06 1.94844198099e-07 -2.25991850711e-06 1.42177221146e-07 -2.26783958708e-06 8.74363129219e-08 -2.27164765548e-06 3.07945795082e-08 -2.27195560627e-06 -2.94662292785e-08 -2.26727349796e-06 -9.35013790454e-08 -2.25624568294e-06 -1.58931588749e-07 -2.23866221248e-06 -2.2429778968e-07 -2.2146274199e-06 -2.90385134055e-07 -2.18453467038e-06 -3.58161581713e-07 -2.15006184512e-06 -4.27584433699e-07 -2.11450106988e-06 -4.98144513843e-07 -2.08279537556e-06 -5.71247529876e-07 -2.06030211432e-06 -6.52306147157e-07 -2.05035345946e-06 -7.54800669824e-07 -2.04931799468e-06 -9.04574565535e-07 -2.03845875625e-06 -1.13979611507e-06 -1.98177980767e-06 -1.49525159313e-06 -1.81965430653e-06 -1.99856678761e-06 -1.47955151046e-06 -2.65689026139e-06 -9.22682743464e-07 -3.41185608306e-06 -3.8881767388e-07 -3.73236512194e-06 -1.38302678814e-07 -3.32359194757e-06 -1.9191089819e-07 -2.55675976818e-06 -2.68883714334e-08 -2.6080471213e-06 3.97165543893e-07 -2.83333490991e-06 8.72219611908e-07 -2.72178814616e-06 1.29995573173e-06 -2.37516882363e-06 1.62690019196e-06 -1.87658368794e-06 1.80312130378e-06 -1.23880948668e-06 1.72511562983e-06 -5.12674997012e-07 1.44331019743e-06 5.377400574e-08 1.2118925681e-06 1.41192005146e-07 1.12521583318e-06 1.11379712213e-07 1.24069944126e-06 -1.70048598773e-08 1.66631684779e-06 -2.20097916674e-07 1.9473282587e-06 3.70857368996e-07 1.48248114479e-06 1.85025161133e-06 9.28589732821e-07 2.32793861431e-06 5.9222358504e-07 2.20385647687e-06 3.39622761782e-07 2.15442571837e-06 1.58219793386e-07 2.08026334695e-06 2.03679753548e-06 -6.91055272428e-08 1.23320370932e-06 -9.2553528921e-08 1.26158838569e-06 -2.45566448143e-07 1.06185602104e-06 -3.04207163657e-07 9.6477348032e-07 -3.0930680249e-07 9.99109741786e-07 -3.87579576433e-07 1.21544899488e-06 -4.45200051539e-07 1.25079473439e-06 -4.41641787423e-07 9.13698535735e-07 -5.50505273715e-07 1.12648328549e-06 -5.89534547354e-07 7.24040273117e-07 -6.60238653557e-07 7.09114074684e-07 -7.44359996409e-07 7.57170025634e-07 -8.4487063363e-07 8.50757335334e-07 -9.27999513572e-07 1.04249380966e-06 -9.221606291e-07 8.23330665545e-07 -1.02113192071e-06 7.847510745e-07 -1.13898274734e-06 9.03078722419e-07 -1.23046476357e-06 9.55377340993e-07 -1.30496845341e-06 9.44228361833e-07 -1.37018974289e-06 9.0979246596e-07 -1.43254835594e-06 8.74218256182e-07 -1.48780784907e-06 8.50512614039e-07 -1.51195869398e-06 6.85097039408e-07 -1.56627610507e-06 5.76323145904e-07 -1.64669151585e-06 5.45654104323e-07 -1.6591348082e-06 4.73443540853e-07 -1.68374648385e-06 4.25738605249e-07 -1.74472408346e-06 4.05822423836e-07 -1.77363082628e-06 3.98150731219e-07 -1.8294068788e-06 4.13880322856e-07 -1.95801294934e-06 5.01180238776e-07 -2.06085921814e-06 5.4702246477e-07 -2.11024314385e-06 4.8942810213e-07 -2.14990061512e-06 4.33726835417e-07 -2.18658660023e-06 3.80258370474e-07 -2.21821391427e-06 3.26168993701e-07 -2.24376259546e-06 2.70728797252e-07 -2.26431443788e-06 2.15286474178e-07 -2.28122901942e-06 1.58971700164e-07 -2.29260537681e-06 9.86790588256e-08 -2.29717155872e-06 3.52138688114e-08 -2.2965351036e-06 -3.02677306573e-08 -2.29127919728e-06 -9.89484243765e-08 -2.28014326752e-06 -1.70288792844e-07 -2.26205735064e-06 -2.42647705077e-07 -2.23663926454e-06 -3.16065624936e-07 -2.20413500736e-06 -3.91023733425e-07 -2.16621616513e-06 -4.65728326606e-07 -2.12773988298e-06 -5.37031607277e-07 -2.0964962734e-06 -6.0276558527e-07 -2.08338749581e-06 -6.65640910599e-07 -2.10050777774e-06 -7.37891606292e-07 -2.15387934184e-06 -8.5134453866e-07 -2.2240115411e-06 -1.06978672341e-06 -2.25751211398e-06 -1.46199520277e-06 -2.13501802484e-06 -2.1212165283e-06 -1.78957928936e-06 -3.0026973502e-06 -1.10939623921e-06 -4.09233095926e-06 -4.33521715431e-07 -4.40848930666e-06 -8.03708462755e-08 -3.67688548856e-06 -4.78791510679e-07 -2.15854347073e-06 -3.83338701578e-07 -2.70366572315e-06 2.68008922405e-07 -3.48485255041e-06 1.00688216538e-06 -3.46084222713e-06 1.64741499323e-06 -3.01587704344e-06 2.11606543542e-06 -2.34543825715e-06 2.34118282233e-06 -1.46413554125e-06 2.2164393495e-06 -3.88023020781e-07 1.74152532408e-06 5.28415159084e-07 1.20683198515e-06 6.7577946056e-07 9.23779008779e-07 3.94182065312e-07 1.01162653743e-06 -1.05192181449e-07 2.02900387025e-06 -1.2372070735e-06 2.95615419235e-06 -5.56490258578e-07 1.8184627931e-06 2.98792613772e-06 8.17992535867e-07 3.32844067419e-06 4.94499262445e-07 2.52708899315e-06 2.41952184614e-07 2.40671508397e-06 1.14519258645e-07 2.20844460355e-06 2.15165936199e-06 -7.80494820486e-08 1.31121591915e-06 -1.3853955417e-07 1.32207094156e-06 -2.07354815792e-07 1.13069618752e-06 -2.61945813185e-07 1.01937307114e-06 -3.2389071901e-07 1.06106778881e-06 -3.9845782732e-07 1.29004617534e-06 -4.39096625656e-07 1.29143388097e-06 -4.92979104088e-07 9.67621923057e-07 -5.40868888312e-07 1.17438137546e-06 -5.82690288319e-07 7.6587472239e-07 -6.54651661551e-07 7.81077470984e-07 -7.34457108652e-07 8.3696634366e-07 -8.2521824089e-07 9.41538837961e-07 -8.90483808082e-07 1.10775912439e-06 -9.19500610508e-07 8.52353063428e-07 -1.01458121093e-06 8.79833842869e-07 -1.11359951661e-06 1.00209757512e-06 -1.19486959726e-06 1.03665387213e-06 -1.26570749037e-06 1.01507947144e-06 -1.33218105782e-06 9.76279875104e-07 -1.39649438245e-06 9.38548743297e-07 -1.44372741927e-06 8.97747666599e-07 -1.50129907338e-06 7.42671295933e-07 -1.59389300898e-06 6.68913208643e-07 -1.62627227762e-06 5.78025656113e-07 -1.65760260052e-06 5.04762492294e-07 -1.74464377162e-06 5.12764791138e-07 -1.78805723678e-06 4.49203505273e-07 -1.81045956617e-06 4.20502683428e-07 -1.9216456277e-06 5.25010572795e-07 -2.02770156743e-06 6.07181861066e-07 -2.06745598542e-06 5.86724852338e-07 -2.11276757714e-06 5.346847627e-07 -2.15734944722e-06 4.78246703014e-07 -2.19689890441e-06 4.19737016628e-07 -2.2312738213e-06 3.60463664467e-07 -2.26227243281e-06 3.01637280359e-07 -2.28690071544e-06 2.3981536649e-07 -2.30470001415e-06 1.76661013421e-07 -2.31808332691e-06 1.1194160997e-07 -2.3255039371e-06 4.24976164079e-08 -2.32558752452e-06 -3.03428806337e-08 -2.31930466547e-06 -1.05420478178e-07 -2.30709723938e-06 -1.82724206993e-07 -2.28820596424e-06 -2.61790714773e-07 -2.26140278707e-06 -3.43212666641e-07 -2.22557533642e-06 -4.27092956489e-07 -2.181773399e-06 -5.09998754717e-07 -2.13521863673e-06 -5.83859510361e-07 -2.0976083665e-06 -6.40760980088e-07 -2.08636041254e-06 -6.77168029647e-07 -2.12757762477e-06 -6.96888693625e-07 -2.25208891809e-06 -7.27037817916e-07 -2.45088896726e-06 -8.7125011811e-07 -2.66843461406e-06 -1.24469189592e-06 -2.65000429804e-06 -2.14014723134e-06 -2.52042570479e-06 -3.13256296277e-06 -1.63495753446e-06 -4.97806745505e-06 -4.49769380902e-07 -5.59380531176e-06 3.95699523666e-07 -4.52251842568e-06 -8.74762640229e-07 -8.88100771415e-07 -3.29343684966e-07 -3.24915959771e-06 1.74281065672e-06 -5.55712824956e-06 3.90402564666e-06 -5.62218460178e-06 5.32626495483e-06 -4.43828715847e-06 5.75016629076e-06 -2.76948959763e-06 5.45441902709e-06 -1.16849798707e-06 4.972824709e-06 9.33504051562e-08 4.20176419612e-06 1.29944494105e-06 2.51792090344e-06 2.35928541774e-06 6.94761865796e-07 2.21724140597e-06 4.4373387961e-07 1.46145003944e-07 3.12978391842e-06 -3.92344549812e-06 5.47070382753e-06 -2.89726661083e-06 2.36618642078e-06 6.09243500118e-06 3.48334698469e-07 5.34604961585e-06 3.193038262e-07 2.55598751114e-06 8.62827936167e-08 2.64001345284e-06 6.72665443976e-08 2.2279168146e-06 2.2189373844e-06 -8.6412601988e-08 1.39769071602e-06 -1.66707190086e-07 1.4024284725e-06 -1.1700194463e-07 1.08100543483e-06 -2.12827247752e-07 1.11521760311e-06 -3.1965139251e-07 1.16790246495e-06 -4.01093919818e-07 1.37149971242e-06 -4.44278888929e-07 1.33464928384e-06 -5.45948209715e-07 1.06929988902e-06 -5.18612237706e-07 1.14707652022e-06 -5.71828352442e-07 8.19095940315e-07 -6.50382122476e-07 8.59631894139e-07 -7.31565059259e-07 9.18152298562e-07 -8.224972797e-07 1.03246459734e-06 -8.8076303683e-07 1.16605010407e-06 -9.33563060802e-07 9.05158351281e-07 -1.02129290255e-06 9.67564358409e-07 -1.10106782964e-06 1.08187918852e-06 -1.16966120836e-06 1.10525914868e-06 -1.23589984921e-06 1.08133628724e-06 -1.30211185077e-06 1.04251349031e-06 -1.3670431547e-06 1.0034927238e-06 -1.42183683054e-06 9.52551584319e-07 -1.49586318876e-06 8.16697913577e-07 -1.53322736365e-06 7.06272154113e-07 -1.56202409918e-06 6.06819717271e-07 -1.64544745671e-06 5.8818360929e-07 -1.68515602668e-06 5.52459542294e-07 -1.79194086846e-06 5.55960274222e-07 -1.93283354045e-06 5.6134840246e-07 -2.00773146774e-06 5.99855035355e-07 -2.04528402602e-06 6.44684636619e-07 -2.0841170392e-06 6.25512528757e-07 -2.12732396126e-06 5.77843628257e-07 -2.1686821195e-06 5.19550810088e-07 -2.20886529224e-06 4.59858378646e-07 -2.24697446339e-06 3.98503092549e-07 -2.28049555559e-06 3.35080894693e-07 -2.30963194902e-06 2.68867074144e-07 -2.33224523643e-06 1.9918174562e-07 -2.3473206358e-06 1.26911236609e-07 -2.35645783196e-06 5.15163930187e-08 -2.3584440524e-06 -2.85029796886e-08 -2.35208019314e-06 -1.11957486629e-07 -2.33815421292e-06 -1.96871625522e-07 -2.31809488514e-06 -2.82141610909e-07 -2.2906177503e-06 -3.70958059214e-07 -2.25114918281e-06 -4.6702644197e-07 -2.1974280229e-06 -5.64035697362e-07 -2.13630170969e-06 -6.45530965222e-07 -2.08161538319e-06 -6.95846288137e-07 -2.05389986425e-06 -7.05306045872e-07 -2.0974998562e-06 -6.53648930482e-07 -2.30380822698e-06 -5.21060536005e-07 -2.71282334242e-06 -4.62805791663e-07 -3.35554454087e-06 -6.02633666188e-07 -3.52575682377e-06 -1.97042858747e-06 -4.00206917107e-06 -2.65677481854e-06 -1.87349780787e-06 -7.10724813801e-06 1.99299522173e-06 -9.4607909343e-06 9.42029043421e-06 -1.19500809675e-05 2.94913257623e-05 -2.0959420772e-05 5.59695994339e-05 -2.97279185457e-05 7.75439495289e-05 -2.71318259402e-05 9.52825018397e-05 -2.33610407072e-05 0.000110411787816 -1.95678591779e-05 0.000123203460739 -1.55614365844e-05 0.000133297091017 -1.1262468643e-05 0.000139993773868 -6.60347249515e-06 0.000142915472099 -1.62269689279e-06 0.000141428497712 3.84603201479e-06 0.000132933005769 1.07126567486e-05 0.00011064541963 2.24331922696e-05 6.41208828481e-05 4.2601302045e-05 2.07615088184e-05 4.04617765924e-05 2.8945762248e-06 2.39589025005e-05 -2.10882421327e-06 1.03489159737e-05 -3.01131289014e-07 7.47787057459e-07 -1.31725862857e-07 2.47046029423e-06 5.19482090799e-08 2.04408222177e-06 2.27081667495e-06 -7.46260758569e-08 1.4722997029e-06 -1.42144237439e-07 1.46992937575e-06 -1.17250401165e-07 1.05613731866e-06 -1.97219460395e-07 1.19519314772e-06 -3.22453727025e-07 1.2931522918e-06 -3.89257938926e-07 1.43832044146e-06 -4.23290895792e-07 1.36870079353e-06 -5.26048611657e-07 1.1720790062e-06 -4.78780436598e-07 1.09981554755e-06 -5.59929887665e-07 9.00253866234e-07 -6.48233284442e-07 9.47931691008e-07 -7.35821331412e-07 1.00574267377e-06 -8.31640359547e-07 1.12830432858e-06 -8.76451761271e-07 1.21086457708e-06 -9.36464966018e-07 9.65181806033e-07 -1.02288597119e-06 1.05399541439e-06 -1.09250901595e-06 1.15151291938e-06 -1.15205930328e-06 1.16482724523e-06 -1.2140100549e-06 1.1433074279e-06 -1.27742353761e-06 1.10594746558e-06 -1.34020943565e-06 1.06629832821e-06 -1.40368421946e-06 1.01603795308e-06 -1.48887320489e-06 9.01886427003e-07 -1.53968356219e-06 7.57088391875e-07 -1.62084451649e-06 6.87980473213e-07 -1.6633519762e-06 6.30685984942e-07 -1.67967506555e-06 5.68770548584e-07 -1.72346102231e-06 5.99720422483e-07 -1.80575993239e-06 6.43607655673e-07 -1.94066702589e-06 7.34710113987e-07 -2.03081511018e-06 7.34790112161e-07 -2.08810636458e-06 6.82765396318e-07 -2.13395728585e-06 6.23654007146e-07 -2.18039186074e-06 5.65938821009e-07 -2.22578016759e-06 5.05194689823e-07 -2.2666505275e-06 4.39315246031e-07 -2.30339887404e-06 3.71766312723e-07 -2.3352765036e-06 3.00676526887e-07 -2.36168019481e-06 2.25509397536e-07 -2.38040997294e-06 1.45556389956e-07 -2.39163892464e-06 6.26390244349e-08 -2.39619132318e-06 -2.40796253029e-08 -2.39157421707e-06 -1.16745705193e-07 -2.37571816422e-06 -2.12946600487e-07 -2.35156415527e-06 -3.06524124114e-07 -2.32127845666e-06 -4.01627119565e-07 -2.27821923994e-06 -5.10385009666e-07 -2.21515223642e-06 -6.27694500687e-07 -2.13515333952e-06 -7.25960177547e-07 -2.04734808894e-06 -7.84210783999e-07 -1.9658391988e-06 -7.87157818025e-07 -1.94505461919e-06 -6.75000144191e-07 -2.21469332779e-06 -2.52320674339e-07 -3.02500848166e-06 3.4691367079e-07 -4.53618580204e-06 9.07748851375e-07 -1.24568025078e-06 -5.26282196243e-06 1.22914488433e-05 -1.61950598808e-05 3.38219351658e-05 -2.86390327553e-05 5.8303613781e-05 -3.39433783661e-05 8.20544019868e-05 -3.5701651543e-05 0.000100163909192 -3.90695075319e-05 0.00011263951887 -4.22039436151e-05 0.000126108402877 -4.06010386308e-05 0.00013949447647 -3.6747416077e-05 0.000151960801145 -3.20344999669e-05 0.000163119332486 -2.67203131807e-05 0.000172615794422 -2.07592344205e-05 0.00018006907201 -1.40571123046e-05 0.000184893665339 -6.44755658977e-06 0.000186345912395 2.39334688328e-06 0.000183943003176 1.31150578493e-05 0.000179398714883 2.69771249456e-05 0.000178500513656 4.34986289114e-05 0.000166546923516 5.24144503744e-05 0.000135568574988 5.49363391752e-05 8.34238079487e-05 6.24921975541e-05 2.99259885598e-05 5.42440556587e-05 8.39598767684e-07 3.15568646052e-05 2.99328390616e-07 2.58418518528e-06 2.56566663337e-06 -6.53688495604e-08 1.53773251423e-06 -1.32886343377e-07 1.53752623349e-06 -1.09371486523e-07 1.03262875276e-06 -1.9875458082e-07 1.28459319185e-06 -3.23348864074e-07 1.41775572113e-06 -3.78135940771e-07 1.49313386209e-06 -3.96243263049e-07 1.38681713654e-06 -5.14791481104e-07 1.29064626829e-06 -5.12653083405e-07 1.0976943698e-06 -5.69992662277e-07 9.57595932972e-07 -6.5169139825e-07 1.02963815875e-06 -7.42540508383e-07 1.09659174757e-06 -8.47007227602e-07 1.23277967586e-06 -8.5981397274e-07 1.22369434176e-06 -9.25898030288e-07 1.03127344098e-06 -1.01423144456e-06 1.14233551123e-06 -1.08196837718e-06 1.21926604691e-06 -1.13506833256e-06 1.21794507617e-06 -1.19390005937e-06 1.2021629588e-06 -1.25488361556e-06 1.16695729032e-06 -1.31764415014e-06 1.12907847338e-06 -1.38503518228e-06 1.08343940531e-06 -1.46462564121e-06 9.81493714666e-07 -1.51612579679e-06 8.08589785948e-07 -1.55826055426e-06 7.30113466146e-07 -1.59075424559e-06 6.63173391258e-07 -1.68294164173e-06 6.60948130126e-07 -1.74609703029e-06 6.62847313556e-07 -1.85213962901e-06 7.4960535475e-07 -1.95097552394e-06 8.33509558204e-07 -2.0140396583e-06 7.97822803037e-07 -2.06968997476e-06 7.38384615388e-07 -2.12334309711e-06 6.77272949564e-07 -2.18169695203e-06 6.2425669952e-07 -2.23736467927e-06 5.60821148891e-07 -2.28490345691e-06 4.86810234904e-07 -2.32637562895e-06 4.13191336609e-07 -2.36409484797e-06 3.3834700482e-07 -2.394512814e-06 2.55872464391e-07 -2.41817809499e-06 1.69155033021e-07 -2.43340320559e-06 7.7777111204e-08 -2.43804087881e-06 -1.95483153971e-08 -2.43174164877e-06 -1.23182215723e-07 -2.41254939649e-06 -2.32276579823e-07 -2.38407593719e-06 -3.35257667027e-07 -2.35368956929e-06 -4.32227983699e-07 -2.31130227069e-06 -5.53280431746e-07 -2.23701854898e-06 -7.02363429246e-07 -2.12927597613e-06 -8.34280107046e-07 -1.99441771701e-06 -9.19327901713e-07 -1.80644207831e-06 -9.76089511505e-07 -1.55536721942e-06 -9.27192496269e-07 -1.72231434037e-06 -8.63398495842e-08 -2.51487999746e-06 1.13834646686e-06 4.22160099064e-06 -5.83119431414e-06 2.54540519195e-05 -2.6498173554e-05 5.11240594796e-05 -4.18663936816e-05 7.25675522456e-05 -5.0083270668e-05 9.28061751028e-05 -5.41826210319e-05 0.000112784047502 -5.56800924807e-05 0.000130144636813 -5.6430594084e-05 0.000144222899307 -5.62826178619e-05 0.000157509674707 -5.38881627094e-05 0.000170335734724 -4.95738059432e-05 0.000182375406971 -4.40745166991e-05 0.000193331962522 -3.76772311816e-05 0.000202942325286 -3.03699519685e-05 0.000210926787059 -2.20418676621e-05 0.000216976787166 -1.24979023993e-05 0.000220928948945 -1.55924214837e-06 0.00022292616472 1.11173083923e-05 0.000223889134956 2.60134455124e-05 0.00022450983971 4.28772713499e-05 0.00021854921819 5.83746331599e-05 0.000202974280389 7.05106524706e-05 0.000182200059954 8.32651103357e-05 0.00014393950856 9.25050136712e-05 7.34677379071e-05 0.00010202754314 1.70208455649e-05 5.90264117915e-05 1.95853103637e-05 -5.09375463361e-08 1.58866815455e-06 -1.02125776495e-07 1.58868745687e-06 -1.1451814316e-07 1.04504347475e-06 -2.25234189989e-07 1.39531496846e-06 -3.23858841313e-07 1.51640599376e-06 -3.76157664272e-07 1.54544008019e-06 -3.90906193107e-07 1.4015991206e-06 -5.15066418415e-07 1.41481987724e-06 -5.28890132544e-07 1.1115267763e-06 -5.78462544839e-07 1.00717994072e-06 -6.51417079997e-07 1.10258978836e-06 -7.3565738242e-07 1.1808491806e-06 -8.32474891428e-07 1.32960996366e-06 -8.21031287588e-07 1.2122577219e-06 -9.04088584929e-07 1.11434106332e-06 -9.93460992882e-07 1.23172212816e-06 -1.06512629956e-06 1.2909453321e-06 -1.1120469837e-06 1.2648901913e-06 -1.17085935229e-06 1.26100080465e-06 -1.22992997419e-06 1.22605134046e-06 -1.29075176836e-06 1.18992561533e-06 -1.36005943227e-06 1.15277293386e-06 -1.43491758458e-06 1.05635875863e-06 -1.4939341403e-06 8.67613487217e-07 -1.55723018816e-06 7.93409772292e-07 -1.65830868244e-06 7.64248757602e-07 -1.77377217233e-06 7.76388366241e-07 -1.85648177386e-06 7.45528670077e-07 -1.91706630918e-06 8.10164368948e-07 -1.95478453299e-06 8.71201876489e-07 -2.01015602098e-06 8.53173324482e-07 -2.05871864722e-06 7.86925604783e-07 -2.11858255593e-06 7.37113456099e-07 -2.18573760622e-06 6.91384726396e-07 -2.23952285647e-06 6.14579096299e-07 -2.29161036181e-06 5.38866736481e-07 -2.34700226446e-06 4.68553721394e-07 -2.39428930533e-06 3.85603430729e-07 -2.43302392299e-06 2.94572218329e-07 -2.45963342251e-06 1.95714669867e-07 -2.4758648656e-06 9.39443597509e-08 -2.48534219074e-06 -1.01553318675e-08 -2.48543852902e-06 -1.2316202594e-07 -2.46010577097e-06 -2.57768063305e-07 -2.37778437897e-06 -4.17708880088e-07 -2.24778431097e-06 -5.62580519554e-07 -2.13220504709e-06 -6.69133010029e-07 -2.07233826003e-06 -7.62677873187e-07 -2.01631226578e-06 -8.90540795938e-07 -1.8781375485e-06 -1.0583454956e-06 -1.55772625017e-06 -1.29739224784e-06 -7.14150355292e-07 -1.77231332604e-06 -2.9220965409e-07 -5.0950740995e-07 6.70610659293e-06 -5.86147758322e-06 3.26083122749e-05 -3.17354031689e-05 6.12545773666e-05 -5.51455418464e-05 8.45173481448e-05 -6.51297120926e-05 0.000104808637457 -7.0374955016e-05 0.000123467174037 -7.28415433527e-05 0.000141112175676 -7.33255117858e-05 0.000157230172101 -7.25489974443e-05 0.000171598610639 -7.06514218891e-05 0.000184947077179 -6.72369581046e-05 0.000197651884732 -6.22789397834e-05 0.000209641885812 -5.60648625699e-05 0.000220736065383 -4.87717668311e-05 0.000230761352053 -4.03955702099e-05 0.000239551647509 -3.08324747318e-05 0.000246972219676 -1.99187856526e-05 0.000252875792423 -7.46323647649e-06 0.000257182644047 6.80991862934e-06 0.0002601632251 2.30323123022e-05 0.00026183432097 4.12057086763e-05 0.000260031019614 6.01775551137e-05 0.000251439927226 7.91013842971e-05 0.000234863884085 9.98410443392e-05 0.000205771168238 0.000121596924673 0.000165392326243 0.000142406364723 7.00316462609e-05 0.000154388739124 8.96165614614e-05 -3.8647461048e-08 1.6273889213e-06 -7.43217255672e-08 1.62444152526e-06 -1.33087355395e-07 1.10381085514e-06 -2.55189125332e-07 1.5174418603e-06 -3.20458976074e-07 1.58168943602e-06 -3.71456567909e-07 1.59647536416e-06 -3.99001836257e-07 1.42915256e-06 -4.93223556455e-07 1.50906755628e-06 -5.26722298042e-07 1.14504360213e-06 -5.7699797148e-07 1.05745854612e-06 -6.4475569167e-07 1.17036238629e-06 -7.18261517131e-07 1.2543531811e-06 -7.93248314974e-07 1.40461641282e-06 -8.04393999473e-07 1.22342007302e-06 -8.87307776368e-07 1.19726497669e-06 -9.69327754861e-07 1.31375517305e-06 -1.03527293452e-06 1.35691600021e-06 -1.08143271046e-06 1.31107046679e-06 -1.1440517067e-06 1.3236463403e-06 -1.20257511222e-06 1.28460846991e-06 -1.25889989857e-06 1.24627758473e-06 -1.33085503165e-06 1.22474561457e-06 -1.40109830929e-06 1.12662519976e-06 -1.46239376756e-06 9.28918164283e-07 -1.52057006453e-06 8.5159089316e-07 -1.56551088811e-06 8.09182061778e-07 -1.60648268234e-06 8.17348125974e-07 -1.6877838365e-06 8.26810596911e-07 -1.80925892976e-06 9.31620548436e-07 -1.91430186473e-06 9.76235933295e-07 -1.97762445912e-06 9.16486476137e-07 -2.04103997124e-06 8.50330391133e-07 -2.11514751772e-06 8.112074773e-07 -2.1740411613e-06 7.50264115524e-07 -2.23131902227e-06 6.71838955889e-07 -2.29999101757e-06 6.07523581331e-07 -2.36245274937e-06 5.31002919854e-07 -2.41774160938e-06 4.40881554867e-07 -2.46607134228e-06 3.42883019854e-07 -2.50625847355e-06 2.35868121964e-07 -2.53288773885e-06 1.20530436001e-07 -2.54012230543e-06 -2.94980302868e-09 -2.5125817552e-06 -1.50771138859e-07 -2.42893435815e-06 -3.41452254547e-07 -2.29909517588e-06 -5.47731363254e-07 -2.16923595747e-06 -6.92544678105e-07 -2.07359974403e-06 -7.64961195107e-07 -1.9840668987e-06 -8.52282030032e-07 -1.8945101027e-06 -9.80386769618e-07 -1.75579798918e-06 -1.19734770905e-06 -1.39114559103e-06 -1.66318196607e-06 6.34230142918e-07 -3.79826916689e-06 8.75148758589e-06 -8.62779182253e-06 3.91155494289e-05 -3.62265449932e-05 7.33045592289e-05 -6.59246484193e-05 9.64266348976e-05 -7.82675762941e-05 0.000116238533154 -8.49416309142e-05 0.000134281136228 -8.84176744883e-05 0.000151167594974 -8.97282028311e-05 0.000167199909967 -8.93580884827e-05 0.000182298346346 -8.76477216488e-05 0.000196373622093 -8.47269865325e-05 0.000209637925159 -8.05015520191e-05 0.000222295091978 -7.49364100827e-05 0.000234357215892 -6.81273107284e-05 0.000245735886945 -6.01507611286e-05 0.000256325862092 -5.09858484655e-05 0.000266021139814 -4.05280099572e-05 0.000274713583499 -2.86115188993e-05 0.000282250008218 -1.50000140909e-05 0.000288633175241 4.26337603509e-07 0.000293814021496 1.78510557642e-05 0.000297485537708 3.75338935459e-05 0.000298287377508 5.93756163852e-05 0.00029382980657 8.35587332022e-05 0.000282184479055 0.00011148611811 0.000259995163272 0.000143786578607 0.000221281531878 0.00018112180775 0.000153338614945 0.000222331466203 0.000242956347126 -3.40239779706e-08 1.66140672489e-06 -6.62281993582e-08 1.65661924615e-06 -1.55314183941e-07 1.19292334404e-06 -2.57612129452e-07 1.61975366304e-06 -2.99969857785e-07 1.62408418133e-06 -3.45571246928e-07 1.64209469808e-06 -4.09348122312e-07 1.49296385025e-06 -4.6258981943e-07 1.56233016729e-06 -5.162328011e-07 1.19869165768e-06 -5.71494264825e-07 1.11273258188e-06 -6.37720336202e-07 1.23658893674e-06 -7.06464762264e-07 1.32312479629e-06 -7.75332930215e-07 1.47349544593e-06 -8.22978778059e-07 1.27107762939e-06 -8.89154796969e-07 1.26345827399e-06 -9.56939261419e-07 1.3815618436e-06 -1.01527562882e-06 1.41527077831e-06 -1.06325789042e-06 1.35908289537e-06 -1.12103059723e-06 1.3814500107e-06 -1.17599545085e-06 1.33959953266e-06 -1.22437298342e-06 1.29468806964e-06 -1.29701898929e-06 1.29742524529e-06 -1.36371993841e-06 1.19334253795e-06 -1.4307549923e-06 9.95967238362e-07 -1.4948023537e-06 9.15643886967e-07 -1.54472797067e-06 8.59105672855e-07 -1.60843924435e-06 8.81052047954e-07 -1.72615661271e-06 9.44515246599e-07 -1.83585295431e-06 1.04131134621e-06 -1.88870257414e-06 1.02908234202e-06 -1.93188370343e-06 9.59671200594e-07 -1.98474569346e-06 9.03190666152e-07 -2.04641891092e-06 8.72876884289e-07 -2.13111193648e-06 8.34951285175e-07 -2.22382268786e-06 7.64544987209e-07 -2.30702581839e-06 6.90725595656e-07 -2.37548621961e-06 5.99469370679e-07 -2.43681897772e-06 5.0221917013e-07 -2.49363139829e-06 3.99690590671e-07 -2.54365524195e-06 2.85881598739e-07 -2.57881282227e-06 1.55688522652e-07 -2.58488342083e-06 3.10732764585e-09 -2.5368887782e-06 -1.9874531009e-07 -2.4481441374e-06 -4.30263594286e-07 -2.36963891089e-06 -6.26220387654e-07 -2.29065439294e-06 -7.71526881007e-07 -2.17916360011e-06 -8.76352533009e-07 -2.03566838999e-06 -9.95737663908e-07 -1.93410794191e-06 -1.08198349147e-06 -2.05376221089e-06 -1.07817121644e-06 -1.76062330909e-06 -1.95644795673e-06 1.36678641814e-05 -1.92277850333e-05 4.9018159195e-05 -4.39784005074e-05 8.65833718307e-05 -7.37913164122e-05 0.000108515271741 -8.78559320072e-05 0.000126820461435 -9.65723317538e-05 0.000143658753397 -0.000101779708637 0.000159696700712 -0.000104455563914 0.000175148238833 -0.000105179801274 0.000190081572485 -0.000104291564823 0.000204450518327 -0.000102016862216 0.000218200590284 -9.84772817267e-05 0.000231387276659 -9.36884807612e-05 0.000244100757225 -8.76501588969e-05 0.000256367625818 -8.03944651973e-05 0.000268157900425 -7.19413220399e-05 0.000279424302311 -6.22525019726e-05 0.000290120664801 -5.1224600477e-05 0.000300206688409 -3.86977585788e-05 0.000309666328468 -2.44599217845e-05 0.000318386465724 -8.29408624976e-06 0.000326066080933 1.01711982971e-05 0.00033248585953 3.11140254329e-05 0.000336807397832 5.50540533264e-05 0.000337515059723 8.28510846361e-05 0.000332708623674 0.00011629264736 0.000318449337448 0.000158046411319 0.000286059218723 0.000213512903411 0.000212390872379 0.000296001721701 0.000455347696087 -3.27863402959e-08 1.69427768708e-06 -6.9619112247e-08 1.69352264244e-06 -1.79270896579e-07 1.30258242112e-06 -2.47295613819e-07 1.68781441266e-06 -2.71297846529e-07 1.64811063832e-06 -3.16127093837e-07 1.68695760327e-06 -4.14003690206e-07 1.59086524976e-06 -4.21745215277e-07 1.57008535562e-06 -5.02700443378e-07 1.27966602001e-06 -5.65901421452e-07 1.17593669e-06 -6.30610053948e-07 1.30131628179e-06 -6.97055692883e-07 1.38957171683e-06 -7.62237997221e-07 1.53870368145e-06 -8.2145446075e-07 1.3303130221e-06 -8.88249683579e-07 1.33026656469e-06 -9.48325543106e-07 1.44165812158e-06 -9.97403002893e-07 1.4643814742e-06 -1.04081587537e-06 1.40251936349e-06 -1.09927423834e-06 1.43993823388e-06 -1.14960459197e-06 1.38997000106e-06 -1.18522119965e-06 1.330337102e-06 -1.24943604943e-06 1.36166639246e-06 -1.31836974988e-06 1.26230080254e-06 -1.39304915926e-06 1.07065958624e-06 -1.46327807604e-06 9.85880379147e-07 -1.5301374264e-06 9.25971250155e-07 -1.61066871941e-06 9.61574349767e-07 -1.74103006053e-06 1.07487203963e-06 -1.81714732472e-06 1.11742637952e-06 -1.86938298753e-06 1.08133027935e-06 -1.92954594347e-06 1.01983878794e-06 -2.02061176874e-06 9.94262446513e-07 -2.08102567268e-06 9.33292847617e-07 -2.13276071406e-06 8.86687918436e-07 -2.20712101643e-06 8.38912819174e-07 -2.2926537791e-06 7.76274903051e-07 -2.37779073199e-06 6.84628136137e-07 -2.45630375472e-06 5.80750993289e-07 -2.52085181792e-06 4.64249785962e-07 -2.57637649057e-06 3.41424767801e-07 -2.62354195993e-06 2.02875303446e-07 -2.62003426904e-06 -3.48772745188e-10 -2.5561017674e-06 -2.62681914949e-07 -2.48959735415e-06 -4.96706193336e-07 -2.42453644671e-06 -6.91209227589e-07 -2.3176679809e-06 -8.782395233e-07 -2.12163961182e-06 -1.07220400002e-06 -1.84782634248e-06 -1.26955560266e-06 -1.6144782577e-06 -1.31552117192e-06 -4.10440839207e-07 -2.28227619308e-06 2.56844643771e-05 -2.80522073953e-05 6.569675415e-05 -5.92401196859e-05 9.77789921173e-05 -7.60600957627e-05 0.000117154666839 -9.31660722459e-05 0.000134243465207 -0.000104943855309 0.000150216944966 -0.000112545176064 0.000165627995888 -0.000117190357862 0.000180682734391 -0.00011951009172 0.000195405416661 -0.000119902406956 0.000209774851151 -0.000118661024381 0.000223755230628 -0.000115997335706 0.000237323106434 -0.000112045301 0.000250503406335 -0.000106868964244 0.000263349318096 -0.000100496286403 0.000275899051303 -9.2944436578e-05 0.000288166415156 -8.4208918664e-05 0.000300155194563 -7.42414956457e-05 0.000311870639882 -6.29402258067e-05 0.000323320837753 -5.01481376733e-05 0.000334511330215 -3.56505933757e-05 0.00034536437306 -1.9147300059e-05 0.000355931228449 -3.95758716238e-07 0.000366017325617 2.10279100695e-05 0.000375271493783 4.5799974395e-05 0.00038315860504 7.49640459833e-05 0.000389154830035 0.00011029658886 0.000392703149208 0.000154498930376 0.000394483956005 0.000211733665296 0.00040367696321 0.000286809862776 0.00037621472108 -3.12429081249e-08 1.72549917881e-06 -8.05175804692e-08 1.74278058853e-06 -2.00149751988e-07 1.42224316223e-06 -2.30677455549e-07 1.71836417675e-06 -2.41321207891e-07 1.65878877814e-06 -2.92311104087e-07 1.73798328262e-06 -3.89698988699e-07 1.68827305918e-06 -3.75741625985e-07 1.55615745179e-06 -4.90106675824e-07 1.3940294709e-06 -5.60267108336e-07 1.2461094349e-06 -6.21199623935e-07 1.36225373219e-06 -6.84517176857e-07 1.45292059e-06 -7.4478683294e-07 1.59898545579e-06 -8.0791055867e-07 1.39345004423e-06 -8.78648145605e-07 1.40102876861e-06 -9.39618386442e-07 1.50265571464e-06 -9.73584291098e-07 1.49837033635e-06 -1.00997349219e-06 1.43894508479e-06 -1.0715811764e-06 1.50158093967e-06 -1.11749028638e-06 1.43591104289e-06 -1.14325914057e-06 1.35614188746e-06 -1.19261120048e-06 1.41105210236e-06 -1.2707385312e-06 1.34044646385e-06 -1.35240160237e-06 1.15233557449e-06 -1.42891353e-06 1.06240377595e-06 -1.50719823246e-06 1.00425546267e-06 -1.57931100128e-06 1.03369457783e-06 -1.67200058929e-06 1.16756305108e-06 -1.73269550007e-06 1.17813279998e-06 -1.81285402034e-06 1.16149363299e-06 -1.8542885393e-06 1.0612858361e-06 -1.9101988553e-06 1.05017836143e-06 -2.01346573595e-06 1.03656761086e-06 -2.12547419839e-06 9.98711143668e-07 -2.20745103181e-06 9.20913115139e-07 -2.279514208e-06 8.48370448986e-07 -2.36558754031e-06 7.70735967818e-07 -2.45138077256e-06 6.66573296535e-07 -2.53699464781e-06 5.49900575037e-07 -2.61056367482e-06 4.15039028211e-07 -2.6381924799e-06 2.30578704872e-07 -2.5980278699e-06 -4.04761491968e-08 -2.55355083628e-06 -3.07073073332e-07 -2.5271421954e-06 -5.23016642821e-07 -2.45065996196e-06 -7.67509495679e-07 -2.26307766926e-06 -1.06563970716e-06 -1.99865037599e-06 -1.33658562134e-06 -1.64487994707e-06 -1.6234588414e-06 6.71779335385e-08 -3.02767475964e-06 2.81043100096e-05 -3.03198746915e-05 6.7013536889e-05 -6.69612801718e-05 9.29529770972e-05 -8.51789892187e-05 0.000116321872593 -9.94280068206e-05 0.000135211213566 -0.000112054354198 0.000152115706871 -0.000121847444511 0.000168058561483 -0.000128487352923 0.000183374882852 -0.000132506223299 0.000198220554326 -0.000134355475458 0.000212673224038 -0.000134354924128 0.000226771184537 -0.000132758931596 0.000240537424452 -0.000129763600129 0.000253997336106 -0.000125505295317 0.000267194439501 -0.000120066196579 0.00028018714635 -0.000113489161206 0.000293032904729 -0.000105790383748 0.0003057818158 -9.69580201912e-05 0.000318482762589 -8.69426073926e-05 0.000331192190273 -7.56497970836e-05 0.000343980622611 -6.29366883236e-05 0.000356937476219 -4.86075588134e-05 0.000370194095732 -3.24039949416e-05 0.000383802507507 -1.40041781745e-05 0.000397765870698 7.06464309852e-06 0.000412304634331 3.12613636519e-05 0.000427795876506 5.94729775929e-05 0.000445151762017 9.29409927921e-05 0.000466417205161 0.000133234230423 0.000496075019641 0.000182077173501 0.000541737283297 0.000241148708607 0.000307867650597 -2.93715128537e-08 1.7549627379e-06 -8.85470977766e-08 1.80201752487e-06 -2.08567002398e-07 1.54228148124e-06 -2.03536571971e-07 1.71336847408e-06 -2.24181325417e-07 1.67946528482e-06 -2.69983428434e-07 1.78380747025e-06 -3.4437421503e-07 1.76270411406e-06 -3.40205453979e-07 1.55198963744e-06 -4.80896136245e-07 1.53474250541e-06 -5.52509898913e-07 1.3177301216e-06 -6.0821779833e-07 1.41798269851e-06 -6.68048525686e-07 1.51275763802e-06 -7.22349159612e-07 1.65331450034e-06 -7.85569623827e-07 1.45669467218e-06 -8.56639707526e-07 1.4721168902e-06 -9.22327647697e-07 1.56837257063e-06 -9.35649089972e-07 1.51172876868e-06 -9.71727654838e-07 1.47504865163e-06 -1.03636742601e-06 1.56625986746e-06 -1.07281536925e-06 1.47239601134e-06 -1.10395166479e-06 1.38730959576e-06 -1.14037842002e-06 1.44750440419e-06 -1.22513051669e-06 1.4252231986e-06 -1.31298287295e-06 1.24020758413e-06 -1.39393210462e-06 1.14336509055e-06 -1.47811657572e-06 1.08845835188e-06 -1.54954683648e-06 1.10513024674e-06 -1.62985125749e-06 1.24787994032e-06 -1.69512804475e-06 1.24341692044e-06 -1.76406386466e-06 1.23044518503e-06 -1.84889116109e-06 1.14612237341e-06 -1.94514567224e-06 1.14644714857e-06 -2.00745729072e-06 1.09889693339e-06 -2.08043696727e-06 1.07171958192e-06 -2.18675731678e-06 1.02727267411e-06 -2.28058777256e-06 9.42244781197e-07 -2.36415476733e-06 8.54345971931e-07 -2.44867266962e-06 7.51139327326e-07 -2.5358482755e-06 6.37131760399e-07 -2.60298627988e-06 4.82271059438e-07 -2.58892422265e-06 2.16588580127e-07 -2.54872885498e-06 -8.05614351868e-08 -2.54795914163e-06 -3.0773106149e-07 -2.53620426329e-06 -5.34571245189e-07 -2.45370053355e-06 -8.49871975236e-07 -2.28861639062e-06 -1.23067906238e-06 -2.10378574262e-06 -1.52152794135e-06 2.9705471471e-07 -4.02442474951e-06 2.82511881925e-05 -3.09822891029e-05 6.69909246085e-05 -6.90594735727e-05 9.05016748337e-05 -9.04714099482e-05 0.000112059788512 -0.000106736251549 0.00013237313918 -0.000119740457621 0.000150780795516 -0.000130461153506 0.000167658532343 -0.000138724443706 0.000183550882576 -0.000144379122733 0.00019873698157 -0.000147691886751 0.000213377039928 -0.000148995229516 0.000227584856363 -0.000148562541452 0.000241443772732 -0.000146617740455 0.000255020064542 -0.000143339856977 0.000268375728411 -0.000138860985383 0.00028157807065 -0.000133268615337 0.000294701554915 -0.00012661276024 0.000307823743278 -0.000118912710907 0.000321023755299 -0.000110158171839 0.000334386726661 -0.000100305707745 0.000348011498735 -8.92746732076e-05 0.000362018916451 -7.69441918439e-05 0.000376560937442 -6.31496332408e-05 0.000391834130784 -4.76771977674e-05 0.000408075855548 -3.02458364244e-05 0.00042565659017 -1.05159517984e-05 0.000444952676065 1.19654697409e-05 0.000466741257442 3.76845872511e-05 0.000492384889371 6.72976504812e-05 0.000524155445185 0.000101464373013 0.000565564612256 0.000140669000963 0.00062186060072 0.000184853444176 0.000230678183047 -3.63044229848e-08 1.79123293857e-06 -8.81056376533e-08 1.85381268669e-06 -1.87235447716e-07 1.64143674856e-06 -1.94884889965e-07 1.72103750264e-06 -2.37676685038e-07 1.72228250428e-06 -2.69790316514e-07 1.81596473963e-06 -3.29632904453e-07 1.82255678338e-06 -3.59243673556e-07 1.58163557422e-06 -4.7507391348e-07 1.65057608042e-06 -5.41272142883e-07 1.38394327426e-06 -5.92556686022e-07 1.46927939798e-06 -6.49347913184e-07 1.56958276023e-06 -6.97483173221e-07 1.70146756534e-06 -7.58647379764e-07 1.51787802994e-06 -8.23992847804e-07 1.5374947548e-06 -8.77153009208e-07 1.62156213988e-06 -8.93426849029e-07 1.52802500647e-06 -9.42253811122e-07 1.52391599533e-06 -1.00277975634e-06 1.62681451893e-06 -1.02864179831e-06 1.49828883905e-06 -1.08234328795e-06 1.44103933481e-06 -1.13675513011e-06 1.50194854079e-06 -1.19211265903e-06 1.4806094928e-06 -1.29166390391e-06 1.33977674325e-06 -1.36882137351e-06 1.22054264759e-06 -1.45311561466e-06 1.17276100925e-06 -1.52577369404e-06 1.17780807791e-06 -1.59915723571e-06 1.32128035976e-06 -1.66977801281e-06 1.31405607795e-06 -1.73849794423e-06 1.29917820598e-06 -1.8369658856e-06 1.24460782427e-06 -1.90511875724e-06 1.21462022624e-06 -1.98523231101e-06 1.17904411496e-06 -2.07246060188e-06 1.15898970144e-06 -2.14813400077e-06 1.10299667589e-06 -2.24244765628e-06 1.03661020939e-06 -2.34437405621e-06 9.56327039053e-07 -2.44146610694e-06 8.4829389782e-07 -2.52507668927e-06 7.20842776134e-07 -2.53311482806e-06 4.90401943285e-07 -2.49166934416e-06 1.75270787815e-07 -2.48816428192e-06 -8.39538374958e-08 -2.51276632815e-06 -2.82949514367e-07 -2.53150909049e-06 -5.15674332301e-07 -2.5397129508e-06 -8.41637744969e-07 -2.44805211667e-06 -1.32243516758e-06 -4.18279553544e-07 -3.55142320876e-06 2.60091722764e-05 -3.04524059847e-05 6.32249047761e-05 -6.81980098253e-05 8.64880639063e-05 -9.23220754004e-05 0.000107569747925 -0.000111552366159 0.000127641308088 -0.00012680709101 0.000146774247596 -0.000138872694791 0.000164647637796 -0.000148333889261 0.000181292542367 -0.000155368772645 0.000196980237055 -0.000160066332971 0.000211935800459 -0.000162647063786 0.00022632181139 -0.000163380942629 0.000240269962309 -0.00016251048071 0.000253891073788 -0.000160238714306 0.000267281251107 -0.000156729964016 0.000280529452649 -0.00015210917312 0.000293724117618 -0.000146463314783 0.000306956727266 -0.000139845442864 0.000320322878416 -0.000132278957491 0.00033392417492 -0.000123759570081 0.000347873183022 -0.000114254804867 0.000362301104665 -0.000103702666849 0.000377367406951 -9.20105397074e-05 0.000393271921615 -7.90541638169e-05 0.000410270970354 -6.46762123021e-05 0.000428709467136 -4.86842323679e-05 0.000449042533352 -3.08488385575e-05 0.000471899583995 -1.08913617714e-05 0.000498172396255 1.14119891575e-05 0.00052905679935 3.64134862696e-05 0.000566496883183 6.40247206953e-05 0.000613119245054 9.40473345247e-05 0.000672722803539 0.000125250325524 0.000155451303565 -5.01531004882e-08 1.84148698157e-06 -8.37002359786e-08 1.88741759316e-06 -1.55005037233e-07 1.71276082427e-06 -2.10469893721e-07 1.77653308452e-06 -2.57160843404e-07 1.76900599891e-06 -2.82695670288e-07 1.84151736635e-06 -3.33883244887e-07 1.87379005532e-06 -3.787700676e-07 1.62652781546e-06 -4.37510690682e-07 1.70934253624e-06 -5.17683935467e-07 1.46413213429e-06 -5.73261519708e-07 1.52487998984e-06 -6.298761305e-07 1.62621075689e-06 -6.73198656532e-07 1.74482152217e-06 -7.33385482337e-07 1.57809330889e-06 -7.96151723985e-07 1.60028350618e-06 -8.45448511143e-07 1.67088704455e-06 -8.92237108141e-07 1.5748475597e-06 -9.42902563052e-07 1.5746003046e-06 -9.849659396e-07 1.66891424833e-06 -1.00878173002e-06 1.52212974478e-06 -1.10679687316e-06 1.53908407104e-06 -1.16899565357e-06 1.56417717294e-06 -1.22067962435e-06 1.53231911521e-06 -1.30990189729e-06 1.42902312845e-06 -1.36748510052e-06 1.27813872334e-06 -1.44803438261e-06 1.2533365045e-06 -1.51484856031e-06 1.24464166219e-06 -1.57193052536e-06 1.37838474317e-06 -1.65007424951e-06 1.39222152672e-06 -1.72167185536e-06 1.37080056786e-06 -1.80039836877e-06 1.323359204e-06 -1.8774097197e-06 1.29166589162e-06 -1.98100807344e-06 1.28268305687e-06 -2.05648562058e-06 1.23452215909e-06 -2.12452920012e-06 1.17109574764e-06 -2.20690346783e-06 1.11904326437e-06 -2.30419229373e-06 1.05367925118e-06 -2.40049847503e-06 9.44690343481e-07 -2.44671811738e-06 7.67160913642e-07 -2.41628444255e-06 4.60100787245e-07 -2.40214557081e-06 1.61234625636e-07 -2.43501829557e-06 -5.09466689212e-08 -2.50058398188e-06 -2.17236815203e-07 -2.62211456508e-06 -3.9412872681e-07 -2.92888532057e-06 -5.34981413075e-07 -2.25620655624e-06 -1.99525545404e-06 2.10087166223e-05 -2.68168659046e-05 5.55514099103e-05 -6.49951701881e-05 7.92186124612e-05 -9.18648307379e-05 0.000100992233555 -0.000114095128839 0.000121527658479 -0.00013208719683 0.000141042036235 -0.000146320907155 0.000159528409743 -0.000157358558636 0.000176887461228 -0.000165692478973 0.000193157566231 -0.000171638463904 0.000208512628764 -0.000175421032599 0.00022314267993 -0.000177276803098 0.000237213072681 -0.000177451079599 0.000250868419929 -0.000176165627194 0.00026423710452 -0.000173607255341 0.000277434487847 -0.000169927256262 0.000290567578237 -0.000165242221798 0.000303740136815 -0.000159635874288 0.000317056876599 -0.00015316221719 0.000330626810107 -0.000145848947407 0.000344567097825 -0.000137699919997 0.000359008654575 -0.000128696419022 0.00037410385742 -0.000118797910643 0.000390036344398 -0.000107943046112 0.000407033494614 -9.60513003283e-05 0.000425383011153 -8.30256686538e-05 0.000445456285341 -6.87573846841e-05 0.000467742997865 -5.31353650379e-05 0.000492920485248 -3.60686280279e-05 0.000521779947886 -1.74472666464e-05 0.000555584038357 2.60962166588e-06 0.000595822833464 2.37862672727e-05 0.000644184289915 4.56862811905e-05 0.000702803409239 6.66314957759e-05 8.55383722439e-05 -5.10213472414e-08 1.89246936965e-06 -7.4292997198e-08 1.91069104056e-06 -1.22530575161e-07 1.76102861893e-06 -2.17929030615e-07 1.87195160681e-06 -2.59579458143e-07 1.81068141934e-06 -2.8663328736e-07 1.86861517321e-06 -3.28195112616e-07 1.91536416429e-06 -3.79357134705e-07 1.67772331226e-06 -4.22840220513e-07 1.75283852175e-06 -5.0163162215e-07 1.54293826661e-06 -5.55444402432e-07 1.57871118147e-06 -6.11424790843e-07 1.68222580476e-06 -6.49833246326e-07 1.78325332192e-06 -7.09723260237e-07 1.63800713561e-06 -7.72423995842e-07 1.66301570133e-06 -8.21231574334e-07 1.71972410941e-06 -8.86288445876e-07 1.63992332494e-06 -9.44049014189e-07 1.63239788617e-06 -9.91702176725e-07 1.71658917036e-06 -1.04968337927e-06 1.5801422551e-06 -1.1520360668e-06 1.6414687065e-06 -1.18564508181e-06 1.59782063857e-06 -1.23144890301e-06 1.57815334329e-06 -1.31470714657e-06 1.51230073088e-06 -1.42133327168e-06 1.38479012224e-06 -1.47734235891e-06 1.30936226431e-06 -1.51646462347e-06 1.28379261435e-06 -1.56028192002e-06 1.42223631097e-06 -1.64695617552e-06 1.47892880361e-06 -1.70929034417e-06 1.43316618051e-06 -1.76918127958e-06 1.38328567272e-06 -1.84274301648e-06 1.36526456879e-06 -1.92164552522e-06 1.36163657964e-06 -2.0295477615e-06 1.34247884654e-06 -2.11753679184e-06 1.25914913496e-06 -2.197116491e-06 1.19869070608e-06 -2.27503488074e-06 1.13168180126e-06 -2.34127680799e-06 1.01102250661e-06 -2.34901871529e-06 7.75028277489e-07 -2.33151641467e-06 4.42695390629e-07 -2.35306175445e-06 1.82899576493e-07 -2.41675132994e-06 1.28630753774e-08 -2.55767713133e-06 -7.62610493685e-08 -2.96903427383e-06 1.71443594932e-08 -3.9347922028e-06 4.30583744829e-07 1.31527935391e-05 -1.90835004281e-05 4.46666904477e-05 -5.83309371907e-05 6.88947237374e-05 -8.92229446387e-05 9.18824947048e-05 -0.00011485218562 0.000113486941356 -0.000135699104827 0.000133767816173 -0.000152367618033 0.000152832326164 -0.000165385017556 0.000170744100918 -0.000175269978882 0.000187543070995 -0.000182491128145 0.000203321265261 -0.000187416360067 0.000218235313643 -0.000190334803507 0.000232461738929 -0.000191502975978 0.000246167577921 -0.000191156696071 0.00025950477734 -0.000189502642327 0.000272611133181 -0.000186713467256 0.000285612354977 -0.000182928377048 0.0002986254821 -0.000178255288071 0.000311763160974 -0.000172773529134 0.000325138001424 -0.000166537063534 0.000338866854952 -0.00015957782613 0.000353075549732 -0.000151908647591 0.00036790475392 -0.000143525651125 0.000383517336087 -0.000134410508607 0.000400107432252 -0.000124533138271 0.000417911605747 -0.000113855442207 0.000437222833257 -0.000102336826948 0.000458408323658 -8.99427549824e-05 0.000481931691066 -7.66585591055e-05 0.000508374876085 -6.25116064452e-05 0.000538539345794 -4.76115354134e-05 0.000573394105119 -3.22449508069e-05 0.000613855613678 -1.66750083974e-05 0.000661422903459 -1.88070936227e-06 0.000717320291612 1.07342714592e-05 2.00626085423e-05 -4.23299848021e-08 1.93491700316e-06 -6.27078905421e-08 1.93112911972e-06 -1.13536370168e-07 1.81187914702e-06 -2.01833244342e-07 1.96028277122e-06 -2.44380859976e-07 1.85326162761e-06 -2.8031455536e-07 1.90456704681e-06 -3.16149471926e-07 1.95123962799e-06 -3.78103662556e-07 1.73969063623e-06 -4.25724658144e-07 1.80048114299e-06 -4.94573840733e-07 1.61181049619e-06 -5.40425870697e-07 1.62458771182e-06 -5.93749770933e-07 1.73557081743e-06 -6.26334353117e-07 1.81586972516e-06 -6.85928940181e-07 1.69763239432e-06 -7.47148110136e-07 1.72426245433e-06 -7.95787469121e-07 1.7683877596e-06 -8.72433339616e-07 1.71660273824e-06 -9.3311144488e-07 1.69309579226e-06 -9.83814466229e-07 1.76732830457e-06 -1.04977980774e-06 1.64613605461e-06 -1.11495307343e-06 1.70667894276e-06 -1.15503647206e-06 1.63793820732e-06 -1.18711154219e-06 1.61025588712e-06 -1.25412396662e-06 1.57933781215e-06 -1.33394339356e-06 1.46462713905e-06 -1.41448480485e-06 1.3899361419e-06 -1.47529396709e-06 1.34463515341e-06 -1.53318196061e-06 1.48015903628e-06 -1.62886443722e-06 1.57465071467e-06 -1.69512522687e-06 1.49946598487e-06 -1.74922688278e-06 1.43742570246e-06 -1.80897617039e-06 1.4250611583e-06 -1.86602027225e-06 1.41873318161e-06 -1.94699382968e-06 1.42352130715e-06 -2.03427389761e-06 1.34650036912e-06 -2.14105702129e-06 1.30555340257e-06 -2.23144715478e-06 1.22215268369e-06 -2.28166638564e-06 1.06135438717e-06 -2.28147494088e-06 7.74938182074e-07 -2.29172968459e-06 4.53078226728e-07 -2.33421338575e-06 2.25490615308e-07 -2.42486684823e-06 1.03627848449e-07 -2.63835865492e-06 1.37265108635e-07 -2.83367856297e-06 2.12309020742e-07 3.37832909238e-07 -2.74134202703e-06 3.02563537579e-05 -4.90022339833e-05 5.6298141101e-05 -8.43724795114e-05 8.08329802886e-05 -0.000113757429648 0.000103652539108 -0.000137671367243 0.00012490532755 -0.000156951524785 0.000144708061156 -0.000172170015858 0.000163183065497 -0.000183859725552 0.000180447624699 -0.000192534278555 0.000196614921084 -0.00019865818882 0.000211819101963 -0.000202620320346 0.000226222667412 -0.000204738158461 0.000239998843717 -0.000205278952995 0.000253314495075 -0.00020447216496 0.000266323715909 -0.000202511702872 0.00027916729294 -0.000199556912376 0.000291974323423 -0.000195735306024 0.000304865181598 -0.000191146076333 0.000317955416312 -0.000185863722977 0.000331360076862 -0.000179941707268 0.000345198265963 -0.000173416014793 0.000359598090467 -0.000166308478021 0.000374702331237 -0.000158629895748 0.000390675083504 -0.000150383254345 0.00040770951142 -0.000141567542963 0.000426036870796 -0.000132182755169 0.000445936973144 -0.000122236850078 0.00046775014476 -0.000111755807601 0.000491890223205 -0.000100798473218 0.00051885739157 -8.94785876178e-05 0.000549242552672 -7.79965198723e-05 0.000583686043963 -6.66882759969e-05 0.000623082667165 -5.60714452586e-05 0.00066830785815 -4.71057233167e-05 0.000719903772242 -4.08615125295e-05 -3.89606114928e-05 -4.69689143475e-08 1.98183650191e-06 -4.87992865224e-08 1.93296636976e-06 -1.20500252706e-07 1.88361280293e-06 -1.66035252839e-07 2.00584186369e-06 -2.17714526754e-07 1.9049678804e-06 -2.64674665387e-07 1.95156836494e-06 -3.02322721413e-07 1.98890696593e-06 -3.70624920296e-07 1.80802242317e-06 -4.15158076474e-07 1.84503880871e-06 -4.87952741649e-07 1.68462030013e-06 -5.25490974163e-07 1.66215053229e-06 -5.73281684429e-07 1.7833957436e-06 -6.03166148992e-07 1.84578339843e-06 -6.64651100915e-07 1.75914413771e-06 -7.19397909583e-07 1.77903797225e-06 -7.66296220526e-07 1.81531846243e-06 -8.55065128859e-07 1.80539166116e-06 -9.14116128172e-07 1.75218222275e-06 -9.58271227141e-07 1.81151109056e-06 -1.02432362708e-06 1.71222357579e-06 -1.05796376903e-06 1.74035298582e-06 -1.10161003511e-06 1.68161663488e-06 -1.15563867711e-06 1.6643119206e-06 -1.21740082549e-06 1.64112431381e-06 -1.30911190134e-06 1.55636636392e-06 -1.39086665377e-06 1.47171336764e-06 -1.42839841401e-06 1.38219669389e-06 -1.51081046867e-06 1.56261399786e-06 -1.59987586815e-06 1.66376120396e-06 -1.68130792564e-06 1.58094225388e-06 -1.76317838422e-06 1.51934516116e-06 -1.84376753074e-06 1.50570577611e-06 -1.88913159835e-06 1.46416693409e-06 -1.94083132413e-06 1.47529436636e-06 -2.02213698295e-06 1.42788222929e-06 -2.10292164801e-06 1.3864208653e-06 -2.18478410867e-06 1.30412005019e-06 -2.23391756401e-06 1.11058561391e-06 -2.24523728982e-06 7.86378391956e-07 -2.27755807045e-06 4.8549692294e-07 -2.35090659139e-06 2.98961195732e-07 -2.58868477491e-06 3.41502884436e-07 -2.99373088994e-06 5.42255403906e-07 -3.8324053194e-06 1.0509491443e-06 1.78420084654e-05 -2.44158412789e-05 4.44383534665e-05 -7.55983501352e-05 6.94451962343e-05 -0.000109378993382 9.28185029485e-05 -0.000137130409622 0.000114790558139 -0.000159643116277 0.000135301789693 -0.00017746247256 0.000154375409887 -0.000191243379963 0.000172112053544 -0.000201596146364 0.00018864606927 -0.00020906809827 0.000204125163381 -0.000214137105737 0.000218709304409 -0.000217204292116 0.000232569361805 -0.000218598050312 0.000245877864557 -0.000218587293525 0.000258799288561 -0.000217393434097 0.000271485364489 -0.000215197637578 0.000284074546468 -0.000212145971602 0.000296693671216 -0.000208354330769 0.000309460896827 -0.000203913225666 0.000322489461866 -0.000198892234917 0.000335891903538 -0.000193344115393 0.0003497845344 -0.000187308625608 0.000364292193407 -0.000180816123021 0.000379553400185 -0.000173891086671 0.000395726024717 -0.000166555854824 0.000412993502486 -0.000158834983112 0.000431571524101 -0.000150760719665 0.000451714972848 -0.000142380218014 0.000473724589407 -0.000133765311343 0.000497952248588 -0.000125025988245 0.000524802851608 -0.000116329025078 0.000554729934611 -0.000107923447506 0.000588217443786 -0.000100175648564 0.000625752863602 -9.36067284093e-05 0.000667621179349 -8.89738946033e-05 0.000713970186104 -8.72104531787e-05 -8.96018034443e-05 -4.74740521648e-08 2.02943574409e-06 -5.38112838218e-08 1.93936128199e-06 -1.20553562086e-07 1.95038405589e-06 -1.51186895008e-07 2.03651347651e-06 -1.98866955909e-07 1.95268355144e-06 -2.46093616923e-07 1.99881930819e-06 -2.86011963852e-07 2.02886189256e-06 -3.53658685419e-07 1.87569543598e-06 -3.94132440864e-07 1.88553042354e-06 -4.78444434672e-07 1.76896304538e-06 -5.1060659113e-07 1.69433910374e-06 -5.48753729624e-07 1.82157087754e-06 -5.85535296305e-07 1.88259426868e-06 -6.5178378092e-07 1.82542541753e-06 -6.97483221141e-07 1.8247685481e-06 -7.449180742e-07 1.86277645688e-06 -8.36548623078e-07 1.89705917705e-06 -8.90705059073e-07 1.80636638012e-06 -9.23879508484e-07 1.84472097202e-06 -9.87334426557e-07 1.77571125471e-06 -1.0253901147e-06 1.77844117167e-06 -1.07971599999e-06 1.73597080177e-06 -1.15473413336e-06 1.73935767273e-06 -1.21754536926e-06 1.70396071302e-06 -1.33603036598e-06 1.6748734132e-06 -1.41817698912e-06 1.55388664494e-06 -1.48207240942e-06 1.44612363735e-06 -1.51250103354e-06 1.59308583589e-06 -1.57138997618e-06 1.72270544528e-06 -1.65923604312e-06 1.66884513612e-06 -1.73667949832e-06 1.59684579659e-06 -1.79946648984e-06 1.5685586488e-06 -1.87044113419e-06 1.53521082676e-06 -1.93606117117e-06 1.54099234015e-06 -2.00816785685e-06 1.50007619009e-06 -2.07135630554e-06 1.4497035215e-06 -2.14813334023e-06 1.3809887412e-06 -2.20152843178e-06 1.16409409322e-06 -2.22812312384e-06 8.13068480793e-07 -2.26394200768e-06 5.21427409651e-07 -2.35760478254e-06 3.92733149949e-07 -2.47190740165e-06 4.55846461355e-07 -2.28760446665e-06 3.57930500015e-07 1.48583308683e-06 -2.72253751958e-06 3.39844174947e-05 -5.69141706275e-05 5.73240759558e-05 -9.89376622274e-05 8.10289943867e-05 -0.000133083578758 0.000103641909749 -0.000159743036261 0.000124789898137 -0.000180790853027 0.000144453514839 -0.000197125863813 0.000162686478595 -0.000209476142351 0.000179603784187 -0.000218513272362 0.000195359593211 -0.000224823747446 0.00021012483035 -0.000228902195493 0.000224076238164 -0.000231155559899 0.000237390601457 -0.000231912276036 0.000250238641548 -0.00023143519839 0.000262779645031 -0.000229934306686 0.000275158942999 -0.00022757681298 0.00028750818178 -0.000224495100408 0.000299947377276 -0.0002207934319 0.000312588014783 -0.000216553786288 0.000325536764568 -0.000211840924894 0.000338899519926 -0.000206706825658 0.000352785588743 -0.000201194659687 0.000367311997937 -0.000195342502065 0.000382607945553 -0.000189187002928 0.000398819424163 -0.000182767295548 0.000416113948064 -0.000176129457376 0.000434685159779 -0.00016933186687 0.000454756857734 -0.000162451830785 0.000476585591537 -0.000155593938003 0.000500460405357 -0.000148900669222 0.000526697406821 -0.000142565884855 0.000555625688576 -0.000136851598525 0.000587558745911 -0.000132108591647 0.000622748644838 -0.000128796518724 0.000661292800523 -0.000127517967327 0.000703058486894 -0.00012897607551 -0.000133959687397 -3.79165197964e-08 2.06730132915e-06 -7.49943711135e-08 1.97645040157e-06 -1.2004514077e-07 1.99547068483e-06 -1.52782209409e-07 2.06928011988e-06 -1.92446161175e-07 1.99237855587e-06 -2.3059632055e-07 2.03701021773e-06 -2.70198920764e-07 2.06849523356e-06 -3.32950067986e-07 1.93847148554e-06 -3.67282980864e-07 1.91989958018e-06 -4.64507739879e-07 1.86620566889e-06 -4.98625482798e-07 1.72848470753e-06 -5.25049605984e-07 1.84802700953e-06 -5.66357008047e-07 1.92393744904e-06 -6.44743815119e-07 1.90383909088e-06 -6.83038085065e-07 1.863091608e-06 -7.28332068145e-07 1.908108972e-06 -8.03325182683e-07 1.97207998807e-06 -8.5325856723e-07 1.85633531045e-06 -8.89898636547e-07 1.88139580459e-06 -9.57799805495e-07 1.84364278333e-06 -1.01635808083e-06 1.83703045276e-06 -1.10047909078e-06 1.82012114531e-06 -1.1834327721e-06 1.82234040777e-06 -1.2478383559e-06 1.76839606302e-06 -1.30173069047e-06 1.72879383019e-06 -1.38268865491e-06 1.63486855269e-06 -1.46556697993e-06 1.52903142441e-06 -1.47154182827e-06 1.59910505361e-06 -1.54711465537e-06 1.79833452433e-06 -1.62494756321e-06 1.74673902536e-06 -1.71118706081e-06 1.68315228168e-06 -1.79326860337e-06 1.65070821599e-06 -1.88723559039e-06 1.62925564431e-06 -1.94045525243e-06 1.59429545669e-06 -1.99416807785e-06 1.55387899853e-06 -2.04521917538e-06 1.50085173262e-06 -2.11228239873e-06 1.44816867756e-06 -2.18029297542e-06 1.23220967714e-06 -2.23079880637e-06 8.63680110362e-07 -2.31682232084e-06 6.0755315281e-07 -2.57646935159e-06 6.52457184122e-07 -2.900894735e-06 7.80273705321e-07 -3.55737696296e-06 1.01440737592e-06 1.79017294973e-05 -2.41816076504e-05 4.41817934572e-05 -8.31939135605e-05 6.87648438157e-05 -0.00012352038213 9.16391284461e-05 -0.000155957580001 0.000113314317987 -0.000181417991864 0.000133554922894 -0.000201031256581 0.000152298281707 -0.000215869042545 0.000169625168357 -0.000226802864746 0.000185680963935 -0.000234568919767 0.000200642107775 -0.000239784756284 0.000214696090278 -0.000242956053707 0.000228029131096 -0.000244488481467 0.000240819341514 -0.000244702369857 0.000253232443893 -0.000243848184829 0.000265419215692 -0.00024212096489 0.000277514967549 -0.000239672456042 0.000289640880652 -0.000236620912848 0.000301906600838 -0.00023305906231 0.000314413541514 -0.000229060649665 0.000327258534026 -0.000224685852825 0.00034053759564 -0.000219985833807 0.000354349687466 -0.000215006706026 0.000368800426504 -0.000209793199227 0.000384005764655 -0.000204392298328 0.000400095628908 -0.000198857111539 0.000417217412788 -0.000193251184376 0.000435539030642 -0.00018765341496 0.000455250962785 -0.00018216367967 0.000476566348145 -0.000176909222387 0.000499717638246 -0.000172051844087 0.000524947697912 -0.000167795821484 0.000552492474406 -0.000164396265154 0.000582551523208 -0.000162167548786 0.000615243146044 -0.000161488061649 0.00065053480395 -0.000162809549126 0.00068817787355 -0.000166619125429 -0.00017331455831 -3.42058790942e-08 2.10163356583e-06 -7.94631964002e-08 2.02176573036e-06 -1.19087302006e-07 2.03512935903e-06 -1.56507526427e-07 2.10674151409e-06 -1.91142246994e-07 2.02705335299e-06 -2.18174141738e-07 2.06407476845e-06 -2.56839181431e-07 2.10719354198e-06 -3.16507286935e-07 1.99817848263e-06 -3.43126594973e-07 1.94653679605e-06 -4.46709661462e-07 1.96982253674e-06 -4.89364853234e-07 1.77116783432e-06 -5.07705677758e-07 1.86639937856e-06 -5.43146552495e-07 1.95940471026e-06 -6.36959776148e-07 1.99768994986e-06 -6.69506853463e-07 1.895673006e-06 -7.09849731942e-07 1.9484792216e-06 -7.62700552755e-07 2.02497098171e-06 -8.11001909922e-07 1.90467147942e-06 -8.58972887835e-07 1.92939746683e-06 -9.32064683296e-07 1.91677089468e-06 -9.80854064061e-07 1.88585013255e-06 -1.07336228651e-06 1.91266354084e-06 -1.12221244304e-06 1.87122504941e-06 -1.18830474171e-06 1.83452066429e-06 -1.26598437002e-06 1.80650139572e-06 -1.37781248421e-06 1.74672123915e-06 -1.48719140294e-06 1.63843341356e-06 -1.5373793129e-06 1.64932438913e-06 -1.56037215997e-06 1.82138229814e-06 -1.63881212829e-06 1.82524776076e-06 -1.72527571604e-06 1.76968843637e-06 -1.79903857476e-06 1.72455457339e-06 -1.85185085876e-06 1.68214885197e-06 -1.92580388685e-06 1.66833861707e-06 -1.98992203205e-06 1.6180955719e-06 -2.04591876285e-06 1.55695893022e-06 -2.07574178735e-06 1.47810754574e-06 -2.16433755283e-06 1.32091658062e-06 -2.22727418255e-06 9.26682201747e-07 -2.32779604068e-06 7.0813197313e-07 -2.49767546877e-06 8.22379052176e-07 -2.38681788939e-06 6.69357297087e-07 -9.14407293082e-07 -4.58034637757e-07 3.10447393478e-05 -5.61406297175e-05 5.46736531058e-05 -0.000106822596492 7.84293412684e-05 -0.000147275832032 0.000100841875207 -0.000178369908857 0.000121704519375 -0.000202280461589 0.00014100840763 -0.00022033499151 0.000158796738659 -0.000233657231782 0.000175197465563 -0.000243203459485 0.000190389563675 -0.000249760893645 0.000204571611122 -0.000253966688103 0.000217943169737 -0.000256327502559 0.000230694068939 -0.000257239275537 0.000242998866667 -0.000257007064165 0.000255014502495 -0.000255863718886 0.000266879974186 -0.000253986336372 0.000278717557246 -0.000251509942524 0.000290635197267 -0.000248538461707 0.000302729621277 -0.000245153402692 0.000315089774876 -0.000241420728316 0.000327800310682 -0.000237396322619 0.000340944967123 -0.000233130432104 0.000354609768221 -0.000228671454555 0.000368886054246 -0.000224069435285 0.000383873393992 -0.000219379587042 0.000399682401517 -0.000214666064154 0.000416437372006 -0.000210006092182 0.000434278443484 -0.000205494415158 0.000453362718528 -0.000201247871366 0.000473863388347 -0.000197409799144 0.000495965485852 -0.000194153836901 0.000519856345079 -0.000191686576949 0.000545708462606 -0.000190248293438 0.000573652025682 -0.000190111041755 0.000603735403678 -0.00019157138342 0.000635869757206 -0.000194943881259 0.00066978209031 -0.00020053143502 -0.000208417130763 -3.08256255777e-08 2.13240828667e-06 -7.41026092054e-08 2.06505704792e-06 -1.20720175696e-07 2.08178408091e-06 -1.55411576126e-07 2.14146947912e-06 -1.86114644626e-07 2.05779240731e-06 -2.05456553308e-07 2.08345635511e-06 -2.41464404552e-07 2.1432423138e-06 -3.12533488269e-07 2.0692717255e-06 -3.39985790415e-07 1.97402806045e-06 -4.13119626675e-07 2.0429824509e-06 -4.7478397817e-07 1.83285790061e-06 -4.96271685599e-07 1.88791763623e-06 -5.31406786602e-07 1.99458248177e-06 -6.08851468336e-07 2.07516656541e-06 -6.45650155515e-07 1.93250341824e-06 -6.86632979028e-07 1.9895034071e-06 -7.23237357274e-07 2.06161069854e-06 -7.72464281262e-07 1.95393245834e-06 -8.21605727177e-07 1.97857932996e-06 -9.12058706508e-07 2.00725599988e-06 -9.63166046412e-07 1.93699606594e-06 -1.03887845846e-06 1.98841314544e-06 -1.08591336981e-06 1.91829717597e-06 -1.15550365988e-06 1.90414493707e-06 -1.23652413663e-06 1.88755036635e-06 -1.33629856562e-06 1.84651594929e-06 -1.47371718576e-06 1.77587470219e-06 -1.57815660225e-06 1.7538025283e-06 -1.56611280884e-06 1.80938827559e-06 -1.6545942055e-06 1.91379544381e-06 -1.75726221559e-06 1.87243300853e-06 -1.85648964862e-06 1.82386661623e-06 -1.90537586802e-06 1.73113185329e-06 -1.95418052218e-06 1.71724271407e-06 -1.99776203605e-06 1.66177757357e-06 -2.05557547041e-06 1.61488679525e-06 -2.06946774889e-06 1.49211049058e-06 -2.13786894243e-06 1.38937911184e-06 -2.22668634107e-06 1.01554880697e-06 -2.52401519609e-06 1.00549098401e-06 -2.83999234602e-06 1.13831313566e-06 -2.88260556602e-06 7.11985515667e-07 1.28883966247e-05 -1.62292804412e-05 3.90926837601e-05 -8.23448729341e-05 6.39474134032e-05 -0.000131677166176 8.71098564092e-05 -0.000170438110847 0.000108782876312 -0.000200042783167 0.000128787878353 -0.000222285336325 0.000147140015439 -0.0002386870107 0.000163966060101 -0.00025048316416 0.000179450570548 -0.000258687860613 0.000193806083494 -0.000264116301845 0.000207249579579 -0.000267410083446 0.000219987423669 -0.000269065250662 0.000232207456116 -0.000269459214571 0.00024407588861 -0.00026887540553 0.000255737194399 -0.000267524934195 0.000267315759106 -0.000265564812083 0.000278918574021 -0.000263112670283 0.000290638500498 -0.000260258304678 0.000302557749795 -0.000257072573243 0.000314751300226 -0.000253614205933 0.000327290072814 -0.000249935028519 0.000340243775603 -0.000246084073664 0.000353683423407 -0.000242111045166 0.000367683626308 -0.000238069582543 0.000382324785924 -0.000234020690548 0.000397695312857 -0.00023003653133 0.000413893846858 -0.000226204561834 0.000431031253843 -0.000222631750263 0.000449231865944 -0.000219448406194 0.00046863309932 -0.000216810947684 0.000489382158884 -0.000214902809112 0.000511628125746 -0.000213932459111 0.000535507348241 -0.000214127449398 0.000561119626491 -0.000215723270624 0.000588493888853 -0.000218945619597 0.000617538184943 -0.000223988154711 0.000647997909879 -0.000230991180859 -0.000239747412394 -2.89182651164e-08 2.16145129786e-06 -7.1105825065e-08 2.1073027956e-06 -1.24465635277e-07 2.13518510445e-06 -1.45703787348e-07 2.16275062627e-06 -1.72107797633e-07 2.08423788767e-06 -1.9391041886e-07 2.10529848373e-06 -2.2353803252e-07 2.17290266278e-06 -3.01748875701e-07 2.14752686737e-06 -3.36433218578e-07 2.00874073436e-06 -3.65735024818e-07 2.07231356622e-06 -4.53820378455e-07 1.9209768969e-06 -4.81279729152e-07 1.91541239996e-06 -5.16488014544e-07 2.02982302457e-06 -5.55224692951e-07 2.11394381136e-06 -6.07554160466e-07 1.98487172365e-06 -6.53065144922e-07 2.03504883228e-06 -6.81453599928e-07 2.09003771016e-06 -7.40884064747e-07 2.01340322128e-06 -7.93394162687e-07 2.03112328882e-06 -8.71959241531e-07 2.08586201605e-06 -9.24584225782e-07 1.98965733014e-06 -9.6874585064e-07 2.03261313621e-06 -1.03549579661e-06 1.98508410394e-06 -1.11991024811e-06 1.98859487897e-06 -1.19333672764e-06 1.96100707015e-06 -1.29341319468e-06 1.94662375836e-06 -1.42003835084e-06 1.90253387559e-06 -1.54304373521e-06 1.87683939663e-06 -1.60175512977e-06 1.86814172128e-06 -1.6388439673e-06 1.95093117074e-06 -1.74318320686e-06 1.97684173865e-06 -1.80395967917e-06 1.88472627099e-06 -1.91026988824e-06 1.83753910788e-06 -1.9904471392e-06 1.79752302394e-06 -2.04475544702e-06 1.71619495416e-06 -2.07249659765e-06 1.64272481563e-06 -2.11497756227e-06 1.53466957168e-06 -2.06324868523e-06 1.33772182067e-06 -2.28611715592e-06 1.23844768605e-06 -2.69199373241e-06 1.41144887861e-06 -3.26136217163e-06 1.70776205906e-06 -5.72656845923e-06 3.17692340283e-06 2.09712126269e-05 -4.29270031796e-05 4.70502139613e-05 -0.000108423814379 7.18174663091e-05 -0.000156444307694 9.46109365815e-05 -0.00019323146616 0.000115522415484 -0.000220954158487 0.000134608503405 -0.000241371329074 0.000151989258702 -0.000256067675627 0.000167862723181 -0.000266356538674 0.000182462882182 -0.000273287930524 0.000196030227174 -0.00027768355811 0.000208793562433 -0.000280173332233 0.00022095957116 -0.000281231174385 0.000232708444048 -0.000281208004657 0.000244193635156 -0.000280360514585 0.000255544028145 -0.000278875246369 0.000266867314761 -0.000276888018454 0.000278253829482 -0.00027449910647 0.000289780406588 -0.000271784805314 0.000301513988734 -0.000268806082216 0.000313514819977 -0.000265614967723 0.000325839120102 -0.00026225926317 0.000338541227258 -0.000258786118938 0.00035167530791 -0.000255245066264 0.000365296850763 -0.00025169106713 0.000379464229088 -0.000248188009627 0.000394240574386 -0.000244812815813 0.000409696062704 -0.00024165998534 0.000425910457243 -0.000238846077504 0.00044297547606 -0.000236513353602 0.000460996194686 -0.000234831595209 0.000480090384079 -0.000233996925583 0.000500384161742 -0.000234226173617 0.000522001988916 -0.000235745224714 0.000545047915488 -0.00023876917209 0.000569576201379 -0.000243473898377 0.000595540256094 -0.000249952250999 0.000622747349773 -0.000258198295329 -0.000267682961382 -2.91306194733e-08 2.19053386448e-06 -8.4609220075e-08 2.16280013555e-06 -1.21767756549e-07 2.17238267405e-06 -1.2346213107e-07 2.16448638941e-06 -1.52913707514e-07 2.11373016067e-06 -1.84085447613e-07 2.13651052209e-06 -2.08633951218e-07 2.19749937611e-06 -2.67627711459e-07 2.20655610428e-06 -3.19482315114e-07 2.06062960294e-06 -3.35159825903e-07 2.08802793217e-06 -4.31613850638e-07 2.01745804647e-06 -4.59743536298e-07 1.94357508677e-06 -4.86978862228e-07 2.05710083912e-06 -5.0604820121e-07 2.13305188099e-06 -5.68020412293e-07 2.04687737688e-06 -6.05800038554e-07 2.07286769332e-06 -6.38225492697e-07 2.12250369726e-06 -7.09479702748e-07 2.08469177048e-06 -7.56398062916e-07 2.07808191713e-06 -7.99790215193e-07 2.12929179154e-06 -8.64635643741e-07 2.05453826016e-06 -9.08871805364e-07 2.0768876824e-06 -9.90855059552e-07 2.06710478504e-06 -1.06031359524e-06 2.05809054297e-06 -1.12251289133e-06 2.02324380686e-06 -1.22153900022e-06 2.04568487963e-06 -1.32379709598e-06 2.00482628084e-06 -1.43287244888e-06 1.98594982082e-06 -1.53804818661e-06 1.97334855304e-06 -1.57637501665e-06 1.98930414277e-06 -1.63991818424e-06 2.04044232737e-06 -1.7589585847e-06 2.00384455085e-06 -1.87300604324e-06 1.9516789394e-06 -1.93686000601e-06 1.86147273031e-06 -2.03892461688e-06 1.81835466673e-06 -2.15141441228e-06 1.75529804534e-06 -2.27255684068e-06 1.65588333112e-06 -2.45963879423e-06 1.52486022865e-06 -2.64590595663e-06 1.42489582887e-06 -2.51722773077e-06 1.28286899536e-06 -1.96830249701e-06 1.15884955893e-06 7.49079392244e-07 4.59607299039e-07 3.01323823022e-05 -7.2310439512e-05 5.51077621148e-05 -0.000133399128287 7.90397590308e-05 -0.000180376211056 0.000101095838233 -0.000215287457469 0.00012111537549 -0.000240973616153 0.000139220229763 -0.000259476109785 0.000155618506266 -0.000272465879179 0.000170565895087 -0.000281303854154 0.000184332316248 -0.000287054276462 0.000197176058204 -0.000290527224757 0.000209329374609 -0.000292326573065 0.000220992368752 -0.000292894094256 0.000232332320205 -0.000292547882252 0.000243486290031 -0.000291514411701 0.000254565360197 -0.000289954243886 0.000265659376579 -0.000287981962976 0.000276841543687 -0.000285681202118 0.00028817253113 -0.000283115722702 0.000299703940234 -0.000280337422856 0.000311481039946 -0.000277392001227 0.000323544733335 -0.000274322892698 0.000335932808605 -0.000271174132326 0.000348680695706 -0.000267992893161 0.000361822122434 -0.000264832433909 0.000375390145299 -0.000261755972733 0.000389418974583 -0.000258841583803 0.000403946798672 -0.000256187747923 0.00041901954634 -0.000253918762703 0.000434695226869 -0.000252188974163 0.00045104824581 -0.000251184556783 0.000468172835407 -0.000251121464755 0.000486184283421 -0.000252237579492 0.000505216083792 -0.000254777003451 0.000525409157502 -0.000258962231232 0.000546889239971 -0.000264954008871 0.000569711723596 -0.000272774766145 0.000593809185888 -0.000282295796208 -0.000292560826676 -3.29955574257e-08 2.22365729095e-06 -9.473225459e-08 2.22460034595e-06 -1.01090697523e-07 2.17878952967e-06 -1.00969463315e-07 2.16441038217e-06 -1.37472991603e-07 2.15027813622e-06 -1.73593169724e-07 2.17267785645e-06 -1.94696065386e-07 2.21864213095e-06 -2.31308293321e-07 2.24321059515e-06 -2.93545192666e-07 2.12290634068e-06 -3.06169835139e-07 2.10067996477e-06 -4.00414890094e-07 2.11173840956e-06 -4.37027245628e-07 1.98022455008e-06 -4.48656647993e-07 2.06876752322e-06 -4.66641086355e-07 2.15107303798e-06 -5.39460672364e-07 2.11973784377e-06 -5.620950534e-07 2.0955412797e-06 -5.93109125194e-07 2.15355483313e-06 -6.74446355668e-07 2.16607156565e-06 -7.07976570456e-07 2.11165000744e-06 -7.39084265563e-07 2.16043612534e-06 -8.10032255555e-07 2.12552641164e-06 -8.48125605681e-07 2.1150174143e-06 -9.36562050187e-07 2.1555808122e-06 -9.8789726996e-07 2.10946458756e-06 -1.07042176024e-06 2.10580562065e-06 -1.14592944569e-06 2.12123243126e-06 -1.22716206105e-06 2.08609813759e-06 -1.32388225476e-06 2.08271055338e-06 -1.42190005285e-06 2.07140984177e-06 -1.49577760306e-06 2.06322428996e-06 -1.5658087657e-06 2.11052738823e-06 -1.73234666909e-06 2.17044794238e-06 -1.84244710089e-06 2.06184578179e-06 -2.02193877528e-06 2.04104402649e-06 -2.20054732802e-06 1.99703803116e-06 -2.40041205527e-06 1.95524027723e-06 -2.63228171166e-06 1.88781388206e-06 -2.95136077344e-06 1.84405534401e-06 -3.32709664152e-06 1.80074117074e-06 -3.45989982342e-06 1.41580661589e-06 -2.75755407288e-06 4.56493508477e-07 1.17529526825e-05 -1.40509827259e-05 3.74584917619e-05 -9.80158978991e-05 6.23944200999e-05 -0.00015833494282 8.54674757232e-05 -0.000203449169704 0.00010656372916 -0.000236383630748 0.000125582193013 -0.000259992012195 0.000142672258873 -0.000276566112706 0.000158101486622 -0.000287895045829 0.000172169373544 -0.000295371678495 0.000185168799754 -0.000300053639187 0.000197364740703 -0.000302723100604 0.000208984235166 -0.00030394600242 0.000220214417712 -0.00030412421116 0.000231205342358 -0.000303538741865 0.000242075160136 -0.000302384164161 0.000252916021625 -0.000300795040524 0.000263799741003 -0.000298865617235 0.000274782722835 -0.000296664119334 0.000285909976646 -0.00029424291215 0.000297218165694 -0.000291645548474 0.00030873765733 -0.00028891143038 0.000320493556918 -0.000286078730861 0.00033250585615 -0.000283186371214 0.000344789084953 -0.000280276062013 0.000357352102297 -0.000277395392012 0.000370198751218 -0.000274602562245 0.000383329955065 -0.000271972729364 0.00039674754239 -0.00026960527863 0.000410459744444 -0.000267630911859 0.000424488101649 -0.000266217285515 0.000438875402886 -0.000265571821218 0.000453694330123 -0.000265940364256 0.000469056139154 -0.000267599367915 0.000485118483032 -0.000270839314266 0.000502088311886 -0.000275932063113 0.000520213954539 -0.000283079667596 0.000539732266129 -0.000292293107446 0.00056080509127 -0.000303368641423 -0.000314708521883 -3.0370939102e-08 2.25398393473e-06 -6.26449757102e-08 2.25689859984e-06 -8.88681027578e-08 2.20505114784e-06 -1.00076183067e-07 2.17566173051e-06 -1.3091736105e-07 2.18116470762e-06 -1.62199533461e-07 2.20400312964e-06 -1.77361421385e-07 2.23385153924e-06 -2.06208291777e-07 2.27210119365e-06 -2.66225727096e-07 2.18295616848e-06 -2.87056870429e-07 2.12154919523e-06 -3.55541698602e-07 2.18025871251e-06 -4.17951345412e-07 2.04266781757e-06 -4.18780060904e-07 2.06963596683e-06 -4.3471220069e-07 2.16705009113e-06 -5.14299442146e-07 2.19936452587e-06 -5.34555107073e-07 2.11583666957e-06 -5.59953150901e-07 2.17899875562e-06 -6.27231045144e-07 2.23339081439e-06 -6.6017133119e-07 2.14462990711e-06 -6.87584208297e-07 2.18789156852e-06 -7.68309805492e-07 2.20628875311e-06 -8.03400404959e-07 2.15014921231e-06 -8.64596219726e-07 2.2168171848e-06 -9.16278691506e-07 2.16118593831e-06 -9.90933912479e-07 2.18050049791e-06 -1.03818504739e-06 2.16852258741e-06 -1.11935991262e-06 2.16731555513e-06 -1.20734771142e-06 2.17074449128e-06 -1.29831247911e-06 2.16242368672e-06 -1.39405723447e-06 2.15901986193e-06 -1.47612462496e-06 2.19263922818e-06 -1.54665836497e-06 2.24102343507e-06 -1.76663289221e-06 2.28187209894e-06 -2.02623301942e-06 2.30070545648e-06 -2.26586029712e-06 2.23674630556e-06 -2.46613520528e-06 2.15558776778e-06 -2.65644341828e-06 2.07820591811e-06 -2.90794485122e-06 2.09565118519e-06 -3.27549284179e-06 2.16838498908e-06 -3.97182155534e-06 2.11213386742e-06 -6.52191570901e-06 3.00661759791e-06 1.82406913713e-05 -3.88136439164e-05 4.39615393332e-05 -0.000123736605391 6.84599288443e-05 -0.000182833204068 9.08100778164e-05 -0.000225799220156 0.000110937595983 -0.000256511074019 0.000128927146066 -0.00027798150028 0.000145014203726 -0.000292653115171 0.000159519675054 -0.000302400463262 0.000172775813984 -0.000308627763648 0.000185087963381 -0.000312365733175 0.000196718248638 -0.000314353329839 0.000207881038659 -0.000315108735199 0.000218745420567 -0.000314988535852 0.000229441295294 -0.000314234558696 0.000240066676876 -0.000313009488051 0.000250694753576 -0.000311423058897 0.000261379975468 -0.000309550780843 0.000272162909192 -0.000307446994219 0.000283073843365 -0.000305153787548 0.000294135183237 -0.000302706829386 0.000305362590046 -0.000300138778399 0.000316764843867 -0.000297480926044 0.000328342656081 -0.000294764124808 0.000340087072446 -0.000292020420076 0.000351978435667 -0.000289286696983 0.000363986897648 -0.00028661096717 0.000376075169275 -0.000284060946074 0.000388203726678 -0.000281733785428 0.000400338317076 -0.000279765458749 0.000412459536588 -0.000278338472746 0.000424574450021 -0.00027768671409 0.000436730801133 -0.000278096705069 0.000449034366338 -0.000279902913738 0.000461670756965 -0.000283475702244 0.000474929181344 -0.000289190479624 0.000489224851154 -0.000297375330356 0.000505083820483 -0.000308152132454 0.000523083748789 -0.000321368599747 -0.000334498602195 -2.37451771744e-08 2.27785887173e-06 -3.69769880258e-08 2.2701932242e-06 -8.56897270816e-08 2.25381436832e-06 -1.03030005259e-07 2.19304759631e-06 -1.20642413215e-07 2.19882181739e-06 -1.42883509175e-07 2.22629278181e-06 -1.55814288282e-07 2.24682726842e-06 -1.80092423497e-07 2.29641934485e-06 -2.42062283451e-07 2.2449692851e-06 -2.75085817021e-07 2.15460923658e-06 -3.03014343038e-07 2.20822247198e-06 -3.954710016e-07 2.13516455778e-06 -4.02677350702e-07 2.07688369789e-06 -4.13965787819e-07 2.17837944528e-06 -4.64317655043e-07 2.24976127192e-06 -5.05098062726e-07 2.15666214665e-06 -5.23571888539e-07 2.19751494729e-06 -5.55498697973e-07 2.26536175076e-06 -6.14251480718e-07 2.20342602065e-06 -6.43723741644e-07 2.21740260781e-06 -7.05675771962e-07 2.26828382657e-06 -7.44754550585e-07 2.18926785546e-06 -7.72067198735e-07 2.24416992328e-06 -8.44819906062e-07 2.23397865292e-06 -8.9899800362e-07 2.23471674294e-06 -9.57914419448e-07 2.22747926632e-06 -1.02505593731e-06 2.23449875443e-06 -1.09421312634e-06 2.23994822353e-06 -1.1771034574e-06 2.2453655087e-06 -1.25866194942e-06 2.24062934149e-06 -1.34699342293e-06 2.28102084133e-06 -1.38720068585e-06 2.28127926771e-06 -1.44704952969e-06 2.34177583214e-06 -1.49379587985e-06 2.34751605072e-06 -1.58053677655e-06 2.32355322348e-06 -1.67697057469e-06 2.25209993873e-06 -1.79819335942e-06 2.19950961951e-06 -1.87090968138e-06 2.16842710922e-06 -1.86062524226e-06 2.15821221702e-06 -2.11254380746e-06 2.36416028383e-06 -3.0822760082e-06 3.97624019233e-06 2.44384800195e-05 -6.63340935938e-05 4.96805255786e-05 -0.000148978539458 7.35452743525e-05 -0.000206697852098 9.50927929824e-05 -0.00024734665506 0.000114238662743 -0.000275656876035 0.000131205180976 -0.000294947962138 0.000146325829873 -0.000307773713136 0.000159971690512 -0.000316046275767 0.000172496589251 -0.000321152614182 0.000184207472219 -0.000324076567865 0.000195354850298 -0.00032550065845 0.000206134262227 -0.000325888097393 0.000216693159327 -0.000325547382217 0.000227139800317 -0.000324681148863 0.000237552065398 -0.000323421701433 0.000247985080088 -0.000321856021723 0.000258477248068 -0.000320042896055 0.000269054667363 -0.000318024360431 0.000279734081348 -0.000315833147593 0.000290524417969 -0.00031349711164 0.000301426802541 -0.000311041107863 0.000312432981409 -0.000308487049204 0.000323522554432 -0.000305853641569 0.000334660039735 -0.000303157848567 0.000345793167776 -0.000300419768638 0.000356853642278 -0.000297671386537 0.000367760984669 -0.000294968237188 0.00037842938067 -0.000292402136492 0.000388777028989 -0.000290113072427 0.000398737710116 -0.000288299136138 0.000408275004095 -0.000287224006092 0.00041740116207 -0.000287222871541 0.000426203396744 -0.0002887051501 0.000434883240563 -0.000292155540163 0.000443806762989 -0.000298113939338 0.000453569562914 -0.000307138189305 0.000465047487032 -0.000319630069826 0.00047942441504 -0.000335745615254 -0.000352274460922 -2.4627201641e-08 2.30244383004e-06 -4.84621715081e-08 2.29405522911e-06 -6.85568636908e-08 2.27395042314e-06 -8.34171011663e-08 2.20795287927e-06 -9.71371318275e-08 2.21258944753e-06 -1.16719384171e-07 2.24592184434e-06 -1.34811803319e-07 2.26496674059e-06 -1.54563295393e-07 2.31621999031e-06 -2.13239047439e-07 2.30368650835e-06 -2.58187705082e-07 2.19959652792e-06 -2.61952281768e-07 2.21202865992e-06 -3.56539528083e-07 2.22979068591e-06 -3.90823872805e-07 2.11120672678e-06 -3.85162867547e-07 2.1727640036e-06 -3.96266076667e-07 2.26091096201e-06 -4.66406142946e-07 2.2268449383e-06 -4.76017472383e-07 2.2071713442e-06 -4.87823512196e-07 2.27721299675e-06 -5.63620118838e-07 2.27926386148e-06 -5.89088645079e-07 2.24291370084e-06 -6.16879653326e-07 2.29611630161e-06 -6.76709360192e-07 2.2491375078e-06 -6.93725718516e-07 2.26122748344e-06 -7.64888647452e-07 2.30518025962e-06 -8.02364221072e-07 2.27223204735e-06 -8.7730854682e-07 2.3024624143e-06 -9.22204478484e-07 2.27943608377e-06 -9.8180583555e-07 2.2995935311e-06 -1.05814822934e-06 2.32175624358e-06 -1.12980754296e-06 2.31234220533e-06 -1.18796664143e-06 2.33923628764e-06 -1.24180631258e-06 2.33517929951e-06 -1.26378488809e-06 2.36381534699e-06 -1.25960845794e-06 2.34339866241e-06 -1.27477886759e-06 2.33878956219e-06 -1.30958452103e-06 2.28697639029e-06 -1.32056652761e-06 2.21056012584e-06 -1.22133374809e-06 2.06933230915e-06 -9.74173674312e-07 1.9111480005e-06 -5.55038579766e-07 1.94499676168e-06 1.10709040876e-06 2.31424897515e-06 2.91958200291e-05 -9.44228277312e-05 5.45997774489e-05 -0.000174382411898 7.78098703188e-05 -0.000229907854941 9.84330107602e-05 -0.00026796971897 0.000116548129196 -0.000293771931997 0.000132499685137 -0.000310899465461 0.000146702544268 -0.000321976525861 0.000159563875495 -0.000328907563158 0.000171444487486 -0.000333033183699 0.000182641107764 -0.000335273145279 0.00019338456287 -0.000336244070615 0.000203846879729 -0.000336350370304 0.000214151877535 -0.000335852335825 0.000224386074877 -0.000334915300985 0.000234608266577 -0.000333643847611 0.000244857117548 -0.000332104826097 0.000255156707835 -0.000330342439252 0.000265520238405 -0.00032838784272 0.000275952148441 -0.000326265008591 0.000286448644764 -0.000323993557633 0.000296996353287 -0.000321588765006 0.000307569003471 -0.000319059646718 0.00031812284954 -0.000316407433851 0.000328592433592 -0.000313627378197 0.000338888605016 -0.000310715885837 0.000348900154123 -0.000307682883428 0.000358499305331 -0.000304567340873 0.000367550292457 -0.000301453082761 0.000375919804948 -0.000298482558968 0.000383488674903 -0.000295867993005 0.000390165410908 -0.000293900750933 0.000395905342802 -0.000292962810863 0.000400741739502 -0.00029354156437 0.00040484524477 -0.000296258961687 0.000408617622582 -0.000301886362846 0.00041284575276 -0.000311366240484 0.000418764444573 -0.000325548911473 0.000427947309995 -0.000344928563723 -0.000366704525957 -2.25485910447e-08 2.32512566064e-06 -5.18140622572e-08 2.32339024831e-06 -5.33722305263e-08 2.27556230405e-06 -5.78411877852e-08 2.21247064522e-06 -7.79117707423e-08 2.23270769106e-06 -9.75475438786e-08 2.26560756666e-06 -1.18475440338e-07 2.28594565616e-06 -1.34024813259e-07 2.3318159273e-06 -1.77637959062e-07 2.34734564135e-06 -2.34698970073e-07 2.25670129734e-06 -2.44992935924e-07 2.22236257055e-06 -2.93502403859e-07 2.27834066628e-06 -3.71084677083e-07 2.18883313128e-06 -3.55944263001e-07 2.15766713502e-06 -3.53538912982e-07 2.2585511267e-06 -4.20476918803e-07 2.29383082258e-06 -4.37477532625e-07 2.22421669722e-06 -4.43569994409e-07 2.28334975075e-06 -4.99346859831e-07 2.33508546198e-06 -5.30972771803e-07 2.27458168647e-06 -5.43741118831e-07 2.30892580013e-06 -6.11086559456e-07 2.31652502028e-06 -6.34506534961e-07 2.28468657548e-06 -6.81304629816e-07 2.35201788198e-06 -7.32060855998e-07 2.32302614387e-06 -7.80044805278e-07 2.35048524959e-06 -8.25259786431e-07 2.32468929928e-06 -8.87683723402e-07 2.36205758844e-06 -9.44976996723e-07 2.37909337063e-06 -1.01230097211e-06 2.37971356528e-06 -1.06437580832e-06 2.3913634913e-06 -1.13057232515e-06 2.40143137035e-06 -1.18029549973e-06 2.41359566136e-06 -1.22770564176e-06 2.3908675714e-06 -1.25844012646e-06 2.36958522188e-06 -1.2858822686e-06 2.31449201276e-06 -1.27530654005e-06 2.20008781125e-06 -1.19813608207e-06 1.99223839978e-06 -9.68755580682e-07 1.68180834885e-06 -2.06854152182e-07 1.1831710677e-06 8.28935573443e-06 -6.1818880925e-06 3.46497428183e-05 -0.000120783064891 5.93153179954e-05 -0.000199047839739 8.14435648134e-05 -0.000252035985893 0.000100921545426 -0.000287447611311 0.000117934849472 -0.000310785168428 0.000132888800412 -0.000325853362131 0.000146237707803 -0.000335325387013 0.000158400116062 -0.00034106992996 0.000169727151703 -0.000344360179873 0.00018049426173 -0.000346040217027 0.000190906263521 -0.000346656033878 0.000201108936747 -0.000346553005028 0.000211202173484 -0.000345945533168 0.000221251909345 -0.000344964997143 0.000231299716371 -0.000343691613841 0.000241369841412 -0.000342174909814 0.000251473951361 -0.000340446506613 0.000261613947631 -0.000338527795569 0.000271783155562 -0.000336434171585 0.000281965703411 -0.000334176059283 0.000292133543164 -0.000331756556753 0.000302241049416 -0.000329167103324 0.000312218464461 -0.000326384797562 0.000321966629075 -0.000323375490306 0.000331355473987 -0.000320104678219 0.000340227493018 -0.000316554851378 0.000348405622385 -0.000312745423391 0.000355703587399 -0.000308751007563 0.000361936367913 -0.000304715311982 0.000366929202732 -0.00030086081905 0.00037052485117 -0.000297496414745 0.000372592269461 -0.000295030266035 0.000373042957985 -0.000293992233233 0.000371880045186 -0.000295096141927 0.000369311810851 -0.000299318006175 0.000366094697512 -0.000308149336504 0.000363980770451 -0.000323435142941 0.000366056448137 -0.000347004562522 -0.00037280996325 -1.19793379122e-08 2.33707280396e-06 -2.79651210386e-08 2.33940686069e-06 -3.34051639082e-08 2.28104783359e-06 -5.54658383753e-08 2.23457706457e-06 -7.48479096179e-08 2.25213790714e-06 -8.86785446854e-08 2.27948837706e-06 -1.04607757823e-07 2.30192505493e-06 -1.11378402935e-07 2.33863874078e-06 -1.38386619977e-07 2.37440289169e-06 -2.00590194726e-07 2.31894888456e-06 -2.32443391077e-07 2.25425776703e-06 -2.28285745931e-07 2.27422782464e-06 -3.21053369107e-07 2.28164329364e-06 -3.40056430629e-07 2.17671483304e-06 -3.21666141412e-07 2.24020959579e-06 -3.48917965288e-07 2.32112999021e-06 -4.01229969178e-07 2.2765743755e-06 -3.99734494907e-07 2.28189964683e-06 -4.13524600538e-07 2.34892123494e-06 -4.73193860766e-07 2.33429347696e-06 -4.82836152529e-07 2.31861045536e-06 -5.32029112167e-07 2.36575905036e-06 -5.70223094897e-07 2.32291957111e-06 -5.77642967351e-07 2.35947659506e-06 -6.48985267578e-07 2.39440557843e-06 -6.80359353734e-07 2.38189589117e-06 -7.43585826557e-07 2.3879525022e-06 -7.90985827811e-07 2.40949533092e-06 -8.44123738758e-07 2.43227053003e-06 -9.22376881905e-07 2.45800817303e-06 -9.85706140074e-07 2.45473744583e-06 -1.05835260951e-06 2.47412654636e-06 -1.12641085276e-06 2.48170466251e-06 -1.19845913412e-06 2.46296729408e-06 -1.27860848401e-06 2.44979571522e-06 -1.35635105097e-06 2.39230681123e-06 -1.45105321689e-06 2.29486495722e-06 -1.58015854012e-06 2.12140907685e-06 -1.76136949794e-06 1.86307819018e-06 -2.21908237054e-06 1.64097742716e-06 1.45557534363e-05 -2.29560128124e-05 3.98209829554e-05 -0.000146048087913 6.33735525126e-05 -0.000222600255872 8.42371787441e-05 -0.000272899496895 0.000102488701463 -0.000305699049238 0.000118407053392 -0.000326703456074 0.000132428256167 -0.000339874514155 0.000145015146522 -0.00034791223507 0.000156577419797 -0.000352632165614 0.000167444040887 -0.000355226766145 0.000177861956604 -0.000356458098735 0.0001880067849 -0.000356800828689 0.000197997718368 -0.0003565439044 0.000207912091181 -0.000355859871643 0.000217797444881 -0.000354850315451 0.0002276805231 -0.000353574656134 0.000237573398492 -0.000352067748023 0.000247477233451 -0.000350350303562 0.000257384134885 -0.000348434657462 0.000267277374232 -0.000346327370104 0.000277129473828 -0.000344028116117 0.000286897246401 -0.000341524284736 0.000296513928083 -0.000338783738274 0.000305880616008 -0.000335751436894 0.000314860593419 -0.00033235541798 0.000323279503808 -0.000328523538386 0.000330932024542 -0.000324207324219 0.000337593123214 -0.000319406475645 0.00034303040778 -0.000314188255535 0.000347013925065 -0.000308698800378 0.000349320585045 -0.000303167480137 0.00034973103328 -0.000297906884704 0.000348018260895 -0.000293317521567 0.000343923232942 -0.000289897318389 0.000337123661339 -0.00028829650137 0.000327162187582 -0.000289356756396 0.000313495065711 -0.000294482294256 0.000295635370406 -0.000305575890925 0.00027855154206 -0.00032992084005 -0.000389261349599 -3.13677743559e-09 2.34034379575e-06 -4.8326785011e-09 2.34117648488e-06 -6.07241695017e-09 2.28234101834e-06 -6.29318410178e-08 2.29148644843e-06 -7.5905100882e-08 2.26516074956e-06 -8.06369620225e-08 2.28427124971e-06 -8.8596703908e-08 2.30993939539e-06 -8.74373462075e-08 2.33753277236e-06 -1.02690374727e-07 2.3897073191e-06 -1.59407473012e-07 2.37571489828e-06 -2.07877514334e-07 2.30277344232e-06 -2.08530665679e-07 2.27492465517e-06 -2.4566552068e-07 2.31882506616e-06 -3.15827160733e-07 2.24692305014e-06 -2.98453550038e-07 2.2228819654e-06 -2.86568720441e-07 2.30929371986e-06 -3.48068588789e-07 2.33812164855e-06 -3.58198615857e-07 2.29207691845e-06 -3.49093327562e-07 2.33986114174e-06 -4.05682480013e-07 2.39092723999e-06 -4.25675429941e-07 2.33864591024e-06 -4.35163204423e-07 2.37528741403e-06 -4.94947165289e-07 2.38274397333e-06 -5.13912649859e-07 2.37847967075e-06 -5.60137530943e-07 2.44066835174e-06 -6.04338248909e-07 2.42613312322e-06 -6.50568260454e-07 2.4342183669e-06 -6.99333257315e-07 2.45829612582e-06 -7.59378233333e-07 2.49235019838e-06 -8.2570457781e-07 2.52437007501e-06 -8.96851225561e-07 2.52592024587e-06 -9.78843787604e-07 2.5561570181e-06 -1.06348681315e-06 2.56638616856e-06 -1.16687486031e-06 2.56639626671e-06 -1.28381709982e-06 2.5667806418e-06 -1.42542314606e-06 2.53397291758e-06 -1.59984913767e-06 2.46935176537e-06 -1.83050151328e-06 2.35210823956e-06 -2.13489641798e-06 2.16747512994e-06 -3.00872037799e-06 2.51496854434e-06 2.07019965928e-05 -4.66664743839e-05 4.39122598752e-05 -0.000169258207561 6.61660757636e-05 -0.000244853953692 8.58818242635e-05 -0.000292615153534 0.000103026807536 -0.00032284396178 0.000117966345827 -0.000341642939312 0.000131175823981 -0.000353083947893 0.000143119546284 -0.00035985591982 0.000154189702715 -0.000363702288936 0.000164687606001 -0.000365724638461 0.000174829405664 -0.000366599868752 0.000184761745667 -0.000366733138983 0.000194579111075 -0.000366361240099 0.000204338965369 -0.000365619695336 0.000214073302064 -0.000364584621057 0.000223796662571 -0.000363297984372 0.000233511165998 -0.000361782218411 0.000243209242745 -0.000360048345862 0.000252874533628 -0.000358099912739 0.0002624811444 -0.000355933943487 0.000271990239318 -0.000353537171949 0.000281342641545 -0.000350876645666 0.000290448091624 -0.000347889145122 0.000299174883955 -0.000344478184061 0.00030734488335 -0.000340525371 0.000314737093739 -0.000335915702088 0.000321099223915 -0.000330569407064 0.000326163440932 -0.000324470648384 0.000329661213936 -0.000317685984057 0.000331332557704 -0.000310370116513 0.000330926406026 -0.000302761311718 0.000328188601563 -0.000295169100268 0.000322834597067 -0.000287963582165 0.000314492457433 -0.000281555203051 0.000302602392401 -0.000276406614835 0.000286128140201 -0.000272882492427 0.000263001451739 -0.000271355973252 0.00022740290966 -0.000269977543085 0.000163957265344 -0.000266475806815 -0.00022530438457 -5.06661135874e-09 2.34538223724e-06 -1.12674890753e-08 2.34740972716e-06 -5.77920997041e-09 2.27689968821e-06 -3.91118630228e-08 2.32487133357e-06 -6.08980824491e-08 2.28699750105e-06 -6.58562432379e-08 2.28928349789e-06 -6.88381005218e-08 2.31297693617e-06 -6.75196689799e-08 2.33627101132e-06 -7.10348180559e-08 2.39327898679e-06 -1.06937521621e-07 2.4116696106e-06 -1.65621711716e-07 2.36150510191e-06 -1.94914669548e-07 2.30426377683e-06 -1.82517166208e-07 2.30647367306e-06 -2.46278328879e-07 2.31073090666e-06 -2.78951527786e-07 2.2556021207e-06 -2.46472290009e-07 2.27686230434e-06 -2.59277154099e-07 2.3509767528e-06 -3.15474923762e-07 2.34832116028e-06 -2.97976411148e-07 2.32240967822e-06 -3.0971925592e-07 2.40271658834e-06 -3.67133553053e-07 2.39610152318e-06 -3.68562137223e-07 2.37675844024e-06 -4.14553138483e-07 2.42877511144e-06 -4.49037503764e-07 2.41300358978e-06 -4.59768334777e-07 2.451436986e-06 -5.11821513739e-07 2.47822299917e-06 -5.55090392063e-07 2.47752262475e-06 -6.08100147088e-07 2.51133936046e-06 -6.56096661097e-07 2.54037906249e-06 -7.22035486693e-07 2.59033929932e-06 -8.08091861195e-07 2.61200626235e-06 -8.89655457236e-07 2.63774972901e-06 -9.81725453998e-07 2.65848502577e-06 -1.10358570201e-06 2.68827984795e-06 -1.24519888457e-06 2.70843039137e-06 -1.41698479308e-06 2.70579288611e-06 -1.61788258049e-06 2.67028808896e-06 -1.89076865509e-06 2.62501656287e-06 -2.19079085197e-06 2.46752886408e-06 -3.28906529265e-06 3.61326692847e-06 2.16427274212e-05 -7.15981877058e-05 4.58015100987e-05 -0.000193416931732 6.74358661807e-05 -0.000266488248781 8.62787507258e-05 -0.000311457984288 0.00010253388752 -0.000339099052808 0.000116671339214 -0.000355780353138 0.000129219020018 -0.000365631596076 0.000140647923202 -0.000371284794402 0.000151332228204 -0.000374386567265 0.000161545159659 -0.000375937544612 0.000171473331328 -0.000376528015091 0.000181237054318 -0.000376496836664 0.000190909435015 -0.000376033594598 0.000200531461869 -0.000375241695478 0.00021012264917 -0.000374175780468 0.000219687896646 -0.000372863203209 0.000229221396319 -0.000371315688118 0.000238708384536 -0.000369535303078 0.00024812514616 -0.000367516641769 0.000257437306809 -0.000365246070076 0.00026659464139 -0.000362694470464 0.000275520616352 -0.000359802582847 0.000284098389526 -0.000356466878347 0.000292159201728 -0.000352538955307 0.000299479746954 -0.000347845873831 0.000305791283188 -0.000342227195881 0.00031079785564 -0.000335575936706 0.000314197487719 -0.000327870236018 0.000315699816639 -0.00031918827401 0.000315035384258 -0.000309705642489 0.000311953897089 -0.000299679819587 0.000306208860993 -0.000289424070034 0.00029752668693 -0.000279281469071 0.000285543516898 -0.000269572131758 0.000269709968663 -0.0002605730826 0.000249015190776 -0.000252187953602 0.000221862184158 -0.000244203110932 0.000183839322899 -0.000231955134523 0.000128937775338 -0.000211574614218 -9.63667131215e-05 -8.13129511399e-09 2.35365091557e-06 -2.04166249745e-08 2.35976868088e-06 -3.25927414812e-08 2.28913602498e-06 -8.60250213491e-09 2.30093497357e-06 -4.11397965419e-08 2.31959181686e-06 -4.89787596073e-08 2.29717959186e-06 -4.92755700655e-08 2.31333255819e-06 -4.90255099175e-08 2.33608109944e-06 -3.75568877265e-08 2.38186875864e-06 -5.12412489379e-08 2.42540985438e-06 -1.03914199976e-07 2.41423036364e-06 -1.52038061898e-07 2.35243546917e-06 -1.55856424077e-07 2.31033992906e-06 -1.64692358436e-07 2.31961500792e-06 -2.34338413498e-07 2.32529653096e-06 -2.27816401657e-07 2.27038947815e-06 -1.98311317984e-07 2.3215204622e-06 -2.46987520602e-07 2.39704877876e-06 -2.57901252845e-07 2.3333711213e-06 -2.43176119998e-07 2.38803571321e-06 -2.93565202665e-07 2.44653660911e-06 -3.13424704816e-07 2.39665940214e-06 -3.25264011422e-07 2.44065652706e-06 -3.61800397015e-07 2.44957983337e-06 -3.83708125959e-07 2.47338380736e-06 -4.14472571407e-07 2.50902449358e-06 -4.64689551865e-07 2.52777539029e-06 -4.9984701879e-07 2.54652992274e-06 -5.52878516212e-07 2.59344173809e-06 -6.2764932695e-07 2.66513847601e-06 -6.93683130155e-07 2.67806643385e-06 -7.65970638811e-07 2.71005883339e-06 -8.62609394207e-07 2.75514073533e-06 -9.96854893224e-07 2.82254184433e-06 -1.1484673459e-06 2.86005020814e-06 -1.3382252876e-06 2.89556492908e-06 -1.59122099302e-06 2.923299569e-06 -1.90588706585e-06 2.93969008216e-06 -2.17681274355e-06 2.73845110037e-06 -3.04234804456e-06 4.47872855874e-06 2.19617067121e-05 -9.66023360053e-05 4.62519491132e-05 -0.000217707226195 6.7456175195e-05 -0.000287692500643 8.56135945292e-05 -0.000329615409323 0.000101154203204 -0.000354639659095 0.000114651508843 -0.000369277649944 0.000126678345021 -0.000377658420521 0.000137709802129 -0.000382316236672 0.00014810129541 -0.000384778044112 0.000158099002412 -0.000385935233148 0.00016786277325 -0.000386291766307 0.00017749030394 -0.000386124346082 0.000187037181321 -0.000385580449726 0.000196531414096 -0.000384735904543 0.000205982933397 -0.00038362727515 0.000215389269615 -0.000382269513443 0.000224738398136 -0.000380664789675 0.000234009616754 -0.000378806493312 0.000243172722026 -0.000376679717465 0.000252185327392 -0.000374258644222 0.000260985431783 -0.000371494542353 0.000269477105007 -0.000368294221657 0.000277512932687 -0.00036450267121 0.000284882232048 -0.000359908218451 0.000291313043524 -0.000354276650228 0.000296489207627 -0.00034740332276 0.000300076723866 -0.000339163414476 0.000301750637218 -0.000329544108927 0.000301215043387 -0.000318652627648 0.000298212282853 -0.000306702845232 0.000292520875607 -0.000293988361085 0.000283942265061 -0.00028084545179 0.000272279217041 -0.000267618388677 0.000257284348145 -0.000254577238395 0.000238587962172 -0.00024187667396 0.000215317660986 -0.000228917484313 0.000185814343878 -0.00021469983855 0.00014170897777 -0.000187849661363 7.32576335695e-05 -0.000143123081567 -2.31089971602e-05 -5.14309187629e-09 2.35876889893e-06 -1.13996029883e-08 2.36606687524e-06 -4.92086150485e-08 2.32699557575e-06 -1.57678345893e-08 2.26755280146e-06 -2.76325867765e-08 2.33151630587e-06 -3.19745474572e-08 2.30158103492e-06 -2.87918169917e-08 2.31021200785e-06 -2.61646560987e-08 2.33351586893e-06 -8.31329569004e-09 2.36407938008e-06 -5.41475468957e-09 2.42257169455e-06 -3.03922809024e-08 2.43926386234e-06 -8.81727515255e-08 2.41026871679e-06 -1.22618382975e-07 2.34483481389e-06 -1.16264276017e-07 2.31331101914e-06 -1.43213647345e-07 2.35229709857e-06 -1.97473300058e-07 2.32469777397e-06 -1.75270252618e-07 2.29936823772e-06 -1.56593668023e-07 2.37842216727e-06 -2.03926488422e-07 2.38075096848e-06 -1.99714168396e-07 2.38387097135e-06 -1.9673250171e-07 2.44359897836e-06 -2.36800423815e-07 2.43677120784e-06 -2.45763126675e-07 2.44966132068e-06 -2.70460996621e-07 2.47431900668e-06 -2.96093277968e-07 2.49905515312e-06 -3.18198587262e-07 2.53116786306e-06 -3.552063356e-07 2.56481853427e-06 -3.94332169164e-07 2.5856900939e-06 -4.49831131452e-07 2.64897273067e-06 -4.94749550019e-07 2.7100874458e-06 -5.47402690206e-07 2.73074274855e-06 -6.22723691364e-07 2.78539910611e-06 -7.24641367945e-07 2.85707130065e-06 -8.5003355315e-07 2.94793376303e-06 -1.00527805347e-06 3.01529492352e-06 -1.21068351071e-06 3.10095756649e-06 -1.50005746598e-06 3.21265611386e-06 -1.8082381459e-06 3.24787142164e-06 -2.08712774563e-06 3.01730044991e-06 -2.40530081494e-06 4.79691861198e-06 2.18975563256e-05 -0.000120905589268 4.58782930291e-05 -0.000241688089187 6.65894429402e-05 -0.000308403712972 8.41388697661e-05 -0.000347164873791 9.90841064383e-05 -0.000369584916907 0.000112068105768 -0.000382261660163 0.00012368931084 -0.000389279627357 0.000134418525941 -0.000393045447654 0.000144590309949 -0.000394949818717 0.000154425136645 -0.000395770047165 0.000164059317104 -0.000395925930962 0.000173571812413 -0.000395636823691 0.000183004401999 -0.00039501301956 0.000192375250661 -0.000394106732198 0.000201687165376 -0.0003929391673 0.000210932148899 -0.000391514473367 0.000220093299691 -0.000389825915481 0.000229144930439 -0.000387858098026 0.000238050973417 -0.000385585733003 0.000246761263092 -0.000382968905409 0.000255201194743 -0.000379934444003 0.000263252542611 -0.000376345538988 0.000270732287819 -0.000371982384818 0.000277382394093 -0.00036655829403 0.000282879327683 -0.000359773551812 0.000286861529348 -0.000351385493179 0.000288964779041 -0.000341266629359 0.000288854035304 -0.000329433319314 0.000286244178091 -0.000316042729569 0.00028090751265 -0.000301366108145 0.000272669866166 -0.000285750651227 0.000261400109605 -0.000269575599387 0.000247002679701 -0.000253220869099 0.000229403604214 -0.000236977954 0.000208604362015 -0.000221077083744 0.000184215369147 -0.000204528230916 0.000155194909042 -0.000185678981414 0.000109570426506 -0.000142224590372 2.35933974708e-05 -5.71455327219e-05 4.84515377208e-07 -3.10198692883e-09 2.36201385242e-06 -8.01809954689e-09 2.37105973474e-06 -4.55288028887e-08 2.3645713338e-06 -4.22512172283e-08 2.26433283774e-06 -8.21335641839e-09 2.29753703726e-06 -7.66039668509e-09 2.30109096834e-06 -2.75657963389e-09 2.30537039814e-06 2.04162392799e-09 2.32878154197e-06 1.34975294342e-08 2.3526870484e-06 3.0295604457e-08 2.40583570507e-06 2.69439836509e-08 2.44267564439e-06 -9.44983626271e-09 2.4467193154e-06 -6.09614330036e-08 2.39640016255e-06 -8.55644143838e-08 2.33796506885e-06 -7.11512219325e-08 2.33793431996e-06 -1.18330820271e-07 2.37192952297e-06 -1.42255975887e-07 2.32334310787e-06 -1.05439806576e-07 2.34165568524e-06 -1.1901168437e-07 2.39437319495e-06 -1.465315673e-07 2.41143794461e-06 -1.30161876491e-07 2.42727665249e-06 -1.46146160384e-07 2.45280054581e-06 -1.67671434092e-07 2.47123062548e-06 -1.80021364605e-07 2.48671118763e-06 -1.98095594546e-07 2.51717050578e-06 -2.23475984834e-07 2.55658811627e-06 -2.47908891082e-07 2.58929064471e-06 -2.94089808612e-07 2.63190911399e-06 -3.24305861244e-07 2.67922608031e-06 -3.49855195498e-07 2.73566939085e-06 -4.02502803458e-07 2.78341714466e-06 -4.58359389603e-07 2.84127468847e-06 -5.37385398443e-07 2.9361016732e-06 -6.30199073528e-07 3.04075212754e-06 -7.63621458459e-07 3.14869278429e-06 -9.66225165728e-07 3.30354376007e-06 -1.25291654196e-06 3.49933610745e-06 -1.61281332301e-06 3.60784096977e-06 -2.21013992898e-06 3.61472813905e-06 -2.17681518939e-06 4.76334794346e-06 2.1330307949e-05 -0.000144412804051 4.48449147684e-05 -0.000265202849948 6.5067115182e-05 -0.00032862600941 8.20796930946e-05 -0.000364177514065 9.6522103504e-05 -0.000384027370334 0.000109088093425 -0.000394827677465 0.000120388650812 -0.000400580200823 0.000130883858405 -0.000403540661078 0.000140886121882 -0.000404952080953 0.0001505919 -0.000405475817892 0.000160117075655 -0.000405451095261 0.000169525310448 -0.000405045043608 0.000178847669933 -0.000404335361986 0.000188094967371 -0.000403354010415 0.000197264755453 -0.000402108934792 0.000206344867509 -0.000400594563266 0.000215314481647 -0.000398795506371 0.000224143589509 -0.000396687181332 0.000232790645315 -0.00039423276329 0.000241197694646 -0.000391375928111 0.000249276150825 -0.000388012872833 0.000256881548118 -0.00038395090825 0.000263789092752 -0.000378889902248 0.000269687615658 -0.000372456790137 0.000274200050182 -0.000364285962626 0.000276923489736 -0.000354108907111 0.000277473502378 -0.000341816610003 0.000275519232567 -0.000327479022238 0.000270802653911 -0.000311326081665 0.000263141853621 -0.000293705233208 0.000252421845384 -0.000275030564778 0.000238577126462 -0.000255730752728 0.000221569982209 -0.000236213536502 0.00020136359457 -0.000216771307544 0.000178092723619 -0.000197805891498 0.000151488976391 -0.000177924106749 0.000122782637268 -0.000156972253102 5.03458715308e-05 -6.97874422544e-05 -1.04206785088e-06 -5.75742037452e-06 -5.57495492304e-07 -9.1657406764e-10 2.36291058302e-06 -8.52934955739e-09 2.37871516884e-06 -1.68850028426e-08 2.37297949776e-06 -4.41579256297e-08 2.29165945539e-06 -1.27127792439e-08 2.26614975517e-06 2.35251561942e-09 2.28608487986e-06 1.97971783482e-08 2.28798984909e-06 2.97271877762e-08 2.3189167962e-06 3.54710763665e-08 2.34700827056e-06 5.93776930737e-08 2.38199397778e-06 6.64210232962e-08 2.43569606015e-06 6.51600982044e-08 2.44804022067e-06 1.90408169077e-08 2.44257583745e-06 -3.0340718359e-08 2.38739873433e-06 -4.13376154342e-08 2.34898292651e-06 -3.32130361444e-08 2.36385594356e-06 -7.3178433106e-08 2.36335969914e-06 -6.83311587147e-08 2.33685906827e-06 -4.41583671097e-08 2.3702513185e-06 -5.48205080894e-08 2.42215110533e-06 -7.16442523369e-08 2.44414869381e-06 -6.63139588675e-08 2.44751733999e-06 -7.61967081822e-08 2.48115851092e-06 -9.05668735026e-08 2.50112560335e-06 -1.06630398863e-07 2.53327768374e-06 -1.18475677585e-07 2.56847680252e-06 -1.43988175663e-07 2.61484604101e-06 -1.61751838998e-07 2.64971472836e-06 -1.79846879052e-07 2.69736087059e-06 -1.9210142743e-07 2.74795862874e-06 -2.21480287981e-07 2.81282444097e-06 -2.55576094507e-07 2.87538644152e-06 -2.99287711991e-07 2.97982432139e-06 -3.52618158333e-07 3.09406827056e-06 -4.49119704612e-07 3.24518702532e-06 -5.93118037936e-07 3.44750876102e-06 -7.37582283816e-07 3.64388991924e-06 -1.0187693334e-06 3.88908391165e-06 -1.58841639586e-06 4.18436279585e-06 -3.16525935837e-06 6.34022872537e-06 1.99045749047e-05 -0.000167482932765 4.32223818156e-05 -0.000288520798804 6.31161684475e-05 -0.000348519884167 7.96800539919e-05 -0.000380741460655 9.36793153589e-05 -0.000398026674429 0.000105880620554 -0.000407029012018 0.000116907922738 -0.000411607520177 0.000127206731437 -0.000413839477727 0.000137065794695 -0.000414811144096 0.000146658462925 -0.000415068480405 0.000156082339749 -0.000414874961605 0.000165388214655 -0.000414350904942 0.000174598606329 -0.000413545737311 0.000183718680534 -0.000412474066511 0.000192741983616 -0.00041113221795 0.00020165306492 -0.000409505623448 0.000210427790212 -0.00040757020916 0.000219032233552 -0.000405291601219 0.000227419539255 -0.000402620044454 0.000235523701164 -0.000399480064744 0.00024324010341 -0.000395729248994 0.000250392857965 -0.000391103636819 0.000256708100978 -0.000385205119421 0.000261815749588 -0.00037756441483 0.000265284749544 -0.000367754939332 0.000266677206741 -0.000355501337978 0.00026560045478 -0.000340739838274 0.000261742879541 -0.000323621387517 0.000254889176355 -0.000304472323592 0.000244918995313 -0.000283734986765 0.00023179392281 -0.000261905337994 0.00021553475265 -0.000239471501091 0.000196171699188 -0.000216850314854 0.000173616946117 -0.000194216311563 0.000147379692623 -0.00017156842946 0.00011249846641 -0.000143042755131 5.98688602105e-05 -0.000104342443493 2.52746982708e-06 -1.24459591458e-05 -5.96288465372e-07 -2.63358252743e-06 -1.15369947746e-06 8.47168215452e-09 2.35457981684e-06 6.04309186195e-09 2.38122369635e-06 1.5406501974e-08 2.363678819e-06 -2.44960365793e-08 2.33161925487e-06 -4.00670076811e-08 2.28177645921e-06 -1.33907308274e-08 2.25946975582e-06 2.85974844353e-08 2.24606423729e-06 4.99727113443e-08 2.2976065376e-06 5.9633065237e-08 2.33741411322e-06 7.82096624177e-08 2.36348379699e-06 1.03497145183e-07 2.41047280791e-06 1.08088332654e-07 2.44351230107e-06 1.02079991015e-07 2.44864321356e-06 5.22962728521e-08 2.43723930642e-06 7.26016679127e-09 2.3940713398e-06 1.31998702898e-08 2.3579691534e-06 1.3691694314e-08 2.36292045278e-06 -9.69024329312e-09 2.36029348436e-06 1.21233794852e-09 2.35940046325e-06 2.83211026742e-08 2.39509455638e-06 2.43088158268e-08 2.44821171175e-06 5.94831016288e-09 2.46592649628e-06 1.3055979183e-08 2.47409855887e-06 5.16035326836e-09 2.50906848778e-06 -6.20919477799e-09 2.54469506328e-06 -8.80683786248e-09 2.57112157861e-06 -1.22983937672e-08 2.61838433526e-06 -1.4242665563e-08 2.65170484974e-06 -1.85590624294e-08 2.7017209311e-06 -2.2639444676e-08 2.75208017965e-06 -4.01411581183e-08 2.83036016588e-06 -6.43771636745e-08 2.89964842922e-06 -6.94479953936e-08 2.98490857601e-06 -8.00670200221e-08 3.10470154791e-06 -1.10153606313e-07 3.2752468077e-06 -7.23719527861e-08 3.40975956525e-06 1.44159236484e-08 3.557075323e-06 1.81878432625e-07 3.7216739851e-06 3.75926644831e-07 3.99035645199e-06 -7.34081422521e-06 1.40572321934e-05 1.91823093532e-05 -0.000194006066446 4.1753344938e-05 -0.000311091826691 6.11760745273e-05 -0.000367942618505 7.72505568372e-05 -0.000396815955367 9.07786772048e-05 -0.000411554808543 0.000102604914057 -0.00041885525975 0.000113362067385 -0.000422364679947 0.000123471442104 -0.000423948853516 0.000133192180186 -0.000424531878648 0.000142672734913 -0.000424549027154 0.000151992838932 -0.000424195054412 0.000161191570341 -0.000423549622122 0.00017028409408 -0.000422638244796 0.000179270899446 -0.00042146085359 0.000188142230435 -0.000420003529296 0.000196879850415 -0.00041824322225 0.000205456635281 -0.000416146971791 0.000213834934404 -0.000413669876901 0.000221962555133 -0.000410747640837 0.00022976492279 -0.000407282407225 0.000237118533369 -0.000403082833332 0.00024380949062 -0.000397794568023 0.000249506562961 -0.000390902165191 0.000253775514871 -0.000381833344468 0.000256132972209 -0.000370112375188 0.000256115040324 -0.000355483395026 0.000253334568464 -0.000337959335132 0.000247513802272 -0.000317800616328 0.000238492594946 -0.000295451073161 0.000226220679327 -0.000271462968715 0.000210743684647 -0.000246428370449 0.0001921970641 -0.00022092475884 0.000170812196294 -0.0001954653447 0.000146876469027 -0.00017028047757 0.00012011824165 -0.00014481007193 8.26623801222e-05 -0.000105586828915 1.82493383519e-05 -3.99293814706e-05 3.79816445423e-06 2.00525217069e-06 1.03145775766e-06 1.33271745721e-07 -1.22223225849e-07 2.33453524981e-08 2.33122653706e-06 2.98969444736e-08 2.37471941621e-06 3.03853619734e-08 2.36324709873e-06 3.73103031877e-09 2.35833097524e-06 -3.43613071915e-08 2.31992634005e-06 -2.70628217431e-08 2.25222712096e-06 1.73211368797e-08 2.20173896656e-06 5.16806806862e-08 2.2633101357e-06 7.41429754412e-08 2.31501764011e-06 9.03736499946e-08 2.34731939805e-06 1.23035391886e-07 2.37787826899e-06 1.36939108269e-07 2.42967351354e-06 1.53877718571e-07 2.43176785737e-06 1.38450810556e-07 2.45272625877e-06 9.93129893279e-08 2.43326761206e-06 6.3222601489e-08 2.39411443482e-06 7.70894119449e-08 2.34910854615e-06 7.61301668558e-08 2.36130687074e-06 6.45353749354e-08 2.37104952963e-06 8.04876798405e-08 2.37919469304e-06 1.11703006909e-07 2.41704922347e-06 1.10755385719e-07 2.46692555851e-06 9.86871435791e-08 2.48621780274e-06 1.03601160877e-07 2.50420590269e-06 1.12442701523e-07 2.53590408448e-06 1.16460951876e-07 2.5671540304e-06 1.26432627219e-07 2.6084629375e-06 1.25352811698e-07 2.65283469744e-06 1.33813241268e-07 2.69331020357e-06 1.23644529622e-07 2.76229580366e-06 1.33679991235e-07 2.82036659879e-06 1.38817859107e-07 2.89454688605e-06 1.49388788685e-07 2.97437219586e-06 1.58509230866e-07 3.09558880671e-06 2.13221027913e-07 3.22056731878e-06 3.38338867867e-07 3.28459330706e-06 5.41244637885e-07 3.35419997592e-06 9.76175466124e-07 3.28677335234e-06 2.00971021024e-06 2.95720273021e-06 -1.51425006165e-05 3.12102296901e-05 1.85912811223e-05 -0.000227739660561 4.13152768716e-05 -0.000333815709443 5.98069264599e-05 -0.000386434209656 7.50724985033e-05 -0.000412081497787 8.79826627699e-05 -0.0004244649577 9.93688210208e-05 -0.000430241408695 0.000109828102076 -0.000432823953224 0.000119735325666 -0.000433856068718 0.000129309271757 -0.000434105814565 0.000138669534401 -0.000433909277783 0.000147877222363 -0.000433402728214 0.000156960067567 -0.000432632451524 0.000165926463735 -0.000431604623355 0.000174772719668 -0.000430307090633 0.00018348612857 -0.00042871691779 0.000192045906413 -0.000426802978598 0.000200422066382 -0.000424523108955 0.00020857326971 -0.000421821056422 0.000216441794658 -0.000418616141002 0.000223943724778 -0.00041478431132 0.000230932831838 -0.000410071914075 0.000237149076963 -0.000404010785335 0.000242194820045 -0.00039594788352 0.000245567648756 -0.000385206149699 0.000246736322199 -0.000371281034798 0.000245222959379 -0.000353970014043 0.000240661554665 -0.000333397938154 0.000232823330498 -0.000309962367504 0.000221613447532 -0.000284241162316 0.000207051052206 -0.000256900611795 0.000189239268322 -0.000228616484369 0.000168350137806 -0.000200035669197 0.000144694851205 -0.00017181002577 0.000118977521784 -0.000144563042995 9.26267716499e-05 -0.000118459349609 3.75146524638e-05 -5.04747098121e-05 2.27111426363e-07 -2.64181973588e-06 9.5263078188e-07 1.27979480884e-06 5.21149425643e-07 5.6475986666e-07 3.98959428551e-07 3.64401119858e-08 2.29492623658e-06 4.73686892852e-08 2.36387550997e-06 4.25517601039e-08 2.36813235532e-06 3.62459884379e-08 2.36469880752e-06 1.03830139619e-08 2.34584741857e-06 -1.19078127776e-08 2.27457486546e-06 -4.83553487233e-09 2.19472440313e-06 3.90991431976e-08 2.21943667622e-06 7.58053200211e-08 2.27837719038e-06 1.02762258832e-07 2.32043067347e-06 1.30410092119e-07 2.35029869451e-06 1.68556925187e-07 2.39159440288e-06 1.77454678132e-07 2.42293605075e-06 1.97111816937e-07 2.43313368402e-06 1.84672221708e-07 2.44576923639e-06 1.58539583256e-07 2.42030703899e-06 1.35403629554e-07 2.37230116352e-06 1.49026676108e-07 2.34774037486e-06 1.54279975291e-07 2.36585125636e-06 1.52795291947e-07 2.38073456544e-06 1.71587459691e-07 2.39831016723e-06 2.01677183068e-07 2.43689040792e-06 2.08626296588e-07 2.47932274182e-06 2.09813835374e-07 2.50307156865e-06 2.29143603935e-07 2.51662744539e-06 2.4860514354e-07 2.54774503088e-06 2.52940117917e-07 2.60418208717e-06 2.67868523867e-07 2.63796062851e-06 2.73055457194e-07 2.68817635135e-06 2.94610789319e-07 2.74079114754e-06 3.12216735897e-07 2.80280997814e-06 3.27784705034e-07 2.87902571038e-06 3.33599228273e-07 2.96859788041e-06 3.52687663505e-07 3.0765591744e-06 4.16336119128e-07 3.15690584761e-06 4.80896260579e-07 3.22006764143e-06 5.59862238082e-07 3.27525454992e-06 5.97218975932e-07 3.24948087265e-06 9.9925608276e-08 3.45478803452e-06 8.81843593843e-07 3.04290690423e-05 2.21393701834e-05 -0.000248996984706 4.21614934848e-05 -0.000353837704205 5.90313489788e-05 -0.000403303978393 7.31537666637e-05 -0.000426203855186 8.53019256357e-05 -0.000436613071888 9.61930294492e-05 -0.000441132478514 0.000106332087447 -0.000442962983778 0.000116024788361 -0.000443548746623 0.000125441554184 -0.000443522559882 0.000134671013139 -0.000443138717412 0.000143755708853 -0.000442487405037 0.000152712623729 -0.000441589347133 0.000161543926567 -0.000440435906465 0.000170242117587 -0.000439005260906 0.000178791752529 -0.00043726653116 0.000187169619594 -0.000435180822807 0.000195342883774 -0.000432696349315 0.000203266453444 -0.000429744600955 0.000210876744818 -0.000426226406176 0.000218079466607 -0.000421987005608 0.000224700655895 -0.000416693074286 0.000230424332222 -0.000409734432216 0.000234777064512 -0.000400300585861 0.000237186160307 -0.000387615220604 0.000237080280287 -0.000371175134167 0.000233982517615 -0.000350872250012 0.000227565588302 -0.000326981005246 0.000217665976881 -0.000300062790873 0.00020426830112 -0.000270843522906 0.000187472781708 -0.000240105080996 0.000167442217528 -0.000208586095239 0.000144346387115 -0.000176939961071 0.000118157744096 -0.000145621507238 8.71140211474e-05 -0.000113519476985 4.497065934e-05 -7.63162130695e-05 2.75510602128e-06 -8.25919161574e-06 3.77918644412e-07 -2.64662434641e-07 7.78787032739e-07 8.78897040467e-07 4.40777731728e-07 9.02813804058e-07 8.39715377474e-07 4.01433780931e-08 2.25478026355e-06 5.392277367e-08 2.35014930337e-06 5.90669042214e-08 2.36305253888e-06 6.08992473908e-08 2.36293109801e-06 5.54938625651e-08 2.35131496726e-06 2.62192612812e-08 2.30390897734e-06 -4.20254549561e-09 2.22520369523e-06 3.15469718273e-08 2.18374800259e-06 7.64765375613e-08 2.23351352055e-06 1.14388696852e-07 2.28258699861e-06 1.45100891382e-07 2.3196562584e-06 1.8714185567e-07 2.3496232847e-06 2.16644851836e-07 2.39350295739e-06 2.32085123539e-07 2.41776129652e-06 2.55200546552e-07 2.42271904892e-06 2.49924335169e-07 2.42564631751e-06 2.28629031533e-07 2.39365661715e-06 2.11622146941e-07 2.36480424535e-06 2.29387995276e-07 2.34814277757e-06 2.39636952171e-07 2.37054129072e-06 2.58747177784e-07 2.3792562206e-06 2.69719949732e-07 2.42597314144e-06 3.08365328704e-07 2.44073347233e-06 3.27725155226e-07 2.48376733436e-06 3.43144854077e-07 2.50126192851e-06 3.64249560856e-07 2.52669630563e-06 3.86171049291e-07 2.58231682151e-06 4.0776475829e-07 2.61642259648e-06 4.37713200273e-07 2.65828240498e-06 4.65342283338e-07 2.71321720248e-06 4.68705570637e-07 2.79950077492e-06 4.86483970145e-07 2.86130266263e-06 5.03852956973e-07 2.95129591426e-06 5.35128837334e-07 3.0453138152e-06 5.65636180172e-07 3.12646106791e-06 5.72661593095e-07 3.2130356634e-06 5.25958544808e-07 3.32199735396e-06 3.30048854632e-07 3.44545517613e-06 -4.64733350668e-07 4.24962220667e-06 8.41382609626e-06 2.15506950083e-05 2.49552254791e-05 -0.000265538214649 4.28572014354e-05 -0.000371739557076 5.81899223219e-05 -0.00041863660412 7.12094047713e-05 -0.000439223260933 8.26194823467e-05 -0.00044802308815 9.30346030223e-05 -0.000451547549512 0.000102864290581 -0.000452792631373 0.0001123444642 -0.000453028887275 0.000121599541672 -0.000452777609415 0.000130690019628 -0.000452229170661 0.00013964213383 -0.000451439496283 0.000148463620686 -0.000450410811955 0.000157151316721 -0.000449123580425 0.000165694391732 -0.000447548313596 0.000174074891741 -0.000445647007912 0.000182267270487 -0.000443373177495 0.00019023580911 -0.000440664862527 0.000197931533081 -0.000437440298496 0.000205284541399 -0.000433579386547 0.00021218886903 -0.00042889130399 0.000218436389268 -0.000422940563747 0.000223643670837 -0.000414941682095 0.000227252279759 -0.000403909164163 0.000228619826425 -0.000388982742659 0.000227146189423 -0.00036970148561 0.000222372977693 -0.000346099041367 0.000214029582712 -0.000318637653625 0.00020203272213 -0.00028806597243 0.000186458233954 -0.000255269108878 0.000167502572772 -0.000221149596761 0.000145442599285 -0.00018652630156 0.00012066068782 -0.000152158368871 9.34367716906e-05 -0.000118397900003 6.2455724955e-05 -8.25388248593e-05 1.50806054269e-05 -2.89413696649e-05 3.9327220411e-06 2.88863807628e-06 1.82923672423e-06 1.83878375372e-06 1.0964374311e-06 1.61167679737e-06 5.17022986908e-07 1.48215651396e-06 1.35668207077e-06 2.88023043988e-08 2.22611815987e-06 5.38910986551e-08 2.32515013094e-06 7.01211789315e-08 2.34689885694e-06 8.20117555166e-08 2.35111103941e-06 8.68163990934e-08 2.34657666807e-06 7.18459387456e-08 2.31894121568e-06 2.90529704207e-08 2.26805712571e-06 3.14882971941e-08 2.18137337207e-06 7.85701765285e-08 2.18649507379e-06 1.2472318459e-07 2.23650256005e-06 1.64935585364e-07 2.27951480062e-06 2.00626165276e-07 2.31400488144e-06 2.48054128802e-07 2.34614707543e-06 2.75437652922e-07 2.39044839676e-06 3.14905708377e-07 2.38331967032e-06 3.30192389102e-07 2.41042472277e-06 3.1819435811e-07 2.40571809562e-06 3.12296029997e-07 2.37076349004e-06 3.07250810243e-07 2.3532457212e-06 3.14427880976e-07 2.36342251529e-06 3.47507688519e-07 2.34623449589e-06 3.75498518804e-07 2.39804110853e-06 3.99044272949e-07 2.41724529489e-06 4.37307805882e-07 2.44556016589e-06 4.62672586891e-07 2.47595414122e-06 4.83118733868e-07 2.50630620165e-06 5.22820208578e-07 2.54267166324e-06 5.59083672157e-07 2.58021392131e-06 5.93018934593e-07 2.62440217295e-06 5.98033672585e-07 2.70825841015e-06 6.24689200464e-07 2.77290308763e-06 6.46881039345e-07 2.83917279478e-06 6.72933361743e-07 2.92529402219e-06 7.03867288519e-07 3.0144490909e-06 7.26490158449e-07 3.10383465771e-06 7.26362221106e-07 3.21320343966e-06 6.76924464306e-07 3.37149089119e-06 6.22686266302e-07 3.49974014092e-06 3.49220876653e-07 4.52329918791e-06 5.99793051206e-06 1.59023054361e-05 2.55728194908e-05 -0.000285112924874 4.25836965623e-05 -0.000388750325841 5.68410589084e-05 -0.000432893878119 6.90154686642e-05 -0.000451397594544 7.98320722034e-05 -0.000458839625706 8.98499458527e-05 -0.000461565367225 9.9409500543e-05 -0.000462352138853 0.000108692610905 -0.000462311958008 0.000117787999109 -0.00046187296379 0.000126734666392 -0.000461175808339 0.000135546544679 -0.000460251347823 0.000144224397939 -0.000459088640006 0.00015276095493 -0.000457660113038 0.000161142673728 -0.000455930007873 0.000169349370943 -0.000453853680271 0.000177353269683 -0.000451377050288 0.000185115703978 -0.000448427269987 0.000192583642501 -0.000444908208632 0.000199680295446 -0.000440676010042 0.00020628644925 -0.000435497426375 0.000212151683183 -0.000428805765411 0.00021681191527 -0.000419601879988 0.00021961535462 -0.000406712570977 0.000219853894465 -0.000389221251164 0.0002169136713 -0.000366761238325 0.000210374453333 -0.000339559810722 0.000200040375636 -0.000308303561809 0.000185920804893 -0.000273946411846 0.000168185496293 -0.000237533804198 0.000147109009003 -0.000200073142134 0.000123032513304 -0.000162450021527 9.64757787746e-05 -0.000125601836534 6.77541871605e-05 -8.96764002277e-05 2.85836875787e-05 -4.33682222833e-05 1.00753731686e-06 -1.36521785342e-06 1.70065711736e-06 2.19549139654e-06 1.45735568054e-06 2.08202862286e-06 1.00063190645e-06 2.0683088792e-06 4.89911821912e-07 1.99274092517e-06 1.84653347905e-06 1.3431276152e-08 2.2126877124e-06 5.02875084701e-08 2.28835234049e-06 7.59828881125e-08 2.32127484418e-06 9.74128942405e-08 2.32975343784e-06 1.11391112359e-07 2.3326683356e-06 1.09257766325e-07 2.32114160231e-06 8.80330371422e-08 2.28934489545e-06 5.38578062545e-08 2.21560954768e-06 7.9391642162e-08 2.161025034e-06 1.31226880027e-07 2.18473505522e-06 1.81774239011e-07 2.22903915294e-06 2.26678706619e-07 2.26917407611e-06 2.70377391709e-07 2.30252214567e-06 3.23488538313e-07 2.33740981824e-06 3.48318763046e-07 2.35855889141e-06 3.91689995045e-07 2.3671225229e-06 4.011814237e-07 2.39629244764e-06 4.11513173286e-07 2.36049429626e-06 4.1142279419e-07 2.35339881343e-06 4.14960041896e-07 2.35994685542e-06 4.27907542244e-07 2.33334672281e-06 4.8155405938e-07 2.34445484935e-06 5.13441161369e-07 2.38541750182e-06 5.47955640151e-07 2.41110405476e-06 5.79153244358e-07 2.44481380522e-06 6.20332183085e-07 2.46518441287e-06 6.62487219123e-07 2.50057179263e-06 7.07261701103e-07 2.53549445913e-06 7.2377944397e-07 2.60794049159e-06 7.54635819494e-07 2.67745989647e-06 7.93101290475e-07 2.73449429067e-06 8.22801876087e-07 2.80952497908e-06 8.49917897844e-07 2.89823669768e-06 8.70155924104e-07 2.99424380257e-06 8.65721767113e-07 3.10831270218e-06 7.94127276454e-07 3.28481733578e-06 6.59296206112e-07 3.50636493352e-06 3.01385152511e-07 3.85781702994e-06 -5.39410393408e-07 5.36421511405e-06 6.75852137215e-06 8.60457109263e-06 2.49164768325e-05 -0.00030327075709 4.13287684181e-05 -0.000405162528186 5.49145862868e-05 -0.000446479619951 6.652004361e-05 -0.000463002982903 7.69129090563e-05 -0.000469232428913 8.66285280937e-05 -0.000471280931084 9.59656942214e-05 -0.000471689257051 0.000105071686657 -0.000471417909013 0.000114012039459 -0.000470813280611 0.000122811894526 -0.000469975631613 0.000131477301716 -0.000468916726066 0.000140004493747 -0.000467615804982 0.000148383389222 -0.000466038982214 0.000156598382784 -0.000464144975422 0.000164627357071 -0.000461882627926 0.000172440401471 -0.000459190067412 0.000179995813491 -0.000455982653323 0.000187236286537 -0.000452148651983 0.000194077457471 -0.000447517149433 0.000200384996461 -0.000441804932961 0.00020585602637 -0.000434276760644 0.000209931058215 -0.000423676876554 0.000211858268587 -0.000408639742917 0.000210871858362 -0.000388234801591 0.000206362831565 -0.000362252167038 0.000197970185864 -0.000331167110065 0.000185590410128 -0.000295923727474 0.000169338749027 -0.000257694644276 0.000149490944486 -0.000217685919959 0.000126414174004 -0.000176996370809 0.000100465292256 -0.00013650113042 7.16479181197e-05 -9.67843138757e-05 3.78960555212e-05 -5.59241313551e-05 5.71234423098e-06 -1.1184248346e-05 1.83851598858e-06 2.50863084973e-06 1.65171906342e-06 2.38225633793e-06 1.36774392467e-06 2.36593501236e-06 9.55902453317e-07 2.48003167468e-06 4.45972188308e-07 2.50255231623e-06 2.29237373167e-06 1.45396507432e-08 2.1982895731e-06 4.99934169019e-08 2.25299025124e-06 8.28210978011e-08 2.28852715847e-06 1.08254960775e-07 2.30439633812e-06 1.29314417207e-07 2.3116829464e-06 1.36553992835e-07 2.31397163778e-06 1.34483894525e-07 2.29148168084e-06 1.10078022429e-07 2.24008013756e-06 9.22751610617e-08 2.17889191058e-06 1.33112076934e-07 2.14396490867e-06 1.94024132102e-07 2.16819752061e-06 2.51299844403e-07 2.21197174207e-06 3.03527894089e-07 2.25036812885e-06 3.60201079356e-07 2.28081055888e-06 4.00686397007e-07 2.31814669016e-06 4.30225496629e-07 2.33765413148e-06 4.79758484086e-07 2.34682829808e-06 4.91528256507e-07 2.34879149886e-06 5.07090927816e-07 2.33790099948e-06 5.22818926524e-07 2.34428267483e-06 5.39299691235e-07 2.31692930225e-06 5.80627869474e-07 2.30318760078e-06 6.28296091175e-07 2.33780957044e-06 6.65869383759e-07 2.37358986375e-06 7.02411591632e-07 2.40832991482e-06 7.48414315316e-07 2.4192380657e-06 8.04993540884e-07 2.44404772356e-06 8.37579557186e-07 2.5029629435e-06 8.75660712692e-07 2.56991413706e-06 9.24473372301e-07 2.62869953969e-06 9.64414812481e-07 2.69460134395e-06 9.94611758389e-07 2.77937309181e-06 1.0189359201e-06 2.87395107835e-06 1.02914150624e-06 2.98407806012e-06 1.00819008186e-06 3.12928361486e-06 9.19565298564e-07 3.37347959665e-06 7.8682866856e-07 3.63920402821e-06 6.0346265847e-07 4.0412584871e-06 6.18875776486e-07 5.34895378866e-06 4.29834349087e-06 4.92515408123e-06 2.30257663263e-05 -0.00032199805581 3.9305365936e-05 -0.000421442064341 5.25576154244e-05 -0.000459731818345 6.38099782636e-05 -0.000474255296825 7.39095436912e-05 -0.000479331946905 8.33963258413e-05 -0.000480767668052 9.25478713517e-05 -0.000480840760723 0.000101491541512 -0.000480361540908 0.000110279492446 -0.00047960119674 0.000118929120107 -0.000478625227307 0.000127442175104 -0.000477429751354 0.00013581235931 -0.000475985960837 0.000144027857895 -0.000474254453292 0.00015207154079 -0.000472188630774 0.000159919597903 -0.00046973065721 0.000167540043276 -0.000466810483935 0.000174888005112 -0.000463330585376 0.000181901636359 -0.000459162251974 0.000188488194258 -0.000454103675125 0.000194496060145 -0.000447812765152 0.000199557302456 -0.000439337968603 0.000203000983055 -0.000427120520944 0.000203971175588 -0.000409609897326 0.000201657067932 -0.000385920649663 0.000195476500424 -0.00035607154406 0.000185149230148 -0.000320839773842 0.000170678643783 -0.000281453037769 0.000152291246991 -0.000239307158756 0.000130371236097 -0.000195765806518 0.000105415164345 -0.000152040228588 7.80516358667e-05 -0.000109137493283 4.9353894728e-05 -6.8086078381e-05 1.42781298615e-05 -2.0847913925e-05 1.09944641641e-06 1.99450086308e-06 1.16507960724e-06 2.44300718197e-06 1.12587248238e-06 2.42143384158e-06 9.84568563024e-07 2.50718623135e-06 7.46840270076e-07 2.71767673592e-06 3.66054739592e-07 2.88308283196e-06 2.65840540877e-06 2.99591476899e-08 2.1683392354e-06 5.64078496658e-08 2.22660328068e-06 9.11472408001e-08 2.25386226141e-06 1.18560546002e-07 2.27706008254e-06 1.42980707528e-07 2.28733898475e-06 1.62631937354e-07 2.29439484405e-06 1.63928193691e-07 2.29025624273e-06 1.57035387648e-07 2.24704020692e-06 1.39630628629e-07 2.19636301021e-06 1.41005373155e-07 2.14265650652e-06 1.99332782199e-07 2.10993907077e-06 2.67828745957e-07 2.14354883269e-06 3.3175746162e-07 2.1865146715e-06 3.90297973019e-07 2.2223455908e-06 4.52109668655e-07 2.25641072143e-06 4.97569729728e-07 2.29226843739e-06 5.39661994879e-07 2.30480809709e-06 5.77380082581e-07 2.31114300824e-06 6.00251536653e-07 2.31509824374e-06 6.29973066182e-07 2.31462855444e-06 6.55434704872e-07 2.29153141905e-06 6.92797534632e-07 2.26588741635e-06 7.41608493848e-07 2.28906003859e-06 7.85957635164e-07 2.32930134297e-06 8.34731513957e-07 2.35961495659e-06 8.80646444461e-07 2.37337960365e-06 9.28460199073e-07 2.39628796243e-06 9.77965403808e-07 2.45351051467e-06 1.0350477347e-06 2.51288174654e-06 1.08499227889e-06 2.57880061622e-06 1.13097408676e-06 2.64865844709e-06 1.17461182942e-06 2.73576837351e-06 1.20797171989e-06 2.84062122796e-06 1.2281511004e-06 2.96392917527e-06 1.21484816843e-06 3.1426217926e-06 1.20037549001e-06 3.38800158384e-06 1.1686839337e-06 3.67094958703e-06 1.2789073578e-06 3.93117831905e-06 1.35859312467e-06 5.26930272252e-06 2.5771846883e-06 3.70664791468e-06 2.11092598419e-05 -0.00034053009165 3.71529455305e-05 -0.000437485718219 5.00923632145e-05 -0.000472671205342 6.10496592649e-05 -0.000485212559794 7.0907649838e-05 -0.000489189901773 8.01986256755e-05 -0.000490058607146 8.91807038185e-05 -0.000489822802402 9.7966626921e-05 -0.000489147428862 0.000106600058047 -0.000488234594415 0.000115094131012 -0.00048711926862 0.000123448479111 -0.000485784069221 0.000131655537284 -0.0004841929899 0.000139702456718 -0.000482301344045 0.000147570921911 -0.000480057067409 0.000155235572755 -0.000477395278905 0.000162662335224 -0.000474237216571 0.000169802984944 -0.00047047120404 0.000176590811463 -0.000465950046491 0.000182923768255 -0.000460436598753 0.000188630445552 -0.000453519408628 0.000193262361915 -0.000443969850131 0.000196020171109 -0.000429878293835 0.000195943324264 -0.000409533009574 0.000192193638293 -0.000382170915638 0.000184240954504 -0.000348118799469 0.000171908577315 -0.00030850731423 0.00015532120746 -0.000264865585517 0.000134817761664 -0.000218803605845 0.000110862803727 -0.000171810794201 8.39435175186e-05 -0.000125120847788 5.42718016632e-05 -7.94653764194e-05 2.12776644678e-05 -3.5091414177e-05 6.14447667231e-07 -1.84600317138e-07 5.67304912094e-07 2.04167166023e-06 7.12807512506e-07 2.29749987282e-06 6.87345240226e-07 2.44687011759e-06 5.83761987834e-07 2.61072203177e-06 4.52582431522e-07 2.84873856736e-06 2.87473131369e-07 3.04818796444e-06 2.94575603846e-06 4.3051433492e-08 2.12542643325e-06 6.69311771284e-08 2.20281733928e-06 9.64980523978e-08 2.22437807433e-06 1.25587505481e-07 2.24805128787e-06 1.51559329726e-07 2.26144743272e-06 1.77212774367e-07 2.26882017e-06 1.95958710582e-07 2.27158597177e-06 1.90938379468e-07 2.2521334062e-06 1.97412962985e-07 2.18995860579e-06 1.86844839013e-07 2.15329411122e-06 2.07244205147e-07 2.08961090805e-06 2.73990125486e-07 2.07687495977e-06 3.48724381836e-07 2.11185551277e-06 4.2042421625e-07 2.15072158667e-06 4.8726326294e-07 2.189647547e-06 5.57765057802e-07 2.22184293303e-06 6.0844969372e-07 2.25419767091e-06 6.52119565927e-07 2.2675464559e-06 6.92515279975e-07 2.27477359293e-06 7.34872960932e-07 2.27233908181e-06 7.72396492771e-07 2.25407440207e-06 8.07334802183e-07 2.23101290335e-06 8.54951264102e-07 2.24150621779e-06 9.11218756264e-07 2.2730948903e-06 9.62837977636e-07 2.30805493991e-06 1.01494530493e-06 2.32132846229e-06 1.06373955248e-06 2.34754707052e-06 1.12559659839e-06 2.39170300089e-06 1.18521627632e-06 2.45330712669e-06 1.24375438863e-06 2.52030053802e-06 1.29938779313e-06 2.59305558223e-06 1.34551678857e-06 2.68966249503e-06 1.38304693425e-06 2.8031152628e-06 1.4153558025e-06 2.9316448004e-06 1.44423937362e-06 3.11377336904e-06 1.49618696559e-06 3.33609865566e-06 1.55777094797e-06 3.60946156802e-06 1.6899836918e-06 3.79900802235e-06 1.78626289157e-06 5.17314315075e-06 2.31144044995e-06 3.1814655567e-06 1.97934365332e-05 -0.000358012033966 3.5238226307e-05 -0.000452930485984 4.77367794815e-05 -0.000485169737575 5.83658509709e-05 -0.000495841606658 6.79801217575e-05 -0.000498804144177 7.70770359904e-05 -0.000499155490481 8.58880935121e-05 -0.000498633827867 9.4511241507e-05 -0.000497770544621 0.000102983150449 -0.000496706471625 0.000111314121731 -0.00049545020889 0.000119502650784 -0.000493972568101 0.000127540491704 -0.000492230801178 0.000135414087752 -0.000490174910815 0.000143104068952 -0.000487747019143 0.000150583556826 -0.000484874736953 0.000157816295225 -0.000481469924284 0.000164750471158 -0.000477405348486 0.000171314130643 -0.000472513673582 0.000177394886826 -0.000466517321875 0.00018279870636 -0.000458923194759 0.000186977633751 -0.000448148743644 0.00018898661662 -0.000431887240601 0.000187764381709 -0.000408310736187 0.000182467640565 -0.000376874124219 0.000172644800551 -0.000338295896662 0.000158244845471 -0.000294107285029 0.00013953140812 -0.000246152065582 0.00011697801651 -0.000196250169632 9.11665509384e-05 -0.000145999261181 6.25863120019e-05 -9.65405016283e-05 3.09551557667e-05 -4.78337474363e-05 4.01039208262e-06 -8.14611604738e-06 9.93531668174e-07 2.83226671108e-06 6.5830395247e-07 2.3768904683e-06 4.94453531545e-07 2.46132549033e-06 3.68341755113e-07 2.57294980172e-06 2.59242588974e-07 2.71980855837e-06 1.95774073723e-07 2.91222473956e-06 1.58221682518e-07 3.08553962717e-06 3.10403564e-06 4.39636117884e-08 2.08147811848e-06 7.03735517272e-08 2.17647107293e-06 9.31428740603e-08 2.20168497188e-06 1.24178883781e-07 2.21709609407e-06 1.55184544436e-07 2.23052475325e-06 1.86696284572e-07 2.23739140174e-06 2.18536986423e-07 2.23982702721e-06 2.35652911167e-07 2.23509649865e-06 2.40378764727e-07 2.18530804727e-06 2.59312997477e-07 2.13443509576e-06 2.5660126771e-07 2.09239444053e-06 2.91812004109e-07 2.04173750166e-06 3.56521582959e-07 2.04721768033e-06 4.39499931545e-07 2.06781740999e-06 5.2025960923e-07 2.10896393989e-06 5.95886610474e-07 2.14629236064e-06 6.7310236108e-07 2.17705909776e-06 7.29673730299e-07 2.21104987244e-06 7.82714398948e-07 2.22180607461e-06 8.33023041926e-07 2.22210080059e-06 8.78774617501e-07 2.20838977567e-06 9.22650979008e-07 2.18720144198e-06 9.73792133446e-07 2.19042822366e-06 1.03378153815e-06 2.21316714387e-06 1.09437005294e-06 2.24752534342e-06 1.14921108476e-06 2.26654269525e-06 1.20578773369e-06 2.29102121241e-06 1.26972098827e-06 2.32781620205e-06 1.33396434641e-06 2.38910395877e-06 1.39781277714e-06 2.45648479396e-06 1.46030106213e-06 2.53059190108e-06 1.52382492592e-06 2.62616016339e-06 1.57644573129e-06 2.75051259613e-06 1.63034517764e-06 2.87777294242e-06 1.68951135035e-06 3.05464206988e-06 1.75083221737e-06 3.27483674868e-06 1.8408474673e-06 3.51949483624e-06 1.9099891036e-06 3.72997721025e-06 2.08322480554e-06 4.99989706354e-06 2.26664847533e-06 2.99809521753e-06 1.8861844295e-05 -0.000374607228747 3.35821632763e-05 -0.000467650789537 4.55590298537e-05 -0.000497146585762 5.58201852102e-05 -0.000506102739501 6.51707180633e-05 -0.000508154650772 7.40597260253e-05 -0.000508044469045 8.26874794306e-05 -0.000507261549968 9.11362856882e-05 -0.000506219318718 9.94360736836e-05 -0.000505006227386 0.000107594673553 -0.000503608776986 0.000115609681933 -0.000501987545271 0.0001234722936 -0.000500093382237 0.000131168293958 -0.000497870880826 0.000138677220935 -0.000495255915855 0.000145970619415 -0.000492168104797 0.000153009876579 -0.000488509150354 0.000159739317104 -0.000484134757279 0.000166081303258 -0.000478855627496 0.000171911981134 -0.000472347967381 0.000177011533468 -0.000464022714671 0.000180709608406 -0.000451846785505 0.000181898694906 -0.000433076294011 0.000179426315878 -0.00040583831515 0.000172470975349 -0.000369918737942 0.000160685682861 -0.000326510538701 0.000144159030169 -0.000277580568357 0.000123290386513 -0.000225283380097 9.86873609753e-05 -0.000171647134269 7.11651045329e-05 -0.000118477012583 4.18775924061e-05 -6.72528331703e-05 1.0697010745e-05 -1.66529293101e-05 1.00227853901e-07 2.4506606887e-06 3.86777149387e-07 2.54570015318e-06 3.09367583172e-07 2.45427450546e-06 1.98003706818e-07 2.57266338233e-06 6.49092652477e-08 2.70603693839e-06 -1.59384524919e-08 2.80065053736e-06 -7.22299645974e-09 2.90345777998e-06 -2.10842355422e-08 3.09954263682e-06 3.08289326737e-06 4.22433772203e-08 2.0393694211e-06 5.9431668239e-08 2.15937902183e-06 8.44589932201e-08 2.17674529706e-06 1.19944683588e-07 2.18169772798e-06 1.59753084712e-07 2.19080502666e-06 2.00364583265e-07 2.19686931859e-06 2.41534465233e-07 2.19874570577e-06 2.79557256565e-07 2.19715961191e-06 2.88812178231e-07 2.17613603627e-06 3.17034322846e-07 2.10629003861e-06 3.4223543165e-07 2.06727018586e-06 3.6058180506e-07 2.02346309957e-06 3.78493215911e-07 2.02938138356e-06 4.56094713778e-07 1.99029039943e-06 5.43386117451e-07 2.02174990052e-06 6.35707428261e-07 2.0540499147e-06 7.20378570371e-07 2.09246503318e-06 8.03219698146e-07 2.12828582847e-06 8.68642249478e-07 2.15645769134e-06 9.27420414557e-07 2.16339432616e-06 9.81055410936e-07 2.15482343116e-06 1.02912535773e-06 2.13919799531e-06 1.09034214814e-06 2.12927545536e-06 1.15424947696e-06 2.14932111002e-06 1.21683151578e-06 2.18500186319e-06 1.28412459016e-06 2.19930407917e-06 1.34805430703e-06 2.22714161248e-06 1.41383402996e-06 2.26208030592e-06 1.4832469383e-06 2.31972873732e-06 1.55539373179e-06 2.38436922139e-06 1.62812613669e-06 2.45788522692e-06 1.69459390589e-06 2.55971318483e-06 1.76432717763e-06 2.68080288544e-06 1.84618138087e-06 2.79594382342e-06 1.92204039168e-06 2.97882623632e-06 1.98972206497e-06 3.20720918685e-06 2.06013158633e-06 3.44917317933e-06 2.10507455166e-06 3.68505638236e-06 2.13135068157e-06 4.97372305092e-06 2.22475176637e-06 2.90467527224e-06 1.81510742452e-05 -0.000390533487938 3.21501238329e-05 -0.000481649807981 4.35710083732e-05 -0.000508567441544 5.34356527926e-05 -0.000515967354523 6.24997409695e-05 -0.000517218707433 7.11611878024e-05 -0.000516705882817 7.95883224984e-05 -0.000515688650583 8.78478185448e-05 -0.000514478780459 9.5962937186e-05 -0.000513121312083 0.000103939007617 -0.000511584814146 0.000111772623166 -0.0005098211284 0.000119454299561 -0.000507775026913 0.000126969055497 -0.000505385605619 0.000134295195224 -0.000502582024636 0.000141402572051 -0.000499275450726 0.000148249976435 -0.000495356523613 0.000154777579629 -0.000490662329206 0.000160901558064 -0.000484979574611 0.000166485396719 -0.000477931774785 0.000171279995073 -0.000468817281738 0.000174464974718 -0.000455031734304 0.000174755223815 -0.000433366505941 0.000170923413299 -0.000402006471414 0.000162202590754 -0.000361197857895 0.000148380099013 -0.00031268799753 0.000129698505002 -0.00025889893169 0.000106658561513 -0.000202243430879 7.98627349969e-05 -0.00014485131706 5.00966119498e-05 -8.87109043466e-05 1.7263783335e-05 -3.44197807968e-05 -1.85025577266e-07 7.95897443708e-07 -3.91031618665e-08 2.30473322576e-06 1.01665356114e-07 2.40490874293e-06 5.05449943334e-08 2.50537023849e-06 -3.66799788985e-08 2.65986880006e-06 -1.40187831471e-07 2.80953238326e-06 -1.98286410217e-07 2.85878022492e-06 -1.075730074e-07 2.812838696e-06 -9.00423947826e-08 3.08191500956e-06 2.99294138083e-06 3.43901801322e-08 2.00500251201e-06 5.7134465199e-08 2.13671098479e-06 8.91081210667e-08 2.14486111109e-06 1.28244788038e-07 2.14265510909e-06 1.75446444207e-07 2.14369961194e-06 2.24977392148e-07 2.14743491006e-06 2.74515813569e-07 2.14930296955e-06 3.23375026167e-07 2.14839362865e-06 3.5611046932e-07 2.14348887793e-06 3.65646112441e-07 2.09683718733e-06 4.00349852922e-07 2.0326441036e-06 4.44038389913e-07 1.97985473968e-06 4.75684432625e-07 1.99781501712e-06 5.08939405109e-07 1.95711533309e-06 5.74585977907e-07 1.95618281387e-06 6.68712599307e-07 1.96000123933e-06 7.69444981508e-07 1.99181128812e-06 8.59033813789e-07 2.03877352622e-06 9.5189843574e-07 2.06366944665e-06 1.02229046884e-06 2.09307557811e-06 1.08421989229e-06 2.09296500084e-06 1.14486078033e-06 2.0786242102e-06 1.20896264739e-06 2.06523748549e-06 1.27685084491e-06 2.08149440815e-06 1.34701660603e-06 2.11489415852e-06 1.4136049748e-06 2.13276912091e-06 1.48376529696e-06 2.15702895451e-06 1.55580987433e-06 2.19007841995e-06 1.62988968503e-06 2.24568684571e-06 1.70510607382e-06 2.30918626379e-06 1.78549862117e-06 2.37752241294e-06 1.86986498234e-06 2.47537501662e-06 1.95766574799e-06 2.59302759414e-06 2.03805213066e-06 2.71559373317e-06 2.11669033645e-06 2.90023543211e-06 2.21801420867e-06 3.10595256259e-06 2.31764551943e-06 3.34959037995e-06 2.42096191632e-06 3.58184127031e-06 2.19807555618e-06 5.19657461303e-06 2.3328971572e-06 2.76992383909e-06 1.76327752203e-05 -0.000405833353497 3.09179979181e-05 -0.000494935003309 4.17650119001e-05 -0.000519414426689 5.12132765549e-05 -0.00052541558726 5.9970617681e-05 -0.000525976012886 6.8384396501e-05 -0.000525119623527 7.65924720601e-05 -0.000523896686891 8.46467854911e-05 -0.000522533054986 9.25642258468e-05 -0.000521038714579 0.000100347575218 -0.000519368127178 0.000107992246688 -0.000517465765032 0.000115487890026 -0.000515270636805 0.000122818594528 -0.000512716277721 0.000129961248263 -0.000509724646748 0.000136883880703 -0.000506198051999 0.000143542397058 -0.000502015009158 0.000149872535856 -0.000496992437534 0.000155783715636 -0.000490890724305 0.000161125528584 -0.000483273558102 0.000165615723051 -0.000473307447013 0.000168250684364 -0.000457666662967 0.00016755519584 -0.000432670989943 0.000162250533173 -0.000396701759681 0.000151661092687 -0.000350608379155 0.000135742124486 -0.000296768982354 0.000114925000624 -0.000238081792115 8.98405724719e-05 -0.000177159061366 6.09843308275e-05 -0.000115995128469 2.84938026225e-05 -5.622016675e-05 2.30909411074e-06 -8.23481552331e-06 2.59424469011e-07 2.84558220703e-06 6.08382504587e-08 2.50330986379e-06 -1.91750767098e-08 2.48490406382e-06 -9.4305040091e-08 2.58048086587e-06 -1.5226802596e-07 2.71782022456e-06 -1.83449940264e-07 2.84073000867e-06 -2.17481405131e-07 2.89282691696e-06 -1.38055335064e-07 2.73338869558e-06 -5.00694841125e-08 2.99409947065e-06 2.9428321543e-06 1.77560995549e-08 1.9873953632e-06 6.24670881786e-08 2.09210970774e-06 1.01083077432e-07 2.10634837168e-06 1.47254022293e-07 2.09658637218e-06 2.02407659078e-07 2.08864785419e-06 2.59827613516e-07 2.09011701547e-06 3.16344388854e-07 2.09288697604e-06 3.71637673612e-07 2.09319871392e-06 4.24780935378e-07 2.09044005136e-06 4.43260023239e-07 2.0784478812e-06 4.48258426464e-07 2.02773130345e-06 4.76672533304e-07 1.9515221406e-06 5.6220721828e-07 1.91236303416e-06 6.101191283e-07 1.90928504631e-06 6.59124491634e-07 1.90725779772e-06 7.21955634914e-07 1.89724954454e-06 8.13176681081e-07 1.90066768838e-06 9.14377117212e-07 1.93765170318e-06 1.01719965444e-06 1.96092258138e-06 1.10830882317e-06 2.00204140059e-06 1.18347992153e-06 2.01786479394e-06 1.25026742132e-06 2.01190440622e-06 1.32002412245e-06 1.99554451805e-06 1.39166332043e-06 2.00991564568e-06 1.46496311138e-06 2.0416516853e-06 1.54305653363e-06 2.05472848752e-06 1.61968413759e-06 2.08044954329e-06 1.69578314855e-06 2.11402352832e-06 1.77759134721e-06 2.16392148009e-06 1.86597395086e-06 2.22084441242e-06 1.95940229643e-06 2.28413145104e-06 2.04520727958e-06 2.38960285455e-06 2.14969296821e-06 2.48857414367e-06 2.2436384227e-06 2.62168045682e-06 2.35210712262e-06 2.79181171692e-06 2.47527274324e-06 2.98284272543e-06 2.62070012075e-06 3.20423438214e-06 2.74221993795e-06 3.46030013679e-06 2.42081208433e-06 5.51811076457e-06 2.55123542511e-06 2.63946278947e-06 1.72632429706e-05 -0.000420545311681 2.98472577804e-05 -0.000507519002361 4.01173603553e-05 -0.000529684511605 4.91392795516e-05 -0.000534437479287 5.75748821235e-05 -0.000534411580593 6.57235134965e-05 -0.000533268214251 7.36954078327e-05 -0.000531868538538 8.15294607153e-05 -0.000530367065098 8.92368513517e-05 -0.000528746064002 9.68179402939e-05 -0.000526949176942 0.000104266868978 -0.00052491465674 0.000111572283179 -0.00052257601601 0.00011871720069 -0.000519861161891 0.000125676924365 -0.000516684338414 0.000132417542439 -0.00051293863911 0.000138891758381 -0.000508489195138 0.000145030641484 -0.000503131291631 0.000150736197315 -0.000496596252126 0.000155842900327 -0.000488380233392 0.000160031083899 -0.000477495601886 0.000162074093042 -0.00045970964532 0.000160298241198 -0.00043089509664 0.000153404579779 -0.000389808065616 0.00014084795802 -0.000338051706919 0.000122771826919 -0.000278692830681 9.97813176054e-05 -0.000215091354407 7.26934064709e-05 -0.000150071187397 4.30494057566e-05 -8.63510592208e-05 1.00182147571e-05 -2.31884865469e-05 -2.83671659864e-07 2.06710364988e-06 -7.09664363341e-08 2.63288759868e-06 -8.81956793657e-08 2.52053661766e-06 -1.30106126303e-07 2.52680514889e-06 -1.69335422509e-07 2.61970345203e-06 -1.79783721979e-07 2.72827014102e-06 -1.57859003334e-07 2.81880685283e-06 -1.42898024958e-07 2.87789455169e-06 -1.28541748748e-07 2.71912839226e-06 5.19599264504e-09 2.86027863148e-06 2.94811089961e-06 -2.75866246328e-09 1.99017896652e-06 4.98860038646e-08 2.03954816012e-06 9.91073448107e-08 2.05722591322e-06 1.62175993352e-07 2.0336222769e-06 2.29379104241e-07 2.02155075091e-06 2.95424975454e-07 2.02417704731e-06 3.5845941444e-07 2.02995793817e-06 4.18607579911e-07 2.03315389441e-06 4.76773554943e-07 2.03237452645e-06 5.26675944706e-07 2.02864222872e-06 5.43175902452e-07 2.01132319918e-06 5.39051023853e-07 1.95573318775e-06 5.79670752046e-07 1.8718236564e-06 6.68148780404e-07 1.82088691128e-06 7.51639357743e-07 1.82384751313e-06 8.1335639076e-07 1.83561266184e-06 8.80400244075e-07 1.83370440146e-06 9.68043391993e-07 1.85008579696e-06 1.06737303229e-06 1.86166920841e-06 1.17319568569e-06 1.8962920103e-06 1.2755876384e-06 1.9155438875e-06 1.3524913821e-06 1.9350671599e-06 1.42661157132e-06 1.92148706935e-06 1.50696969049e-06 1.92961775479e-06 1.59018543299e-06 1.95849305451e-06 1.66856459029e-06 1.97640179833e-06 1.75240211778e-06 1.99666119128e-06 1.83733539229e-06 2.02913910344e-06 1.92417437478e-06 2.07713033184e-06 2.02024918522e-06 2.12481584798e-06 2.11907132876e-06 2.18535159487e-06 2.21824742509e-06 2.29046414157e-06 2.31868476798e-06 2.38816727313e-06 2.43483047165e-06 2.50557397809e-06 2.56357646815e-06 2.66311226566e-06 2.69486611336e-06 2.85159889729e-06 2.84517126723e-06 3.05393897658e-06 2.97700643884e-06 3.32857057246e-06 2.63984133132e-06 5.85510540073e-06 2.7820793696e-06 2.49727689865e-06 1.69792830561e-05 -0.00043474258129 2.88897776771e-05 -0.000519429515236 3.85955657616e-05 -0.00053939029084 4.71916629065e-05 -0.000543033548559 5.52968996232e-05 -0.000542516774793 6.31668295901e-05 -0.000541138095024 7.0887897657e-05 -0.000539589555385 7.84882822519e-05 -0.000537967400078 8.59745025858e-05 -0.000536232237736 9.33448606717e-05 -0.000534319491968 0.000100592290912 -0.000532162047315 0.000107704404671 -0.000529688093044 0.000114663069689 -0.000526819792695 0.000121441886244 -0.000523463122752 0.000128004922171 -0.000519501644645 0.000134301354383 -0.000514785598546 0.000140257420313 -0.000509087330415 0.000145766953203 -0.000502105758723 0.00015064815102 -0.000493261405553 0.000154539224568 -0.000481386650105 0.000155942845994 -0.000461113233492 0.000152984037323 -0.000427936260429 0.000144383855219 -0.0003812078343 0.000129775164818 -0.000323442990839 0.000109523626072 -0.000258441322695 8.43591103186e-05 -0.000189926845439 5.46574385562e-05 -0.000120369548273 2.0311505152e-05 -5.2004610617e-05 1.25524668046e-07 -3.00187431587e-06 -2.7786009096e-07 2.47052927232e-06 -1.59788111344e-07 2.51483628408e-06 -1.6822610937e-07 2.52898067063e-06 -1.91703242253e-07 2.55028398889e-06 -2.02446003182e-07 2.63044878379e-06 -1.87682785643e-07 2.71351352727e-06 -1.5086945635e-07 2.78201721409e-06 -1.04491645821e-07 2.83153703467e-06 -1.00493351018e-07 2.71509753256e-06 -3.52549243488e-08 2.79520066795e-06 2.91282237717e-06 -1.39743289023e-08 2.00431004533e-06 2.93195842988e-08 1.99636823062e-06 9.26768293686e-08 1.99397884647e-06 1.7254058813e-07 1.95386631643e-06 2.47840364482e-07 1.94635873806e-06 3.20883944629e-07 1.95124156474e-06 3.91523658435e-07 1.959425942e-06 4.59052691293e-07 1.96573163861e-06 5.23416676217e-07 1.9681151029e-06 5.86213968831e-07 1.96594675682e-06 6.38484682234e-07 1.95915011949e-06 6.57639922956e-07 1.93667013902e-06 6.55277353272e-07 1.87427222463e-06 6.94517293033e-07 1.78172708258e-06 7.88127985786e-07 1.73031692486e-06 8.8628817177e-07 1.73753463483e-06 9.74513297874e-07 1.74555943873e-06 1.05614115387e-06 1.76853692442e-06 1.13770470375e-06 1.78018109803e-06 1.23399245448e-06 1.80007784806e-06 1.34294323868e-06 1.80666238051e-06 1.44437834723e-06 1.83369857599e-06 1.52719862867e-06 1.83872940737e-06 1.61166264872e-06 1.84521341315e-06 1.70128313311e-06 1.86892875016e-06 1.79256508745e-06 1.88517355674e-06 1.87870670132e-06 1.91057216348e-06 1.96477611175e-06 1.94312254678e-06 2.06050418318e-06 1.98145651982e-06 2.15671729687e-06 2.02865329144e-06 2.24534203352e-06 2.0967751543e-06 2.36372075691e-06 2.17212481439e-06 2.47811592178e-06 2.27381349161e-06 2.59737509261e-06 2.3863449009e-06 2.72172386949e-06 2.53878729979e-06 2.86502585223e-06 2.70832295795e-06 3.00354194517e-06 2.915469457e-06 3.1899443238e-06 3.14198177892e-06 2.95318914685e-06 6.09197855855e-06 3.00337896816e-06 2.4469701655e-06 1.67194757173e-05 -0.000448458736319 2.79968742233e-05 -0.000530706953783 3.71661071666e-05 -0.000548559528074 4.53464543929e-05 -0.000551213866711 5.31183605873e-05 -0.00055028863277 6.06997116635e-05 -0.000548719388643 6.81577750354e-05 -0.000547047560106 7.5512828182e-05 -0.000545322397309 8.27681121083e-05 -0.000543487470302 8.99204494425e-05 -0.000541471782841 9.69617821286e-05 -0.000539203338014 0.000103878770774 -0.000536605043651 0.000110652128928 -0.000533593116015 0.000117253711972 -0.000530064673823 0.000123645539147 -0.000525893442222 0.000129772950134 -0.000520912982423 0.00013555728966 -0.000514871644776 0.000140883320691 -0.000507431766437 0.00014555194389 -0.000497930005967 0.000149154022965 -0.00048498870373 0.000149864514606 -0.000461823702139 0.000145611766169 -0.000423683470959 0.00013518451497 -0.000370780557591 0.00011843457148 -0.000306693032439 9.59682166794e-05 -0.00023597497797 6.88838194905e-05 -0.000162842500749 3.87460812375e-05 -9.0231614709e-05 5.30469189436e-06 -1.8562990017e-05 -1.77301343171e-07 2.48019680647e-06 -2.35865626005e-07 2.52914430997e-06 -2.18222100966e-07 2.49721806513e-06 -2.18789941552e-07 2.52956237525e-06 -2.25627817976e-07 2.55713143944e-06 -2.18741956018e-07 2.62357377656e-06 -1.94139296788e-07 2.68892631451e-06 -1.54983383477e-07 2.74287250824e-06 -1.02703495623e-07 2.77928134821e-06 -8.67163469826e-08 2.69920110791e-06 -6.59119978438e-08 2.77432017178e-06 2.84698218934e-06 8.56181713813e-09 1.99579067531e-06 3.66483303572e-08 1.96837607998e-06 1.08717065988e-07 1.92201315158e-06 1.84931711598e-07 1.87775821548e-06 2.56896232725e-07 1.87450197167e-06 3.31554053023e-07 1.87669205591e-06 4.10673504723e-07 1.8804153763e-06 4.88729074319e-07 1.88778496964e-06 5.63619761658e-07 1.89333273077e-06 6.35706517643e-07 1.89396621319e-06 7.05670141988e-07 1.88928981714e-06 7.63408266444e-07 1.87903114628e-06 7.91205138157e-07 1.84656918161e-06 8.00724278331e-07 1.77229636537e-06 8.38562196915e-07 1.69256244347e-06 9.36563150554e-07 1.63961494868e-06 1.04117566371e-06 1.64102729464e-06 1.1424419926e-06 1.66734936825e-06 1.23934937503e-06 1.68335093444e-06 1.3321607429e-06 1.70734035481e-06 1.42476696626e-06 1.71412639332e-06 1.52800948396e-06 1.73052142851e-06 1.62470945519e-06 1.74209170696e-06 1.71602734526e-06 1.75395454592e-06 1.81158680493e-06 1.77342618367e-06 1.90435431865e-06 1.79246035737e-06 1.99600006612e-06 1.81898072104e-06 2.08455094401e-06 1.85462668915e-06 2.1763035235e-06 1.88975614548e-06 2.27736693947e-06 1.92764132392e-06 2.386232029e-06 1.9879563346e-06 2.50357011444e-06 2.05482914615e-06 2.64057334384e-06 2.1368420112e-06 2.77010247326e-06 2.25683484957e-06 2.89332924988e-06 2.41558598769e-06 3.02011080967e-06 2.58155262982e-06 3.14016164728e-06 2.79532898019e-06 3.27365198354e-06 3.00862129794e-06 3.1899630229e-06 6.17527178266e-06 3.11633765287e-06 2.52057192756e-06 1.64346111303e-05 -0.000461777162031 2.71320498801e-05 -0.000541404430217 3.58034584487e-05 -0.000557230917307 4.35845126291e-05 -0.000558994868282 5.10229755564e-05 -0.000557727027176 5.83074884105e-05 -0.000556003828636 6.54915624992e-05 -0.000554231564563 7.25906479958e-05 -0.00055242141937 7.96062218355e-05 -0.000550502988015 8.65342733935e-05 -0.000548399784914 9.33660234778e-05 -0.000546035044532 0.000100087333726 -0.000543326315104 0.000106677818226 -0.000540183565855 0.000113107635293 -0.000536494459593 0.000119336785226 -0.000532122564142 0.000125306510626 -0.000526882682599 0.000130933331809 -0.000520498443555 0.000136091886411 -0.000512590300174 0.000140564992374 -0.000502403091582 0.00014389018526 -0.00048831387717 0.000143846073155 -0.000461779561484 0.000138178979705 -0.000418016355853 0.000125806884236 -0.000358408430703 0.000106844899854 -0.000287731068576 8.20417590054e-05 -0.000211171822732 5.21682873914e-05 -0.000132968969761 1.79281595577e-05 -5.59913749694e-05 -7.89115766328e-07 1.54362057874e-07 -4.60352368122e-07 2.1514926931e-06 -2.99520189665e-07 2.36835277853e-06 -2.64947416141e-07 2.46267141606e-06 -2.47292016467e-07 2.51192489667e-06 -2.41655747399e-07 2.55150956101e-06 -2.25145226455e-07 2.60707729359e-06 -1.97053568298e-07 2.66084957126e-06 -1.57514956763e-07 2.70335699916e-06 -1.0130636159e-07 2.72308965979e-06 -9.01467031438e-08 2.68800565442e-06 -7.6956861061e-08 2.76126931584e-06 2.76999122605e-06 4.42354181825e-08 1.95172614667e-06 7.66601528097e-08 1.93607486022e-06 1.35313018732e-07 1.86347458786e-06 2.01981089411e-07 1.81119975227e-06 2.7107192567e-07 1.80552155036e-06 3.44261635208e-07 1.80361315512e-06 4.23612347113e-07 1.8011755956e-06 5.08460891751e-07 1.80304767004e-06 5.94913950493e-07 1.80699084851e-06 6.78162368982e-07 1.81082801029e-06 7.58399477037e-07 1.80916023577e-06 8.36097711917e-07 1.80143791863e-06 8.96701197003e-07 1.78606662026e-06 9.30957285322e-07 1.73813533473e-06 9.59806938202e-07 1.66380170647e-06 1.02200548062e-06 1.57749877418e-06 1.10314753381e-06 1.55996564862e-06 1.20935848398e-06 1.56121686487e-06 1.31662141183e-06 1.57616428155e-06 1.42042043157e-06 1.60361487149e-06 1.5170932395e-06 1.61752243079e-06 1.61593240928e-06 1.63174759664e-06 1.71746448264e-06 1.64062080358e-06 1.81287479888e-06 1.65860316292e-06 1.91012077364e-06 1.67623536092e-06 2.00439058199e-06 1.69824440355e-06 2.09229209899e-06 1.73113163295e-06 2.18942207809e-06 1.75754891754e-06 2.3008536634e-06 1.77837505516e-06 2.41013648041e-06 1.81841125734e-06 2.53035135974e-06 1.86779167133e-06 2.66280162701e-06 1.92243040994e-06 2.78980396096e-06 2.00987401436e-06 2.92103359829e-06 2.12564217085e-06 3.04337771549e-06 2.29326244922e-06 3.13793963595e-06 2.48700856826e-06 3.21298643492e-06 2.72041436756e-06 3.25992425683e-06 2.96135170263e-06 3.42629590236e-06 6.00881100225e-06 3.14273753771e-06 2.80396249418e-06 1.61167775016e-05 -0.000474751293707 2.62934220778e-05 -0.000551581064741 3.45054404297e-05 -0.000565442862554 4.19002767382e-05 -0.000566389606956 4.90008237327e-05 -0.000564827470244 5.59772954692e-05 -0.000562980203612 6.28751237706e-05 -0.000561129307009 6.97074245651e-05 -0.000559253647001 7.64749534045e-05 -0.000557270454674 8.317323672e-05 -0.000555098015562 8.97929320445e-05 -0.000552654694573 9.63192485513e-05 -0.000549852592407 0.00010273079772 -0.000546595080593 0.000108996197847 -0.000542759829543 0.000115073533859 -0.000538199873556 0.000120899803264 -0.000532708928976 0.00012638694584 -0.000525985565899 0.000131398299925 -0.000517601636094 0.00013569829137 -0.000506703066243 0.000138764338392 -0.000491379904161 0.000137895853422 -0.00046091105859 0.000130682032971 -0.00041080250613 0.000116230796861 -0.000343957197774 9.49611690365e-05 -0.000266461409227 6.80268269386e-05 -0.000184237534629 3.77651214588e-05 -0.000102707126588 2.44806759223e-06 -2.06741048633e-05 -9.27914740624e-08 2.69527058914e-06 -3.02046148457e-07 2.36079327898e-06 -3.2405875431e-07 2.39040059704e-06 -3.02819588199e-07 2.44145832418e-06 -2.71236784223e-07 2.48036236664e-06 -2.53583401651e-07 2.53387425108e-06 -2.29155550203e-07 2.58266741862e-06 -1.98852250869e-07 2.63056539633e-06 -1.63799629507e-07 2.66831782438e-06 -1.10624194455e-07 2.66993468618e-06 -9.32670296913e-08 2.67072871863e-06 -7.32568346206e-08 2.74118282169e-06 2.69679437531e-06 6.44539508668e-08 1.88733090923e-06 1.14686607457e-07 1.88594981868e-06 1.52083833113e-07 1.82618660604e-06 2.20926117259e-07 1.74247080902e-06 2.94422839377e-07 1.73213956002e-06 3.70178883081e-07 1.72797203788e-06 4.4723784442e-07 1.72423096092e-06 5.29951944982e-07 1.72044717699e-06 6.19167261474e-07 1.71788878978e-06 7.12843645275e-07 1.71726405117e-06 8.03316322026e-07 1.71879917651e-06 8.91024349719e-07 1.71383874666e-06 9.74801655224e-07 1.70239530978e-06 1.02988118582e-06 1.6831553789e-06 1.06858528561e-06 1.62518882101e-06 1.11430431736e-06 1.53186529022e-06 1.19707104332e-06 1.47728054424e-06 1.28865777728e-06 1.46970878336e-06 1.38500412565e-06 1.47989341886e-06 1.50152208839e-06 1.48716947641e-06 1.60783582152e-06 1.51127758419e-06 1.7055284136e-06 1.5341195229e-06 1.80284980555e-06 1.54336063923e-06 1.90375016631e-06 1.5577594113e-06 2.00347465384e-06 1.5765649147e-06 2.09492074478e-06 1.60684930281e-06 2.19967608149e-06 1.62642619186e-06 2.31266989388e-06 1.64460227376e-06 2.42218768946e-06 1.66890763377e-06 2.53847012444e-06 1.7021795824e-06 2.66384639924e-06 1.74247144434e-06 2.79027360129e-06 1.7960469191e-06 2.91599348051e-06 1.88420149769e-06 3.05447871747e-06 1.98718883906e-06 3.19754985516e-06 2.15022979439e-06 3.30747582337e-06 2.37719147414e-06 3.32892125529e-06 2.69882889718e-06 3.06838768101e-06 3.22176708079e-06 3.07623794499e-06 6.0007429269e-06 3.07420383903e-06 2.80590951899e-06 1.58695744636e-05 -0.000487546668609 2.55599538648e-05 -0.000561271332861 3.33107883199e-05 -0.000573193553924 4.03049240665e-05 -0.000573383596223 4.70468303933e-05 -0.000571569244351 5.36959007339e-05 -0.000569629159642 6.02920283008e-05 -0.000567725339897 6.68459832643e-05 -0.000565807523933 7.33574500742e-05 -0.000563781857543 7.9821239438e-05 -0.000561561751681 8.62273867738e-05 -0.00055906079713 9.25605791813e-05 -0.000556185746474 9.87985873243e-05 -0.00055283305577 0.0001049087996 -0.000548870013277 0.000110847586339 -0.000544138635927 0.000116547755848 -0.000538409077726 0.000121917142805 -0.000531354935119 0.000126806628222 -0.000522491106019 0.000130962743523 -0.000510859166025 0.000133795350587 -0.000494212496334 0.00013202715356 -0.000459142839647 0.000123136638869 -0.000401911975353 0.000106483880167 -0.000327304432223 8.2677857065e-05 -0.000242655468003 5.25571289073e-05 -0.000154116706912 1.83675661328e-05 -6.85176800695e-05 -1.16847580203e-06 -1.13801695093e-06 -6.12881504797e-07 2.13970598858e-06 -4.6099263958e-07 2.20893540351e-06 -4.0502159112e-07 2.33445719919e-06 -3.48823920968e-07 2.38528460499e-06 -3.03556809746e-07 2.43511741545e-06 -2.73390971494e-07 2.50372868307e-06 -2.41405774346e-07 2.55070186947e-06 -2.05459722657e-07 2.59463908116e-06 -1.66883042214e-07 2.62976628153e-06 -1.33299382353e-07 2.63636928994e-06 -1.08033518118e-07 2.64542877755e-06 -7.50180423173e-08 2.70829305311e-06 2.62174380089e-06 7.09036063468e-08 1.81660563549e-06 1.33044128864e-07 1.8239406616e-06 1.6972465904e-07 1.78963372658e-06 2.43676590735e-07 1.66863689303e-06 3.21809232572e-07 1.65412518538e-06 4.01209092968e-07 1.6486905933e-06 4.81344870545e-07 1.64421275091e-06 5.63015914646e-07 1.63889283084e-06 6.4871849684e-07 1.63230169715e-06 7.42208169829e-07 1.6238892906e-06 8.42067098655e-07 1.61905390848e-06 9.42222027366e-07 1.61379633856e-06 1.04020164311e-06 1.60452395019e-06 1.1349280399e-06 1.58853245181e-06 1.19991620566e-06 1.56029840543e-06 1.22719407578e-06 1.50467826763e-06 1.28731829182e-06 1.41724017085e-06 1.38265236158e-06 1.37445371521e-06 1.47622405395e-06 1.38639778393e-06 1.57298616425e-06 1.39047791028e-06 1.67094858941e-06 1.41338258058e-06 1.78718932428e-06 1.41794230721e-06 1.89306910406e-06 1.43753838168e-06 1.9875462612e-06 1.4633358806e-06 2.08480838336e-06 1.47935234657e-06 2.19734234296e-06 1.49436147768e-06 2.30166089506e-06 1.52214984266e-06 2.40504313461e-06 1.54126232495e-06 2.52609625145e-06 1.54789773756e-06 2.64544196214e-06 1.58288298269e-06 2.76531853156e-06 1.62264282571e-06 2.88885305597e-06 1.67256933276e-06 3.04573980361e-06 1.72736310514e-06 3.22277933414e-06 1.81020717812e-06 3.41242589035e-06 1.96071120123e-06 3.59089479121e-06 2.19879926937e-06 3.71552309273e-06 2.57422019128e-06 3.51949201538e-06 3.41783999876e-06 2.52152276467e-06 6.99874985586e-06 3.35075251833e-06 1.97676341039e-06 1.59797325435e-05 -0.000500175335462 2.50920433927e-05 -0.000570383350486 3.22760054451e-05 -0.000580377260482 3.88031912219e-05 -0.000579910573516 4.514579598e-05 -0.000577911681332 5.1441829294e-05 -0.000575925061226 5.77198657504e-05 -0.000574003272686 6.39847080326e-05 -0.000572072284871 7.02332312086e-05 -0.0005700303157 7.64588810406e-05 -0.000567787348798 8.26510066845e-05 -0.000565252879014 8.87940244645e-05 -0.000562328727469 9.4865188192e-05 -0.000558904188223 0.000100831182164 -0.00055483598079 0.000106646979829 -0.000549954411331 0.000112241527765 -0.000544003607083 0.000117519262429 -0.000536632654067 0.000122317652933 -0.000527289482712 0.00012636701654 -0.000514908515791 0.00012900152203 -0.000496846984541 0.000126251065257 -0.000456392360733 0.000115553757965 -0.000391214664159 9.66201339905e-05 -0.000308370850309 7.04541350306e-05 -0.000216489481761 3.87827617758e-05 -0.000122445549101 3.66082634468e-06 -3.33956396326e-05 -9.26788248187e-08 2.61549529403e-06 -3.22826957872e-07 2.36986658218e-06 -4.21810081535e-07 2.30793713973e-06 -4.23547896349e-07 2.33621682575e-06 -3.89307106638e-07 2.35106649187e-06 -3.44791399306e-07 2.39062337499e-06 -3.11025884748e-07 2.4699850552e-06 -2.76621087054e-07 2.51631948662e-06 -2.37787680227e-07 2.55582895491e-06 -1.94553983264e-07 2.58655092487e-06 -1.61330712518e-07 2.6031704279e-06 -1.13151834602e-07 2.59733025376e-06 -5.95020329073e-08 2.6545693057e-06 2.56229959616e-06 7.20817314758e-08 1.74459766677e-06 1.42797973105e-07 1.75334902614e-06 1.93559439292e-07 1.73899458804e-06 2.69129538492e-07 1.59318815935e-06 3.50791848183e-07 1.57258623848e-06 4.33704395804e-07 1.56590087585e-06 5.17081829229e-07 1.56095721117e-06 6.01632074523e-07 1.55446299638e-06 6.88809138231e-07 1.54524424014e-06 7.79514885942e-07 1.53330177132e-06 8.79317570154e-07 1.51936825558e-06 9.87230005199e-07 1.50599884015e-06 1.09954796303e-06 1.49231824656e-06 1.20905639449e-06 1.47913177513e-06 1.30792592552e-06 1.46153176766e-06 1.37574747613e-06 1.43695332895e-06 1.4109978297e-06 1.38207804573e-06 1.4700164593e-06 1.31551583203e-06 1.56367128824e-06 1.29281712989e-06 1.6619580304e-06 1.29226173602e-06 1.76118622515e-06 1.31422107936e-06 1.85286716761e-06 1.32632143489e-06 1.9498728845e-06 1.34058712475e-06 2.05470732847e-06 1.35855099366e-06 2.16579346594e-06 1.36831165221e-06 2.26664536395e-06 1.39354948386e-06 2.37395020517e-06 1.41488134628e-06 2.49193554711e-06 1.42331288384e-06 2.60066524381e-06 1.4392083977e-06 2.71289172235e-06 1.47070048188e-06 2.85176659072e-06 1.48382320988e-06 3.00472940393e-06 1.51966635818e-06 3.17653432039e-06 1.55563484961e-06 3.36386025335e-06 1.62300679506e-06 3.6033590088e-06 1.72136036676e-06 3.93975343183e-06 1.86259298809e-06 4.42803929354e-06 2.08613102203e-06 4.97056602843e-06 2.87543379442e-06 2.21990502949e-06 9.75143446145e-06 4.30352327702e-06 -1.06603156217e-07 1.67395739417e-05 -0.000512610851796 2.49454689812e-05 -0.000578588848228 3.13658796563e-05 -0.000586797366883 3.7343597492e-05 -0.000585888059531 4.32528453521e-05 -0.000583820754372 4.91787732276e-05 -0.000581850856537 5.51285011467e-05 -0.00057995289984 6.10973587543e-05 -0.000578041064649 6.70783754743e-05 -0.000576011271232 7.30636123303e-05 -0.000573772536301 7.90421494245e-05 -0.00057123137545 8.49987374896e-05 -0.000568285281466 9.09107294306e-05 -0.000564816151479 9.6744916792e-05 -0.000560670144094 0.000102455315599 -0.000555664790152 0.00010796761802 -0.000549515892896 0.000113183558679 -0.000541848580637 0.000117926255039 -0.000532032166154 0.000121912654457 -0.000518894900086 0.000124393769795 -0.000499328081626 0.000120571474669 -0.000452570046707 0.000107930815467 -0.000378574014074 8.65538104129e-05 -0.000286993907112 5.77234475153e-05 -0.000187659222692 2.35930961686e-05 -8.83151039054e-05 -8.19758576416e-07 -8.98265669711e-06 -6.71007572846e-07 2.46675196137e-06 -5.68548473393e-07 2.2674180215e-06 -5.34679863905e-07 2.27408510443e-06 -4.90679528106e-07 2.29223656569e-06 -4.49649248409e-07 2.31005781941e-06 -4.06049334319e-07 2.3470466396e-06 -3.69227891195e-07 2.43318776164e-06 -3.30577028637e-07 2.47769306847e-06 -2.86964182101e-07 2.51224122121e-06 -2.38461781315e-07 2.53807930314e-06 -1.79347685083e-07 2.54408181959e-06 -1.03754384344e-07 2.52170707413e-06 -2.62731231505e-08 2.57721468279e-06 2.53599896045e-06 7.11539383329e-08 1.67363180272e-06 1.56599468666e-07 1.66804436066e-06 2.22669443936e-07 1.67306574526e-06 2.93244268321e-07 1.52274229901e-06 3.80645466208e-07 1.4853117632e-06 4.6686599534e-07 1.47980659542e-06 5.52204156132e-07 1.47574372502e-06 6.38836676516e-07 1.46795419855e-06 7.2898642578e-07 1.45521727472e-06 8.24216800715e-07 1.43819323578e-06 9.25282346996e-07 1.41842327065e-06 1.03361532107e-06 1.39778430071e-06 1.14971949883e-06 1.37632942348e-06 1.2708024587e-06 1.35816055306e-06 1.39067400082e-06 1.34176698951e-06 1.49963921797e-06 1.32808840697e-06 1.56550547194e-06 1.31630443134e-06 1.59973630269e-06 1.28136839498e-06 1.66131173336e-06 1.23131753465e-06 1.73910975316e-06 1.21453377601e-06 1.82526501669e-06 1.22813081613e-06 1.91637788364e-06 1.23526612456e-06 2.02002574685e-06 1.23699054559e-06 2.12662516668e-06 1.25199826586e-06 2.23393044003e-06 1.26104568402e-06 2.34091093124e-06 1.28660063267e-06 2.4426032866e-06 1.31321742337e-06 2.55039446869e-06 1.31554934147e-06 2.67379556245e-06 1.31583709105e-06 2.81080655224e-06 1.33372601008e-06 2.93737031446e-06 1.35730402712e-06 3.07651474782e-06 1.38057331991e-06 3.2373839239e-06 1.39483236172e-06 3.43704159051e-06 1.42342126653e-06 3.71535659885e-06 1.44320615497e-06 4.1690072044e-06 1.40905380612e-06 5.01273997669e-06 1.24243883739e-06 7.29760710828e-06 5.92413703174e-07 7.34590253778e-06 9.70378547013e-06 6.61206999925e-06 6.27453830468e-07 1.76419157756e-05 -0.000523640294288 2.47188243448e-05 -0.000585665407988 3.03675745089e-05 -0.000592445844242 3.58116902073e-05 -0.000591331969124 4.13008398434e-05 -0.000589309749272 4.68624238513e-05 -0.000587412324011 5.24845023034e-05 -0.000585574889798 5.81556383583e-05 -0.000583712132336 6.38669182556e-05 -0.000581722497147 6.96104159982e-05 -0.000579515990243 7.53761283713e-05 -0.000576997051521 8.11502112505e-05 -0.000574059333816 8.69111095438e-05 -0.000570577024098 9.26268758404e-05 -0.000566385888973 9.82511854277e-05 -0.000561289082033 0.000103707451128 -0.000554972143907 0.000108895099053 -0.000547036216408 0.000113621191168 -0.000536758244979 0.000117590818046 -0.00052286451392 0.00011996179613 -0.000501699032081 0.000114949572135 -0.000447557815985 0.000100233608465 -0.00036385807403 7.64111093636e-05 -0.00026317150128 4.52884704275e-05 -0.00015653658083 9.97703326685e-06 -5.30033628751e-05 -7.07562264483e-07 1.7019616743e-06 -6.50749495201e-07 2.40995778067e-06 -6.33005648933e-07 2.24969131036e-06 -6.06498960841e-07 2.24759696569e-06 -5.60946931795e-07 2.24670555118e-06 -5.19052450903e-07 2.26818638599e-06 -4.88608952116e-07 2.31662778865e-06 -4.42585323216e-07 2.38719023935e-06 -3.92598109447e-07 2.42773344357e-06 -3.36663223298e-07 2.45633594343e-06 -2.7492918354e-07 2.47637155143e-06 -1.96503835223e-07 2.46568536407e-06 -1.2079787065e-07 2.44608432957e-06 -3.98671756292e-08 2.49622210984e-06 2.49619173227e-06 7.00481592636e-08 1.60367454068e-06 1.74452441848e-07 1.563778974e-06 2.50430782547e-07 1.59722288978e-06 3.2209449042e-07 1.45121212674e-06 4.16218798347e-07 1.39131796021e-06 5.02885482249e-07 1.39326661757e-06 5.86457497896e-07 1.3922959199e-06 6.72508036952e-07 1.38202704189e-06 7.6522549394e-07 1.3626230304e-06 8.66362640833e-07 1.33717937745e-06 9.75511554332e-07 1.30939686389e-06 1.09140679827e-06 1.28201018847e-06 1.21074297479e-06 1.25711199419e-06 1.33306120938e-06 1.2359568123e-06 1.45732862771e-06 1.21760798177e-06 1.57868144612e-06 1.20683699011e-06 1.68713087128e-06 1.20794920305e-06 1.75957529557e-06 1.2090105755e-06 1.79689102244e-06 1.19408015118e-06 1.84240023784e-06 1.16909638634e-06 1.92036933667e-06 1.15022535072e-06 2.01402843908e-06 1.14166385623e-06 2.10392541262e-06 1.14714381793e-06 2.19859597146e-06 1.15737009815e-06 2.29877690091e-06 1.16089754265e-06 2.40885079183e-06 1.17655285063e-06 2.52242212644e-06 1.19966626013e-06 2.63685709699e-06 1.20113402195e-06 2.74251758023e-06 1.2101980712e-06 2.85384854614e-06 1.2224217263e-06 2.99260459604e-06 1.21857670747e-06 3.13561807037e-06 1.23759572641e-06 3.26817096093e-06 1.26230203348e-06 3.42103001692e-06 1.27062967214e-06 3.62206991924e-06 1.24220179226e-06 3.88308133006e-06 1.14811614171e-06 4.25220846545e-06 8.73434665018e-07 4.73980809574e-06 1.04335255978e-07 7.91946956689e-06 6.52425937455e-06 6.57034643302e-06 1.97662592849e-06 1.74749040384e-05 -0.000534544571628 2.39236517089e-05 -0.000592113908895 2.90843917487e-05 -0.000597606378296 3.41188266085e-05 -0.000596366242106 3.9239659149e-05 -0.000594430456822 4.44576485575e-05 -0.000592630217857 4.97588172979e-05 -0.000590875984782 5.51327575068e-05 -0.000589086015071 6.05725393111e-05 -0.000587162232926 6.60725543437e-05 -0.000585015967633 7.16254098528e-05 -0.000582549875427 7.72200886662e-05 -0.000579653985902 8.28374993485e-05 -0.000576194412138 8.84484885853e-05 -0.000571996859215 9.40073265267e-05 -0.000566847904258 9.94368291928e-05 -0.000560401633616 0.000104634537952 -0.000552233912673 0.000109389647355 -0.000541513342777 0.000113394551683 -0.00052686939605 0.000115692617636 -0.000503997083781 0.000109282475783 -0.000441147656002 9.21695501235e-05 -0.000346745242202 6.58367389097e-05 -0.000236838720631 3.40528653803e-05 -0.000124752460121 -1.38738460269e-07 -1.881135158e-05 -8.52993260179e-07 2.41625387906e-06 -7.36946816542e-07 2.29393975203e-06 -7.24415917289e-07 2.23718438887e-06 -6.88076619868e-07 2.21128052089e-06 -6.54632519759e-07 2.21328476151e-06 -6.12848310586e-07 2.22642701805e-06 -5.7993865243e-07 2.28374490932e-06 -5.22026324595e-07 2.32930658445e-06 -4.58127469759e-07 2.36386511704e-06 -3.89410335737e-07 2.38765082883e-06 -3.12163892522e-07 2.39916123046e-06 -2.13324081246e-07 2.36687739529e-06 -1.48397526853e-07 2.38113756025e-06 -7.84476780473e-08 2.42639729282e-06 2.41772759341e-06 7.60281955562e-08 1.52784420011e-06 1.88049196507e-07 1.45190698274e-06 2.71744023791e-07 1.51369102015e-06 3.71299049897e-07 1.3518016216e-06 4.64827949765e-07 1.29792308562e-06 5.48272771153e-07 1.30995328806e-06 6.27825146265e-07 1.31287437889e-06 7.14753773957e-07 1.29522988803e-06 8.143494358e-07 1.26316037384e-06 9.26402895804e-07 1.22525949935e-06 1.04770952428e-06 1.18822307665e-06 1.17368370767e-06 1.15616649935e-06 1.29960925998e-06 1.13131263542e-06 1.42334848323e-06 1.11233782093e-06 1.5428516909e-06 1.09821658532e-06 1.65290754435e-06 1.09688367287e-06 1.75401487867e-06 1.10693654315e-06 1.85475662583e-06 1.10835627838e-06 1.94573685766e-06 1.10318095554e-06 2.01242793346e-06 1.10247810193e-06 2.06567972604e-06 1.09703830403e-06 2.12551822892e-06 1.08188133813e-06 2.19944595241e-06 1.07326511292e-06 2.28877382656e-06 1.0680809986e-06 2.38175717806e-06 1.06794224056e-06 2.47558439395e-06 1.08274339837e-06 2.56776132247e-06 1.1075023322e-06 2.67117430609e-06 1.09773146338e-06 2.80046775692e-06 1.08091705691e-06 2.93808326641e-06 1.08482076069e-06 3.04594469217e-06 1.11073865045e-06 3.14220662747e-06 1.14134932072e-06 3.25498067647e-06 1.14955955221e-06 3.37542697921e-06 1.15020175328e-06 3.48391551691e-06 1.13381412256e-06 3.55776193976e-06 1.07434227097e-06 3.46517262203e-06 9.65825585748e-07 2.62058734424e-06 9.48923686778e-07 4.82197076119e-06 4.32222876176e-06 5.12488020263e-06 1.67371370412e-06 1.64445037419e-05 -0.000545864177763 2.26766457665e-05 -0.000598345950434 2.75509679698e-05 -0.000602480587834 3.22670702648e-05 -0.000601082240723 3.70576815473e-05 -0.000599220981093 4.19465375949e-05 -0.000597519002834 4.69301659236e-05 -0.000595859556501 5.20050306034e-05 -0.0005941608341 5.71693523407e-05 -0.000592326517564 6.24219008456e-05 -0.000590268484967 6.77595940632e-05 -0.000587887542109 7.31758062675e-05 -0.00058507017514 7.86556294465e-05 -0.00058167421556 8.41746349473e-05 -0.000577515848061 8.96891230061e-05 -0.000572362378231 9.51240331641e-05 -0.000565836531769 0.000100375873021 -0.000557485741936 0.000105216366425 -0.000546353822793 0.000109329218082 -0.000530982230255 0.000111629088039 -0.000506296927868 0.000103593429682 -0.000433112039208 8.35278772779e-05 -0.000326679755602 5.31585578541e-05 -0.000206469359373 1.7146972127e-05 -8.87406463203e-05 -1.50491394106e-06 -1.59422126763e-07 -1.15653456994e-06 2.06792515428e-06 -9.46173899373e-07 2.08361615596e-06 -8.63031548357e-07 2.15407154022e-06 -8.08486632023e-07 2.15676191792e-06 -7.6649371694e-07 2.17131767242e-06 -7.25272725744e-07 2.18523273242e-06 -6.72289517653e-07 2.23079055038e-06 -5.99531529584e-07 2.25657969885e-06 -5.19746255755e-07 2.28411307724e-06 -4.34783478235e-07 2.30272368846e-06 -3.38197286627e-07 2.30260717264e-06 -2.41846229939e-07 2.27055848641e-06 -1.78828742142e-07 2.31820402449e-06 -1.08695683799e-07 2.35622495081e-06 2.30908818459e-06 1.03503155321e-07 1.4244723314e-06 1.98638164327e-07 1.35694206692e-06 3.0084294335e-07 1.41165150192e-06 4.36551384602e-07 1.21624919425e-06 5.31340409343e-07 1.2032876992e-06 6.26637601858e-07 1.21480799894e-06 7.24372012153e-07 1.21529525802e-06 8.38417964867e-07 1.18134310381e-06 9.67603733605e-07 1.13413535109e-06 1.10241746411e-06 1.09060426625e-06 1.23379209715e-06 1.05700198966e-06 1.35512865778e-06 1.03497598875e-06 1.46264593124e-06 1.02393247299e-06 1.55625082635e-06 1.01885870135e-06 1.64124747372e-06 1.01333371344e-06 1.72930546708e-06 1.00892948467e-06 1.82587136e-06 1.01046682746e-06 1.92428106654e-06 1.01003562032e-06 2.02079931328e-06 1.00674362764e-06 2.11720889688e-06 1.00614164713e-06 2.20144850323e-06 1.01286373996e-06 2.26579713558e-06 1.01759102234e-06 2.31672673657e-06 1.02238314906e-06 2.37289185888e-06 1.01195120449e-06 2.44047554174e-06 1.00038123951e-06 2.53284144647e-06 9.90390773273e-07 2.65185038671e-06 9.88499242656e-07 2.77251771354e-06 9.77067671656e-07 2.87387305072e-06 9.79564138501e-07 2.96334476215e-06 9.9535577897e-07 3.04938193499e-06 1.0247075734e-06 3.15269688158e-06 1.03805408395e-06 3.259840924e-06 1.04242381972e-06 3.35301285077e-06 1.05707351587e-06 3.42621086142e-06 1.06066059441e-06 3.46528807277e-06 1.0352887004e-06 3.40780930281e-06 1.02334967564e-06 3.24745801691e-06 1.10878944482e-06 4.34572715041e-06 3.22370195499e-06 4.65235262832e-06 1.36692674061e-06 1.54327999428e-05 -0.000556644673416 2.13247297112e-05 -0.000604237854927 2.58978894305e-05 -0.000607053687795 3.03006067639e-05 -0.0006054848913 3.47636789825e-05 -0.00060368399024 3.93216807634e-05 -0.000602076950832 4.39825891537e-05 -0.000600520420189 4.87510362982e-05 -0.000598929244965 5.36316495385e-05 -0.000597207100587 5.86288242005e-05 -0.000595265634144 6.37452007177e-05 -0.00059300389635 6.89801173963e-05 -0.000590305072233 7.43249068609e-05 -0.000587018987847 7.97622192614e-05 -0.000582953145449 8.52526023688e-05 -0.000577852748684 9.07271192937e-05 -0.0005713110375 9.60820220778e-05 -0.000562840633863 0.00010107327952 -0.000551345066294 0.00010538381363 -0.000535292742883 0.000107802963332 -0.00050871607867 9.7987510789e-05 -0.000423296635278 7.49902826902e-05 -0.000303682481272 4.18817185583e-05 -0.000173360746723 2.64598826325e-06 -4.95046353681e-05 -4.30799836991e-07 2.91739999115e-06 -7.45153260822e-07 2.38233092641e-06 -9.08529366953e-07 2.2470332457e-06 -9.33315312696e-07 2.17889008599e-06 -9.28873668541e-07 2.15234877152e-06 -8.87045736079e-07 2.12951728445e-06 -8.46353976752e-07 2.14456944334e-06 -7.70550981861e-07 2.15501774555e-06 -6.81326861904e-07 2.16738797396e-06 -5.82626247985e-07 2.18544810199e-06 -4.79169080295e-07 2.19930295895e-06 -3.67477333282e-07 2.19095426596e-06 -2.85482468993e-07 2.18859896465e-06 -2.05836675606e-07 2.23855025363e-06 -1.27829256885e-07 2.27833371618e-06 2.18125330401e-06 1.52106285931e-07 1.27259032316e-06 2.21991422889e-07 1.28724557686e-06 3.37193383238e-07 1.29664968007e-06 5.04690140821e-07 1.04892164745e-06 6.24665201066e-07 1.08348098222e-06 7.18225451125e-07 1.12142459525e-06 8.29324201846e-07 1.10438158421e-06 9.63189657705e-07 1.04766504563e-06 1.10292627507e-06 9.94580097415e-07 1.23427045827e-06 9.59432558239e-07 1.35231296181e-06 9.39120169212e-07 1.45708183045e-06 9.30355446289e-07 1.55205495562e-06 9.290949167e-07 1.6450220789e-06 9.26015509548e-07 1.73802402967e-06 9.20444761689e-07 1.82736875204e-06 9.19689653374e-07 1.91692814993e-06 9.2100520476e-07 2.00143175235e-06 9.25622416324e-07 2.07705951344e-06 9.31198144412e-07 2.1530603199e-06 9.30214667842e-07 2.23604105528e-06 9.29949481073e-07 2.32154767542e-06 9.32141464076e-07 2.40833888503e-06 9.35638353553e-07 2.49152386162e-06 9.28798970842e-07 2.5753610663e-06 9.16563301638e-07 2.65954902576e-06 9.06210459003e-07 2.74257788735e-06 9.05470150216e-07 2.81991327677e-06 8.99726614702e-07 2.89606650149e-06 9.03404299953e-07 2.97585437727e-06 9.15560401669e-07 3.07720427213e-06 9.23368095687e-07 3.17366630071e-06 9.41598897134e-07 3.25163462207e-06 9.64491843395e-07 3.32733908218e-06 9.81408617432e-07 3.40620889958e-06 9.81886203881e-07 3.4643571589e-06 9.77224312584e-07 3.49945239035e-06 9.88134079589e-07 3.56521621644e-06 1.04292786246e-06 4.28777027932e-06 2.50080597579e-06 4.51386912858e-06 1.14077317482e-06 1.46174790302e-05 -0.000566748370719 1.99949516764e-05 -0.000609615329646 2.41945227753e-05 -0.000611253225771 2.82497800837e-05 -0.000609540100598 3.23651695851e-05 -0.000607799331012 3.65771986175e-05 -0.000606288935537 4.09016289017e-05 -0.000604844813408 4.5350022029e-05 -0.000603377607402 4.99332784003e-05 -0.000601790331762 5.46619341896e-05 -0.000599994268311 5.95454312296e-05 -0.000597887374433 6.45906270982e-05 -0.000595350250927 6.97974888642e-05 -0.000592225834138 7.51585261043e-05 -0.000588314169026 8.06419367969e-05 -0.00058333614707 8.61907306211e-05 -0.000576859820531 9.17023426833e-05 -0.000568352236189 9.69208771858e-05 -0.000556563584705 0.000101529606508 -0.000539901458474 0.000104161636063 -0.000511348113867 9.21821543186e-05 -0.000411317121571 6.59998542475e-05 -0.00027750031504 3.144103106e-05 -0.000138801691851 -1.51025197562e-06 -1.65531595593e-05 -1.22869286537e-06 2.63592540304e-06 -1.14941114377e-06 2.30310683956e-06 -1.1357904118e-06 2.23345327117e-06 -1.11977469117e-06 2.16290670365e-06 -1.09182196522e-06 2.12442556754e-06 -1.04617262558e-06 2.08389685314e-06 -9.78574759767e-07 2.07700109622e-06 -8.88744538501e-07 2.06521894707e-06 -7.82881912691e-07 2.06156018511e-06 -6.61978275068e-07 2.06458150767e-06 -5.36705829405e-07 2.07407034164e-06 -4.15629339269e-07 2.06991418221e-06 -3.24345826827e-07 2.09735086068e-06 -2.25998846563e-07 2.14028561344e-06 -1.29547789321e-07 2.18186477261e-06 2.05175605667e-06 1.87668744193e-07 1.08509116599e-06 2.65284879746e-07 1.20984763004e-06 3.6225315341e-07 1.19987457964e-06 5.02090504387e-07 9.09239879197e-07 6.47566729481e-07 9.38177871797e-07 7.57254173691e-07 1.01193872555e-06 9.03616444982e-07 9.58231311336e-07 1.05468002449e-06 8.96804433502e-07 1.19091802629e-06 8.58530930546e-07 1.30637031415e-06 8.44151584808e-07 1.40716368967e-06 8.38481887912e-07 1.49673075248e-06 8.40928732538e-07 1.57785864849e-06 8.48095835344e-07 1.65967032845e-06 8.44321465887e-07 1.74729709207e-06 8.3292730956e-07 1.84023653476e-06 8.26852877342e-07 1.93269178209e-06 8.28646845844e-07 2.02354783347e-06 8.34856464274e-07 2.11455842146e-06 8.40270422185e-07 2.20152452478e-06 8.43324167371e-07 2.28446691856e-06 8.4707436822e-07 2.36830214246e-06 8.48363924726e-07 2.45951442242e-06 8.44470244019e-07 2.5575670131e-06 8.30776582193e-07 2.65429206524e-06 8.19854508784e-07 2.73723201375e-06 8.23275467064e-07 2.81367280536e-06 8.29023398446e-07 2.87565327217e-06 8.37734364771e-07 2.94033798989e-06 8.38700646644e-07 3.02267010597e-06 8.3322398778e-07 3.10962527675e-06 8.36401562434e-07 3.18651199893e-06 8.64745618497e-07 3.25996273477e-06 8.91067056944e-07 3.33101947359e-06 9.10419295604e-07 3.4047202315e-06 9.08256355245e-07 3.48012183438e-06 9.0191309305e-07 3.56956564978e-06 8.98765593167e-07 3.73593999069e-06 8.76402308017e-07 4.32919247322e-06 1.9075762749e-06 4.46622022804e-06 1.00365393065e-06 1.39080210398e-05 -0.000576190171037 1.86893295687e-05 -0.000614396615168 2.24575426064e-05 -0.000615021395016 2.61242682295e-05 -0.00061320677674 2.98619311144e-05 -0.000611536946441 3.37045864374e-05 -0.000610131550369 3.76721070278e-05 -0.000608812301071 4.17809372187e-05 -0.000607486411539 4.60473856053e-05 -0.000606056759014 5.04881250545e-05 -0.000604434989923 5.51201862237e-05 -0.000602519419591 5.99595122613e-05 -0.000600189562189 6.50174501136e-05 -0.000597283758223 7.0299595556e-05 -0.000593596301672 7.57866453768e-05 -0.000588823185331 8.14409930977e-05 -0.000582514158564 8.71647321363e-05 -0.000574075962417 9.27055463211e-05 -0.00056210438345 9.77603498367e-05 -0.000544956246831 0.000100761646308 -0.000514349402207 8.60058642422e-05 -0.00039656142773 5.51340383917e-05 -0.000246628371917 1.59538307588e-05 -9.96217020733e-05 -1.30821086453e-06 7.08924576449e-07 -1.21322790639e-06 2.54099398322e-06 -1.2625811057e-06 2.35250354353e-06 -1.30789731369e-06 2.27880567273e-06 -1.31927200726e-06 2.17431374685e-06 -1.28832148651e-06 2.09350633683e-06 -1.2351415543e-06 2.03074771957e-06 -1.14150672442e-06 1.98339810063e-06 -1.03179774488e-06 1.95554402318e-06 -9.03986143695e-07 1.93378481875e-06 -7.54425966074e-07 1.91506124227e-06 -6.12273433515e-07 1.93195954202e-06 -4.86263295462e-07 1.94394791537e-06 -3.73190585993e-07 1.98432181023e-06 -2.58535158475e-07 2.02563606118e-06 -1.30859061393e-07 2.05429903716e-06 1.920903062e-06 1.74087708682e-07 9.11218190216e-07 3.0398818298e-07 1.08016534694e-06 4.1643351278e-07 1.08762970646e-06 4.68827723744e-07 8.57016655972e-07 6.04330429585e-07 8.0287380515e-07 8.00481804897e-07 8.16021603374e-07 9.75166404164e-07 7.83770416804e-07 1.1121618875e-06 7.60009763346e-07 1.22048005283e-06 7.50387813282e-07 1.30022809481e-06 7.64560497339e-07 1.37510621667e-06 7.63745307783e-07 1.463056384e-06 7.53109054614e-07 1.56469962791e-06 7.46574302441e-07 1.66893459759e-06 7.40201244974e-07 1.76838843114e-06 7.33581076617e-07 1.86335474724e-06 7.31988729135e-07 1.95584130382e-06 7.36256450354e-07 2.04742555542e-06 7.43362605057e-07 2.13804647562e-06 7.49733456648e-07 2.22767406031e-06 7.53773756561e-07 2.31830617468e-06 7.56511363856e-07 2.40957275286e-06 7.57155162265e-07 2.50011801297e-06 7.53970430336e-07 2.58433096231e-06 7.46593797173e-07 2.66954953592e-06 7.34652784487e-07 2.75653369622e-06 7.3629236096e-07 2.84321095501e-06 7.42335680573e-07 2.93347807406e-06 7.47442231083e-07 3.01446744625e-06 7.5768922116e-07 3.07714975089e-06 7.70501589119e-07 3.1301778599e-06 7.83390921861e-07 3.19330316758e-06 8.01618206712e-07 3.26434311309e-06 8.20089936186e-07 3.33135083894e-06 8.43462631666e-07 3.39899346306e-06 8.40729461036e-07 3.47387750417e-06 8.27142959807e-07 3.56121824757e-06 8.11475959796e-07 3.61868878939e-06 8.19046366532e-07 4.07250023657e-06 1.45370851365e-06 4.37780763705e-06 6.98424389237e-07 1.32516092277e-05 -0.000585063917982 1.73948689048e-05 -0.000618539800485 2.06827491465e-05 -0.000618309201094 2.39195415111e-05 -0.000616443501406 2.72459731565e-05 -0.000614863320859 3.06916727842e-05 -0.000613577204516 3.42774690245e-05 -0.000612398062388 3.80223767406e-05 -0.000611231292907 4.19468236893e-05 -0.000609981185573 4.60732058913e-05 -0.000608561355388 5.0426602114e-05 -0.000606872801035 5.50335661632e-05 -0.000604796512393 5.99198838718e-05 -0.000602170062582 6.51082123954e-05 -0.000598784617365 7.05987835698e-05 -0.00059431374521 7.63815082067e-05 -0.000588296870386 8.23659875371e-05 -0.000580060430046 8.8326742853e-05 -0.000568065120684 9.40020382678e-05 -0.000550631529835 9.76679453577e-05 -0.000518015327704 7.99960337851e-05 -0.00037888951557 4.53961301895e-05 -0.000212028728626 2.42009604319e-06 -5.66455343638e-05 -5.5721299489e-07 3.68625143398e-06 -1.02948795533e-06 3.0132983189e-06 -1.3343321921e-06 2.65738121287e-06 -1.49308519582e-06 2.43759279289e-06 -1.54912747767e-06 2.23038916329e-06 -1.52395962513e-06 2.06837099078e-06 -1.44572468468e-06 1.95254609533e-06 -1.33173275767e-06 1.86944073384e-06 -1.19435989831e-06 1.81820760047e-06 -1.04478234026e-06 1.78424684154e-06 -8.91019401418e-07 1.76134082094e-06 -7.35949265378e-07 1.77693614938e-06 -5.80301154396e-07 1.78834577449e-06 -4.29507261341e-07 1.8335702051e-06 -3.01205400242e-07 1.89741873281e-06 -1.34893713147e-07 1.88799422708e-06 1.78605848739e-06 1.23653225897e-07 7.87732281921e-07 3.03326719806e-07 9.0071419122e-07 4.70517708034e-07 9.20668579185e-07 5.49686222132e-07 7.7807643522e-07 6.82205082097e-07 6.70603558506e-07 8.51029993731e-07 6.47427293745e-07 9.78485790474e-07 6.56513584439e-07 1.06369359554e-06 6.74972875048e-07 1.15182138748e-06 6.62411916224e-07 1.26116891778e-06 6.55355126296e-07 1.37456089336e-06 6.50487435368e-07 1.48265075185e-06 6.45145791606e-07 1.5871841079e-06 6.42160358781e-07 1.68717406945e-06 6.40323493662e-07 1.7809004596e-06 6.39960614772e-07 1.86966752431e-06 6.43321676395e-07 1.95721440119e-06 6.48804167618e-07 2.04616972102e-06 6.54496369109e-07 2.13648055652e-06 6.59506569498e-07 2.2284848741e-06 6.61846858882e-07 2.32028278273e-06 6.6478302896e-07 2.41161696574e-06 6.65879024342e-07 2.50640455635e-06 6.59227609197e-07 2.60546010062e-06 6.47567420997e-07 2.69979378391e-06 6.40334468049e-07 2.79158567946e-06 6.44498023941e-07 2.88191577354e-06 6.51990429656e-07 2.96776281437e-06 6.61565742778e-07 3.04820002831e-06 6.77208188768e-07 3.12866323135e-06 6.90032381118e-07 3.20376054509e-06 7.08262259482e-07 3.25423314709e-06 7.51196716199e-07 3.28771217277e-06 7.8665002285e-07 3.33340822505e-06 7.97863215738e-07 3.38732734741e-06 7.8687981358e-07 3.46364814506e-06 7.50946855589e-07 3.58733338084e-06 6.88009600404e-07 3.81948528954e-06 5.86978401056e-07 4.24055721683e-06 1.03290350523e-06 4.42488237976e-06 5.14143561234e-07 1.26386658109e-05 -0.000593277539364 1.60898464722e-05 -0.000621990863883 1.88521946393e-05 -0.000621071458537 2.16205613461e-05 -0.000619211791767 2.45030694637e-05 -0.000617745770649 2.75233957559e-05 -0.000616597485883 3.0700537302e-05 -0.000615575171269 3.40536085583e-05 -0.000614584340341 3.76055296648e-05 -0.00061353308854 4.13835743406e-05 -0.000612339385659 4.54208247483e-05 -0.000610910038238 4.97555816749e-05 -0.000609131256866 5.44308998144e-05 -0.000606845368032 5.94912189784e-05 -0.000603844924454 6.49668851238e-05 -0.000599789397795 7.08870368134e-05 -0.000594217010872 7.71772935051e-05 -0.000586350668114 8.36607483795e-05 -0.000574548554649 9.00813530281e-05 -0.000557052124777 9.45301910584e-05 -0.000522464224608 7.33289551982e-05 -0.000357688339698 3.58650860149e-05 -0.000174564712694 -1.35543854583e-06 -1.94248386092e-05 -1.26467260886e-06 3.5955180658e-06 -1.485294053e-06 3.23395163942e-06 -1.72118402594e-06 2.89330505752e-06 -1.84079126142e-06 2.55723368413e-06 -1.86784528483e-06 2.2574787204e-06 -1.81331039014e-06 2.0138714137e-06 -1.70290140003e-06 1.84217351173e-06 -1.55736017074e-06 1.72393721318e-06 -1.39034157214e-06 1.65122981307e-06 -1.21677127827e-06 1.61071964417e-06 -1.03874255646e-06 1.58335861216e-06 -8.53350718635e-07 1.59159337323e-06 -6.74530034748e-07 1.60957432905e-06 -4.88593922699e-07 1.64768637825e-06 -3.47500641546e-07 1.75634802899e-06 -1.54761698883e-07 1.69535906052e-06 1.63131432585e-06 8.2464741611e-08 7.05499730422e-07 2.65801191359e-07 7.17611364924e-07 4.15409389362e-07 7.71309984184e-07 5.04502458948e-07 6.89248961476e-07 6.50870225163e-07 5.24452122266e-07 7.7400837154e-07 5.24471613764e-07 8.97472566005e-07 5.33212849975e-07 1.03400836563e-06 5.38590209002e-07 1.15895335899e-06 5.37611586536e-07 1.27707627091e-06 5.37368119303e-07 1.38873986766e-06 5.38953179913e-07 1.49251262502e-06 5.41494194077e-07 1.58935666063e-06 5.45431474683e-07 1.67970648851e-06 5.50081401697e-07 1.76366625138e-06 5.56103111614e-07 1.84362113852e-06 5.63463017284e-07 1.92737901095e-06 5.65138923002e-07 2.0233433593e-06 5.58620365452e-07 2.12733573527e-06 5.55598525677e-07 2.23122873886e-06 5.5803277986e-07 2.33365796258e-06 5.6242373245e-07 2.43579879569e-06 5.63797888514e-07 2.53732618872e-06 5.57744914885e-07 2.63715353204e-06 5.47773890736e-07 2.73313513086e-06 5.44366182134e-07 2.82663413334e-06 5.51004114738e-07 2.91963915605e-06 5.58961673259e-07 3.01343794656e-06 5.67740482319e-07 3.10686152579e-06 5.83753611203e-07 3.18856784478e-06 6.08278773288e-07 3.24939532011e-06 6.47460545973e-07 3.30200169535e-06 6.98611577336e-07 3.33273676848e-06 7.56010897113e-07 3.34446929917e-06 7.86173687603e-07 3.35653785413e-06 7.74969361646e-07 3.40097154676e-06 7.0683454167e-07 3.50741737896e-06 5.81819056364e-07 3.76370663664e-06 3.31076986754e-07 4.23041595003e-06 5.66365307734e-07 4.42766706541e-06 3.1709976196e-07 1.20114096878e-05 -0.000600861091841 1.47400130161e-05 -0.000624719333173 1.69399291509e-05 -0.000623271265328 1.92063106869e-05 -0.000621478093794 2.1615661231e-05 -0.000620155058989 2.41838182136e-05 -0.000619165598283 2.6925243874e-05 -0.00061831656455 2.98564383344e-05 -0.000617515511402 3.30007495891e-05 -0.000616677382929 3.63889307901e-05 -0.000615727552773 4.0061316279e-05 -0.000614582411837 4.40682538019e-05 -0.00061313818208 4.84716178618e-05 -0.000611248719829 5.33414154585e-05 -0.000608714707916 5.87493051712e-05 -0.00060519727437 6.47790898487e-05 -0.000600246776795 7.14089210782e-05 -0.000592980479992 7.85825507685e-05 -0.000581722157398 8.59946251558e-05 -0.000564464218171 9.13179777699e-05 -0.000527787573732 6.41821552899e-05 -0.000330552466244 1.96512885231e-05 -0.000130033601437 -9.09554059644e-07 1.13605075788e-06 -1.31986342857e-06 4.00587370015e-06 -1.80232064619e-06 3.71645235242e-06 -2.11792907097e-06 3.2089514785e-06 -2.240382599e-06 2.67972603282e-06 -2.23172893992e-06 2.24886273871e-06 -2.14314661657e-06 1.92532865338e-06 -2.00091629774e-06 1.6999832913e-06 -1.82553388279e-06 1.54859748946e-06 -1.62725404617e-06 1.45299451271e-06 -1.42332959334e-06 1.40684310001e-06 -1.21528394528e-06 1.37536388498e-06 -1.00335588181e-06 1.37971876892e-06 -7.97630954812e-07 1.40390374517e-06 -5.86832050314e-07 1.43693598557e-06 -4.03074563495e-07 1.57267619951e-06 -2.09451850025e-07 1.5017663921e-06 1.42190547674e-06 7.19208382413e-08 6.33793287997e-07 2.39160541392e-07 5.5059125884e-07 3.83121700954e-07 6.2762719128e-07 4.95397520777e-07 5.77225927734e-07 6.42286103969e-07 3.77741766897e-07 7.75213122434e-07 3.91706782757e-07 9.09274317254e-07 3.99306292145e-07 1.03996314921e-06 4.08046833375e-07 1.16168098128e-06 4.16030388774e-07 1.27475288431e-06 4.2442519817e-07 1.38022443381e-06 4.33603040946e-07 1.47799251206e-06 4.43841222198e-07 1.56844098516e-06 4.55091557397e-07 1.65244930111e-06 4.66175834534e-07 1.73571561425e-06 4.72934068005e-07 1.82982120849e-06 4.6945215023e-07 1.93664982567e-06 4.58402242399e-07 2.04610348652e-06 4.49256810353e-07 2.15406760666e-06 4.47719476155e-07 2.25956213211e-06 4.52618791146e-07 2.36260358139e-06 4.5945243438e-07 2.46410770778e-06 4.62354948725e-07 2.56612957375e-06 4.55768545043e-07 2.66961353554e-06 4.44324176991e-07 2.77178485256e-06 4.42211683203e-07 2.87136411858e-06 4.51428650306e-07 2.97107556136e-06 4.5923474254e-07 3.07550914989e-06 4.63293020876e-07 3.17794587127e-06 4.81267471758e-07 3.2657331325e-06 5.20520821137e-07 3.33793971191e-06 5.75225413955e-07 3.39289940804e-06 6.43760365865e-07 3.41137667911e-06 7.37543549284e-07 3.38948420996e-06 8.08201105148e-07 3.32575746551e-06 8.38895118254e-07 3.27442918333e-06 7.58317571337e-07 3.28828854768e-06 5.68601195344e-07 3.38135313449e-06 2.38254333071e-07 3.86985513809e-06 7.80213355586e-08 4.42935419001e-06 -2.42244529761e-07 1.1378243101e-05 -0.000607809776234 1.33306513563e-05 -0.000626671672336 1.49211430373e-05 -0.000624861713347 1.66530848697e-05 -0.000623209998818 1.85644288564e-05 -0.000622066368219 2.06572974314e-05 -0.000621258438226 2.29380332633e-05 -0.000620597277306 2.5417162553e-05 -0.000619994622816 2.81156026218e-05 -0.000619375808938 3.10653726205e-05 -0.000618677310685 3.43124444215e-05 -0.000617829472337 3.79185938179e-05 -0.000616744319702 4.19648719553e-05 -0.000615294984557 4.65492006378e-05 -0.00061329902265 5.17899370317e-05 -0.000610437991774 5.78272188521e-05 -0.000606284041642 6.47326690336e-05 -0.00059988589598 7.26980403615e-05 -0.000589687511734 8.15530381778e-05 -0.000573319190141 8.91183798433e-05 -0.000535352896975 5.69186373403e-05 -0.000298352514736 5.8628009271e-06 -7.89773449544e-05 3.56776768115e-07 6.64212363266e-06 -1.39680227128e-06 5.75952156027e-06 -2.26747305543e-06 4.58717592864e-06 -2.63851423282e-06 3.58003497246e-06 -2.74274586941e-06 2.78399552386e-06 -2.66246582383e-06 2.16861946352e-06 -2.51265715212e-06 1.77555919515e-06 -2.31822082213e-06 1.50558773667e-06 -2.1016578276e-06 1.33207756096e-06 -1.87068867888e-06 1.22207196672e-06 -1.63751458838e-06 1.17371973936e-06 -1.4132549725e-06 1.15115904914e-06 -1.17789725181e-06 1.14441949723e-06 -9.37518972618e-07 1.16358371725e-06 -7.12676246059e-07 1.21215467132e-06 -4.90145289301e-07 1.35018680889e-06 -2.69544657235e-07 1.28125808018e-06 1.15238627663e-06 8.36506494909e-08 5.50399074179e-07 1.89815949256e-07 4.44680537113e-07 3.73486071011e-07 4.4423423565e-07 5.36083153504e-07 4.14872461276e-07 6.45780645388e-07 2.68196496127e-07 7.71793995353e-07 2.65840189744e-07 8.99149511945e-07 2.72089892112e-07 1.0209948249e-06 2.8633516512e-07 1.13663443147e-06 3.00515383662e-07 1.24650219952e-06 3.14677403943e-07 1.35163159195e-06 3.28586076126e-07 1.45192916744e-06 3.43653055313e-07 1.54704030848e-06 3.60083110666e-07 1.64053792456e-06 3.72778666638e-07 1.73959777425e-06 3.73970591055e-07 1.84439590162e-06 3.64750139134e-07 1.95355938897e-06 3.4933290508e-07 2.0638435972e-06 3.39063716346e-07 2.17244601347e-06 3.39205742218e-07 2.2797445587e-06 3.45400659754e-07 2.38475891026e-06 3.54514752882e-07 2.48656137938e-06 3.60611719654e-07 2.59119567016e-06 3.51192626126e-07 2.70303150729e-06 3.32520007447e-07 2.81559777387e-06 3.2968935535e-07 2.92155578303e-06 3.45472292765e-07 3.02519549736e-06 3.5563319135e-07 3.13869340303e-06 3.49760342023e-07 3.25525104368e-06 3.64770916205e-07 3.35707664818e-06 4.18629457219e-07 3.44337504409e-06 4.890395318e-07 3.51435392574e-06 5.72736055691e-07 3.54755882006e-06 7.04381867273e-07 3.50738215623e-06 8.48339489076e-07 3.36153132174e-06 9.84558129722e-07 3.15071332849e-06 9.69956081894e-07 2.99686197311e-06 7.22612023013e-07 3.10601836931e-06 1.29084171538e-07 3.77852211513e-06 -5.9435083025e-07 4.66686137063e-06 -1.13049242178e-06 1.07554045737e-05 -0.000613898181899 1.18327887318e-05 -0.000627749069622 1.27618387923e-05 -0.000625790837667 1.39285612045e-05 -0.000624376775527 1.53242799121e-05 -0.000623462124207 1.69271686944e-05 -0.000622861345163 1.87289121121e-05 -0.000622399028486 2.07292591654e-05 -0.000621994971771 2.29428473011e-05 -0.000621589394077 2.53997240813e-05 -0.000621134182818 2.81484762647e-05 -0.000620578216649 3.12599941907e-05 -0.000619855827685 3.48339750759e-05 -0.00061886895282 3.90009694528e-05 -0.00061746599931 4.39340049219e-05 -0.000615371010443 4.98271137859e-05 -0.000612177118593 5.68458161354e-05 -0.000606904577385 6.53712985897e-05 -0.00059821294803 7.54207446175e-05 -0.000583368625261 8.64733075392e-05 -0.000546405404145 5.54770012818e-05 -0.000267355996231 2.62741312997e-06 -2.61274341709e-05 -8.73560697579e-07 1.01431794485e-05 -2.56729809581e-06 7.45332507178e-06 -3.26990265056e-06 5.28983528635e-06 -3.44021864196e-06 3.75039479773e-06 -3.35244135445e-06 2.69625313929e-06 -3.15445954928e-06 1.97067245042e-06 -2.89910006535e-06 1.52023441383e-06 -2.62861436098e-06 1.23514135395e-06 -2.36275646747e-06 1.06626284257e-06 -2.11159156961e-06 9.7095507613e-07 -1.86414252175e-06 9.2632491904e-07 -1.61261109514e-06 8.99686982401e-07 -1.36535538084e-06 8.97227431087e-07 -1.12502628318e-06 9.2332008656e-07 -8.77725308931e-07 9.64916581254e-07 -5.64698972152e-07 1.03724627466e-06 -2.38865143965e-07 9.55476798064e-07 9.13560048097e-07 1.42866197288e-07 4.07922674001e-07 2.61936588485e-07 3.25957193394e-07 4.07101944542e-07 2.99336420343e-07 5.03651561096e-07 3.18524730968e-07 6.05577140679e-07 1.66399302343e-07 7.24427604871e-07 1.47112069436e-07 8.46339816138e-07 1.50297061191e-07 9.59660509504e-07 1.73127759459e-07 1.06970851703e-06 1.90577499648e-07 1.17981135456e-06 2.04679880644e-07 1.29332357185e-06 2.15178059678e-07 1.40849262237e-06 2.28583973677e-07 1.52439971082e-06 2.44275749271e-07 1.63758565017e-06 2.59689063517e-07 1.74301993234e-06 2.68632898786e-07 1.84796549499e-06 2.59898473139e-07 1.96017118596e-06 2.37220823209e-07 2.07354894417e-06 2.25775834189e-07 2.18463274498e-06 2.28208942029e-07 2.29633173518e-06 2.33782822411e-07 2.40475614577e-06 2.46162549202e-07 2.5082493205e-06 2.57184171374e-07 2.62111128288e-06 2.3838192067e-07 2.75048840568e-06 2.03195101147e-07 2.87922835271e-06 2.00980340716e-07 2.997622401e-06 2.27125457755e-07 3.10501120125e-06 2.48249550641e-07 3.20524402714e-06 2.49578952172e-07 3.32457416056e-06 2.45397598446e-07 3.45641120688e-06 2.8685283768e-07 3.57651950066e-06 3.68860481023e-07 3.69135668056e-06 4.57866943759e-07 3.78034044802e-06 6.15275615928e-07 3.7852742603e-06 8.42977695326e-07 3.5866568201e-06 1.18355912791e-06 3.23200042829e-06 1.32456821209e-06 2.60403612121e-06 1.35064662749e-06 2.51861442264e-06 2.14546419828e-07 3.62277215065e-06 -1.69856289997e-06 4.96426437338e-06 -2.47179007708e-06 1.00165918169e-05 -0.000618950353691 1.01499569633e-05 -0.00062788260045 1.03771480923e-05 -0.000626018252049 1.09649583271e-05 -0.000624964770621 1.1852825791e-05 -0.000624350117342 1.29740274009e-05 -0.000623982626845 1.42942372961e-05 -0.000623719286219 1.579803844e-05 -0.000623498799774 1.74908843478e-05 -0.000623282252923 1.93972932302e-05 -0.00062304059515 2.15631224283e-05 -0.000622744042073 2.4061134751e-05 -0.000622353830849 2.70021036219e-05 -0.000621809906322 3.05483793248e-05 -0.000621012256565 3.49435321573e-05 -0.000619766134388 4.04976392328e-05 -0.000617731202874 4.76008619601e-05 -0.00061400774969 5.67112552076e-05 -0.000607323316811 6.71965052267e-05 -0.000593853832281 7.8544790455e-05 -0.000557753677598 3.33231745362e-05 -0.000222134292638 4.86551590087e-07 6.70923923751e-06 -3.08202842099e-06 1.3711798219e-05 -4.68723314108e-06 9.05859203767e-06 -4.82131087247e-06 5.42396014627e-06 -4.51630386516e-06 3.44542226979e-06 -4.09825864189e-06 2.27823717018e-06 -3.7034156954e-06 1.57585694785e-06 -3.30960780056e-06 1.12645653139e-06 -2.93971120786e-06 8.65279393708e-07 -2.61802304031e-06 7.4461404624e-07 -2.34613212855e-06 6.99109739711e-07 -2.08014572136e-06 6.6039036742e-07 -1.80552201773e-06 6.25121966024e-07 -1.52279489108e-06 6.14563090454e-07 -1.22238992967e-06 6.22977731924e-07 -8.99333282515e-07 6.41922342604e-07 -5.30675480221e-07 6.68640703395e-07 -1.98981089935e-07 6.23861583872e-07 7.14622870668e-07 1.89252489868e-07 2.19208590752e-07 3.76136988523e-07 1.39392328841e-07 4.86921606776e-07 1.88781972356e-07 5.5901226197e-07 2.46646005277e-07 5.59815825115e-07 1.6573895137e-07 6.60520025734e-07 4.65319077598e-08 7.7929782501e-07 3.1627606344e-08 8.86034889358e-07 6.64943296658e-08 1.00084617342e-06 7.58676388703e-08 1.12809051445e-06 7.75344005229e-08 1.25945837368e-06 8.39071797853e-08 1.3891775458e-06 9.89595339534e-08 1.51034449949e-06 1.23201762637e-07 1.61865123703e-06 1.51473931429e-07 1.71665633654e-06 1.70718082439e-07 1.81836655773e-06 1.58280087536e-07 1.93854383444e-06 1.1713121764e-07 2.07221328789e-06 9.21920757372e-08 2.20369648957e-06 9.68024668563e-08 2.3320081652e-06 1.05545394691e-07 2.47033692416e-06 1.07892355198e-07 2.62114101418e-06 1.0643799147e-07 2.75209971852e-06 1.07460940343e-07 2.85303640582e-06 1.02303545885e-07 2.9571071967e-06 9.69280179063e-08 3.07495986011e-06 1.09301912632e-07 3.19844117572e-06 1.24766546199e-07 3.31945629439e-06 1.28536310639e-07 3.43255223261e-06 1.32262090936e-07 3.55953087661e-06 1.59779852339e-07 3.72332619655e-06 2.04950467257e-07 3.91541731557e-06 2.6560007882e-07 4.12963061949e-06 4.00579146488e-07 4.32883360373e-06 6.43426583075e-07 4.19091658917e-06 1.32113934057e-06 4.26922798862e-06 1.24629497694e-06 3.0169144225e-06 2.60290003715e-06 7.71844111845e-07 2.4576718805e-06 3.49046342695e-06 -4.4182775083e-06 4.94729238988e-06 -3.92852410003e-06 8.93565247478e-06 -0.000622938901901 7.98783258923e-06 -0.000626935129163 7.54333909725e-06 -0.000625574097168 7.64288505466e-06 -0.000625064582623 8.10313517065e-06 -0.000624810554449 8.7919817729e-06 -0.000624671596284 9.64972580339e-06 -0.000624577108501 1.0651027881e-05 -0.000624500147031 1.17942729612e-05 -0.00062442552264 1.30961935098e-05 -0.000624342524113 1.45925765239e-05 -0.000624240423755 1.63439251479e-05 -0.00062410516973 1.84485304807e-05 -0.000623914496007 2.10659405407e-05 -0.000623629643551 2.44704825156e-05 -0.000623170654025 2.91179367829e-05 -0.000622378617699 3.58817228862e-05 -0.000620771507667 4.59572573628e-05 -0.00061739880501 5.92254573113e-05 -0.000607122012981 7.59180632338e-05 -0.000574446223995 8.3665777292e-06 -0.000154582692136 3.27868621494e-06 1.17971368541e-05 -7.96442923333e-06 2.49550218442e-05 -8.30200412786e-06 9.39619887002e-06 -6.90190466377e-06 4.02388824387e-06 -5.73861456848e-06 2.28215207852e-06 -4.83838546213e-06 1.37802702163e-06 -4.17010451636e-06 9.07594043553e-07 -3.64303760594e-06 5.99409725598e-07 -3.20247757963e-06 4.24743524558e-07 -2.82418945821e-06 3.66356153603e-07 -2.48695788064e-06 3.61914132384e-07 -2.17433421958e-06 3.47808685409e-07 -1.87004122134e-06 3.20877919036e-07 -1.56037748205e-06 3.04953039899e-07 -1.24774408562e-06 3.10399222529e-07 -9.35515753714e-07 3.29744903141e-07 -6.09669613549e-07 3.42860384783e-07 -2.97338418846e-07 3.11610801245e-07 4.17342816451e-07 2.19449069789e-07 3.58949845166e-07 5.47850353249e-07 7.94619324305e-07 9.60463582524e-07 1.00707493531e-06 1.03876520324e-06 1.10531898697e-06 1.18124192416e-06 1.25882877726e-06 1.34278483616e-06 1.44179146236e-06 1.56503891471e-06 1.71655878614e-06 1.88732485178e-06 2.04565274543e-06 2.16283013763e-06 2.25506212505e-06 2.35190276505e-06 2.45747723529e-06 2.56539834213e-06 2.6718524685e-06 2.77933580476e-06 2.88164281191e-06 2.97858502557e-06 3.08787374233e-06 3.21262381182e-06 3.3411150669e-06 3.47331864439e-06 3.63301565626e-06 3.83785225059e-06 4.10321811595e-06 4.50348847445e-06 5.14667236556e-06 6.467734926e-06 7.71398609925e-06 1.03150086305e-05 1.27703151985e-05 8.35118551531e-06 4.4225957464e-06 6.48350655195e-06 4.54817812612e-06 3.97391372935e-06 3.90920865562e-06 4.09857112226e-06 4.42692059025e-06 4.84977944824e-06 5.34961356429e-06 5.92408260049e-06 6.5815565558e-06 7.34113579036e-06 8.23597254685e-06 9.32148621273e-06 1.06918533235e-05 1.25212153571e-05 1.51426116837e-05 1.93711251532e-05 2.69723377409e-05 4.48503484635e-05 9.54041755573e-05 -5.91785051215e-05 -4.73812890009e-05 -2.24261809391e-05 -1.30299709833e-05 -9.00607498699e-06 -6.72391569678e-06 -5.34588232204e-06 -4.43828150719e-06 -3.83886396057e-06 -3.41410981311e-06 -3.04773971618e-06 -2.68580862014e-06 -2.33797954731e-06 -2.0170779338e-06 -1.71209878044e-06 -1.40167469285e-06 -1.0719028948e-06 -7.29007233793e-07 -4.17342816451e-07 ) ; boundaryField { frontAndBack { type empty; value nonuniform 0(); } upperWall { type calculated; value uniform 0; } lowerWall { type calculated; value uniform 0; } inlet { type calculated; value nonuniform List<scalar> 20 ( -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 -0.000625 ) ; } outlet { type calculated; value nonuniform List<scalar> 20 ( 0.000482810359566 0.000610084625605 0.000699050246177 0.000747949791178 0.000772716403379 0.000782796100688 0.000778927017673 0.000764611399065 0.00074741638074 0.000727532752018 0.000704884661222 0.000679328186192 0.000650682883961 0.000618687047338 0.000582952780981 0.000542873804078 0.000497200260852 0.0004423772902 0.000372161849558 0.000295002660875 ) ; } } // ************************************************************************* //
[ "as998@snu.edu.in" ]
as998@snu.edu.in
d3766278190274d941bfb90359d035b9be23aa73
aebb18d99659c990c35683fc5c6050a4fac6109e
/InputLayer.h
8f8c370054d6779a3fee5f1b3f1e7b93b136a8c9
[]
no_license
belisariops/ConvolutionalNetwork
4899b3d5808b464a4a10c2e5d348ea95aa5926a8
4794bf828b7bea084c5698b3656e825e6d7ceb4b
refs/heads/master
2021-07-09T15:26:22.058815
2017-10-09T19:19:21
2017-10-09T19:19:21
104,827,645
0
0
null
null
null
null
UTF-8
C++
false
false
313
h
// // Created by belisariops on 9/25/17. // #ifndef CONVOLUTIONALNETWORK_INPUTLAYER_H #define CONVOLUTIONALNETWORK_INPUTLAYER_H #include "NeuralLayer.h" #include "Filter.h" class InputLayer { public: InputLayer(int width,int height, int channels); private: }; #endif //CONVOLUTIONALNETWORK_INPUTLAYER_H
[ "belisariops@gmail.com" ]
belisariops@gmail.com
ea8b6ee0388c5aa2b14f25a4fd8877dd90a5e400
d71d6eefa6337e480111a5af12180f34df6f9270
/MTT/Current/Testcom2.cpp
61353728312ab1777a6bfdc1dab274a606484a61
[]
no_license
renconan/qt
fc2b3f4a07630e34ed9acdfaf94e6db99791fcc9
c19154874ba9f48ee99e91c7999e9c8856cb3a80
refs/heads/master
2021-01-22T07:58:45.174666
2017-09-06T01:22:01
2017-09-06T02:51:52
102,321,688
0
0
null
null
null
null
UTF-8
C++
false
false
119,771
cpp
#include <string.h> #include <QTime> #include <stdio.h> #include <stdlib.h> #include <math.h> #include <assert.h> #include <ctype.h> #include "Config.h" #include "Defpam.h" #ifdef ARMLINUX #include <unistd.h> //write read #endif extern float StartCurrent,EndCurrent,ActStep; extern TEMPRORARYDATA *temprorarydata; extern unsigned char result[70],receive_data[70]; extern double out_time,change_timedata; extern float LogicResolution; extern float FreqRevision,VaPhaseRevision,VbPhaseRevision,VcPhaseRevision; extern float IaPhaseRevision,IbPhaseRevision,IcPhaseRevision; extern float V1RelaPhase,V2RelaPhase,V3RelaPhase,I1RelaPhase,I2RelaPhase,I3RelaPhase; unsigned char ID=0x00,response[3]; double max_output_v_a; //,max_f_v_a=50,min_f_v_a=0.5,output_offset_v_a=0,amp_v_a=360; double max_output_v_b; //,max_f_v_b=50,min_f_v_b=0.5,output_offset_v_b=0,amp_v_b=120; double max_output_v_c; //,max_f_v_c=50,min_f_v_c=0.5,output_offset_v_c=0,amp_v_c=240; double max_output_v_z; double max_output_i_a;//,max_f_i_a=50,min_f_i_a=0.5,output_offset_i_a=0,amp_i_a=75; double max_output_i_b;//,max_f_i_b=50,min_f_i_b=0.5,output_offset_i_b=0,amp_i_b=195; double max_output_i_c;//,max_f_i_c=50,min_f_i_c=0.5,output_offset_i_c=0,amp_i_c=315; extern float MAX_V_VALUEDATA_DC,MAX_V_VALUEDATA_AC,MIN_V_VALUEDATA_DC,MIN_V_VALUEDATA_AC; extern float MAX_I_VALUEDATA_DC,MAX_I_VALUEDATA_AC,MIN_I_VALUEDATA_DC,MIN_I_VALUEDATA_AC; extern int V1DC; unsigned char data_i_a[70],data_i_b[70],data_i_c[70],data_v_b[70],data_v_a[70],data_v_c[70],data_v_z[70]; unsigned char alive_status=0; extern float faultduration; int is_digit(unsigned char ch) { if(ch>='0'&&ch<='9') return 1; else return 0; } int is_space(unsigned char ch) { if(ch==' ') return 1; else return 0; } double my_atof(unsigned char *s) { double power,value; int i,sign; assert(s!=NULL);//ÅжÏ×Ö·ûŽ®ÊÇ·ñΪ¿Õ for(i=0;is_space(s[i]);i++);//³ýÈ¥×Ö·ûŽ®Ç°µÄ¿Õžñ sign=(s[i]=='-')?-1:1; if(s[i]=='-'||s[i]=='+')//ÒªÊÇÓзûºÅλŸÍǰœøÒ»Î» i++; for(value=0.0;is_digit(s[i]);i++)//ŒÆËãСÊýµãÇ®µÄÊý×Ö value=value*10.0+(s[i]-'0'); if(s[i]=='.') i++; for(power=1.0;is_digit(s[i]);i++)//ŒÆËãСÊýµãºóµÄÊý×Ö { value=value*10.0+(s[i]-'0'); power*=10.0; } return sign*value/power; } unsigned long pow_my(int base,int n) { unsigned long result=1; while(n-->0) { result *= base; } return result; } /*----------------------------------------------------------------------------- º¯ÊýÃû: serial_read ²ÎÊý: int fd,char *str,unsigned int len,unsigned int timeout ·µ»ØÖµ: Ôڹ涚µÄʱŒäÄÚ¶ÁÈ¡ÊýŸÝ£¬³¬Ê±ÔòÍ˳ö£¬³¬Ê±Ê±ŒäΪmsŒ¶±ð ÃèÊö: ÏòfdÃèÊö·ûµÄŽ®¿ÚœÓÊÕÊýŸÝ£¬³€¶ÈΪlen£¬ŽæÈëstr£¬timeout Ϊ³¬Ê±Ê±Œä *-----------------------------------------------------------------------------*/ int serial_read(int fd, unsigned char *str, unsigned int len,unsigned char *cmp_data,int cmp_len) { int ret; //ÿŽÎ¶ÁµÄœá¹û int sret; //selectŒà¿Øœá¹û int readlen = 0; //ʵŒÊ¶ÁµœµÄ×ÖœÚÊý unsigned char * ptr; unsigned int ii=50000; ptr = str; while(readlen<len&&ii>0) { ret=read(fd,ptr,1); if(ret <0) { perror("read err:"); break; } else if(ret == 0) { ii--; continue; } if(readlen<cmp_len) { if((*ptr^(*cmp_data))!=0) { cmp_data-=readlen; ptr-=readlen; readlen=0; continue; } cmp_data++; } ii=50000; readlen += ret; //žüжÁµÄ³€¶È ptr += ret; } return readlen; } #ifdef ARMLINUX //check_f ÊÇ·ñÐèҪУÑé Ö÷ÒªÐèÒªžÄÕâžöº¯Êý int receive_send(int fd,unsigned char *Send_str,int Send_len,unsigned char *cmp_data,int Receive_len,int cmp_len,int check_f) { unsigned char send_checksum,receive_checksum; unsigned char *ptr,*ptr1; int reclen=0; unsigned char buff[512]; int i=0; ptr=Send_str; ptr1=Send_str; send_checksum=0,receive_checksum=0; if(Send_len!=0) { for(i=0;i<Send_len;i++) { send_checksum=*ptr^send_checksum; ptr++; } // write(fd,Send_str,Send_len); //·¢ËÍ×Ö·û³öÈ¥ *(Send_str+Send_len)=send_checksum; // *(Send_str+Send_len)=send_checksum; write(fd,Send_str,Send_len+1); //·¢ËÍ×Ö·û³öÈ¥ // write(fd,&send_checksum,1); //·¢ËÍУÑéÂë } if(Receive_len!=0) { // delayus(100); reclen= serial_read(fd,receive_data,Receive_len+check_f,cmp_data,cmp_len); if(reclen==(Receive_len+check_f)) { if(memcmp(cmp_data,receive_data,cmp_len)==0) //Èç¹û±ÈœÏµÄ×Ö·û²»¶Ô Ôò·µ»Ø-1 return 1; else return -1; } else return -1; } return 1; } int transmit(int fd, unsigned char *buffer,int length, int length2) { unsigned char ackpacket[5]={0x0f,0x5a,0xf0,0xa5,0x00}; unsigned char send_data1[70]={0xa5,0xa5,0xa5,0xa5}; int send_len,re_len,cmp_len; int i; send_len=length+1; if(length2) re_len=(length2-1)+5; else re_len=5; cmp_len=5; send_data1[4]=0x00; //ÕâÀïÊÇ·ñÓÐÎÊÌâ buffer=buffer+4; for(i=0;i<length-4;i++) { send_data1[5+i]=*buffer; // ·¢Ë͵ÄÊýŸÝsend_data1 buffer++; } while(1) { i=receive_send(fd,send_data1,send_len,ackpacket,re_len,cmp_len,0); if(i==1) { for(i=0;i<length2;i++) result[i]=receive_data[5+i]; //receive_data ǰ5λÊÇÓŠŽðÐźŠmemset(receive_data,0,70); return(0); } memset(receive_data,0,70); } } /*µçѹ,µçÁ÷ARTÏà¶ÔÖµŒÆËã*/ int chang_amp(double out_value,double *max_output_data) { int i; if(out_value>*max_output_data) out_value=*max_output_data; i=(int)(out_value/(*max_output_data)*32767); if(abs(i)>32766) i=i/abs(i)*32766; return(i); } //2016-06-01 int chang_ampStep(double out_value,double *max_output_data) { int i; if(out_value>*max_output_data) out_value=*max_output_data; i=(int)(out_value/(*max_output_data)*8388608); if(abs(i)>8388608) i=i/abs(i)*8388608; return(i); } void frec(double x,int length,unsigned char *buffer) { char data1,data2; int i; x=x-(int)x; for(i=0;i<length;i++) { x=x*16; data1=(int)(x); data1=data1<<4; x=x-(int)x; x=x*16; data2=(int)(x); buffer[i]=data1|data2; x=x-(int)x; } buffer[i]=NULL; return; } void frec1( const float f, int BitsInt, int Bytes,unsigned char *rt) { unsigned char intBytes[5]={0,0,0,0,0}; //float Bytes[4]; int i; union { char B[4]; long L; } CB; short i1, i2; // integer part //IntPart = abs((int)f)*(int)pow(2, (16-BitsInt)); /*for(int i=0; i<2; i++) intBytes[i] =0x00;// BytePart[1-i];*/ // fraction part CB.L =(long)((fabs(f)-abs((int)f))*pow(2, (Bytes*8-BitsInt))); i2 = BitsInt/8; i1 = Bytes - i2; // bytes of fraction part for (i=0; i<i1; i++) intBytes[i+i2] += CB.B[i1-i-1]; // singed value /*if (Signed) { if (f<0 && intBytes[0] < 112) intBytes[0] += 112; // 0x80 else if (f>0 && intBytes[0] >= 112) intBytes[0] -= 112; // 0x80 }*/ for(i=0; i<Bytes;i++) *rt++ = intBytes[i]; return; } char *strncat1( char *buffer,char *buffer1) { int i,j; for(i=0;buffer[i]!=NULL;) i++; for(j=0;buffer1[j]!=NULL;j++,i++) buffer[i]=buffer1[j]; buffer[i]=NULL; return(buffer); } unsigned char autoc(unsigned char *p) { unsigned char data,temp; if( memcmp(p,"0x",2)==0 ) { temp=*(p+2); if(temp>='0'&&temp<='9') data=(temp-48)<<4; else if(temp>='A'&&temp<='F') data=(temp-55)<<4; else if(temp>='a'&&temp<='f') data=(temp-87)<<4; temp=*(p+3); if(temp>='0'&&temp<='9') data=data|(temp-48); else if(temp>='A'&&temp<='F') data=data|(temp-55); else if(temp>='a'&&temp<='f') data=data|(temp-87); return(data); } else return(0); } //×ÖŽ®ÃüÁîœâÊͳÌÐò void artExec(int fd, char *command_str,unsigned char *result1,int max_result_length) { unsigned char *p1,*p2,*p3,*p4,data_cmp[70],data1,data2,data_cmp1[70]; unsigned char sys_data[40],inp_data[40],seq_data[40],amp_data[40],out_data2[70],*out_data; int i,j,k,length,status=0; double x,max_output; int y; long time_out; float startvalue,endvalue,actstep; int tripvalue,returnvalue; p4=(unsigned char *)command_str; p1=(unsigned char *)command_str; p2=p1; if(memcmp(p1,"sys:",4)==0) //system commands { for(i=0;i<40;i++) sys_data[i]=0x00; for(i=0;i<4;i++) sys_data[i]=0xa5; p1=p1+4; if(memcmp(p1,"reset",5)==0) { sys_data[4]=0x00; sys_data[5]=0x03; sys_data[6]=0x01; //command: sys:reset,[01].function:execute a reset on an ART device.two bytes respomse. length=7; } else if(memcmp(p1,"test?",5)==0) { sys_data[4]=0x00; sys_data[5]=0x03; sys_data[6]=0x02; //command: sys:test? [02].function:start self test of an ART device.two bytes response. length=7; } else if(memcmp(p1,"cfg?",4)==0) { sys_data[4]=0x00; sys_data[5]=0x03; sys_data[6]=0x03; //command: sys:cfg? [03].function: get system information of an ART device.twenty three bytes respponse. length=7; //include:ART serial number } else if(memcmp(p1,"status?",7)==0) { sys_data[4]=0x00; sys_data[5]=0x04; sys_data[6]=0x04; //commande: sys:status?[(<bit_number>)] [04].funtion: get status of an ART device.two bytes response. p1=p1+7; if(p1==NULL) sys_data[7]=0x00; else sys_data[7]=*p1|0x1f; length=8; } else if(memcmp(p1,"rptrps",6)==0) { sys_data[4]=0x00; sys_data[5]=0x03; sys_data[6]=0x05; //command: sys:rptrps [05].function:request to resend last resopnse.no response. length=7; } else if(memcmp(p1,"flash:run",9)==0) { sys_data[4]=0x00; sys_data[5]=0x03; sys_data[6]=0x0e; length=7; } transmit(fd,sys_data,length,max_result_length); } else if(memcmp(p1,"out:",4)==0) //output commands { p1=p1+4; if(memcmp(p1,"ana:",4)==0) { for(i=0;i<39;i++) { out_data2[i]=0x00; } for(i=0;i<4;i++) { out_data2[i]=0xa5; data_v_a[i]=0xa5; data_i_a[i]=0xa5; data_v_b[i]=0xa5; data_i_b[i]=0xa5; data_v_c[i]=0xa5; data_i_c[i]=0xa5; data_v_z[i]=0xa5; } p1=p1+4; if(memcmp(p1,"v(",2)==0) { p2=p1+7; if(memcmp(p2,"on",2)==0) { out_data2[4]=0x00; //command: out:[ana:]v(<generator>):on OR out:[ana:]on [11]. out_data2[5]=0x04; //function:Switch on all generators listed in <generator_list>. out_data2[6]=0x11; //Switch on all defined generators if the 2nd byte is all ones. if(memcmp(p1,"v(1:",4)==0) out_data2[7]=0x00; else if(memcmp(p1,"v(2:",4)==0) out_data2[7]=0x04; else if(memcmp(p1,"v(3:",4)==0) out_data2[7]=0x08; else if(memcmp(p1,"v(4:",4)==0) out_data2[7]=0x0c; p1=p1+4; data1=(p1[0]&0x3)-1; out_data2[7]=out_data2[7]|data1; if (out_data2[7]==0xff) out_data2[7]=0x03; length=8; transmit(fd,out_data2,length,max_result_length); } else if(memcmp(p2,"off",3)==0) { out_data2[4]=0x00; out_data2[5]=0x04; out_data2[6]=0x12; if(memcmp(p1,"v(1:",4)==0) out_data2[7]=0x00; else if(memcmp(p1,"v(2:",4)==0) out_data2[7]=0x04; else if(memcmp(p1,"v(3:",4)==0) out_data2[7]=0x08; else if(memcmp(p1,"v(4:",4)==0) out_data2[7]=0x0c; p1=p1+4; data1=(p1[0]&0x3)-1; out_data2[7]=out_data2[7]|data1; if (out_data2[7]==0xff) out_data2[7]=0x03; length=8; transmit(fd,out_data2,length,max_result_length); } else { if(memcmp(p1,"v(1:",4)==0) { p2=p1+4; if(memcmp(p2,"1):",3)==0) { max_output=max_output_v_a; out_data=data_v_a; data1=0x00; } else if(memcmp(p2,"2):",3)==0) { out_data=data_v_b; max_output=max_output_v_b; data1=0x01; } else if(memcmp(p2,"3):",3)==0) { out_data=data_v_c; max_output=max_output_v_c; data1=0x02; } else if(memcmp(p2,"4):",3)==0) { out_data=data_v_z; max_output=max_output_v_z; data1=0x03; } out_data[8]=0x00; out_data[9]=out_data[9]&0xfb; out_data[7]=data1; } else if(memcmp(p1,"v(2:",4)==0) { p2=p1+4; if(memcmp(p2,"1):",3)==0) { out_data=data_i_a; max_output=max_output_i_a; data1=0x04; } else if(memcmp(p2,"2):",3)==0) { out_data=data_i_b; max_output=max_output_i_b; data1=0x05; } else if(memcmp(p2,"3):",3)==0) { out_data=data_i_c; max_output=max_output_i_c; data1=0x06; } out_data[7]=data1; out_data[8]=0x10; out_data[9]=out_data[9]|0x04; } else if(memcmp(p1,"v(3:",4)==0) out_data[7]=0x08; else if(memcmp(p1,"v(4:",4)==0) out_data[7]=0x0c; out_data[4]=0x00; out_data[5]=0x37; out_data[6]=0x10; p1=p1+7; if(memcmp(p1,"sig1:",5)==0) { status=0; p2=out_data+11; k=1; } else if(memcmp(p1,"sig2:",5)==0) { status=1; p2=out_data+23; k=2; } p1=p1+5; if(memcmp(p1,"a(",2)==0) { p1=p1+2; for(i=0;*p1!=NULL;i++) data_cmp[i]=*p1++; data_cmp[i]='\0'; x=my_atof(data_cmp); p1=p1-5; if(memcmp(p1,"step",4)==0) { y=chang_ampStep(x,&max_output); p2[25]=(unsigned char)(y>>8); p2[24]=(unsigned char)(y>>16); p2[26]=(unsigned char)y; p2[27]=0x00; } else { y=chang_amp(x,&max_output); p2[1]=(unsigned char)y; p2[0]=(unsigned char)(y>>8); p2[2]=0x00; p2[3]=0x00; } } else if(memcmp(p1,"f(",2)==0) { p1=p1+2; for(i=0;*p1!=NULL;i++) data_cmp[i]=*p1++; data_cmp[i]='\0'; //NULL; x=my_atof(data_cmp); y=(int)fabs(x); p1=p1-5; if(memcmp(p1,"step",4)==0) { p2[29]=(unsigned char)y; /* //p3[0]; */ p2[28]=(unsigned char)(y>>8); /* //p3[1]; */ //frec(x,2,data_cmp1); frec1(x,16,5,data_cmp1); p2[30]=data_cmp1[2]; p2[31]=data_cmp1[3]; p2[32]=data_cmp1[4]; //p2[30]=data_cmp1[0]; // p2[31]=data_cmp1[1]; if (x<0 && p2[28] < 0x80) p2[28]+=0x80; else if (x>0 && p2[28] >= 0x80) p2[28]-=0x80; } else { p2[5]=(unsigned char)y; /* //p3[0]; */ p2[4]=(unsigned char)(y>>8); /* //p3[1]; */ // frec(x,2,data_cmp1); // p2[6]=data_cmp1[0]; // p2[7]=data_cmp1[1]; frec1(x,16,5,data_cmp1); p2[6]=data_cmp1[2]; p2[7]=data_cmp1[3]; p2[8]=data_cmp1[4]; } } else if(memcmp(p1,"p(",2)==0) { p1=p1+2; for(i=0;*p1!=NULL;i++) data_cmp[i]=*p1++; data_cmp[i]='\0';/*NULL;*/ x=my_atof(data_cmp); y=(int)x; data2=(unsigned char)y; data1=(unsigned char)(y>>8); p1=p1-5; if(memcmp(p1,"step",4)==0) { p2[33]=(data1<<6)|(data2>>2); p2[34]=data2<<6; //frec1(x,10,3,data_cmp1); frec(x,2,data_cmp1); //p2[34]=p2[10]|(data_cmp1[0]>>2);//07-7-13 18:17œâÊÍÏàλ²œ³€ŽíÎ󣬵ŒÖÂÏàλ×Ô¶¯Ôڱ仯 p2[34]=p2[34]|(data_cmp1[0]>>2); p2[35]=(data_cmp1[0]<<6)|(data_cmp1[1]>>2); /*frec1(x,10,3,data_cmp1); p2[33]=data_cmp1[1]; p2[34]=data_cmp1[2]; p2[35]=data_cmp1[3];*/ } else { p2[9]=(data1<<6)|(data2>>2); p2[10]=data2<<6; frec(x,2,data_cmp1); //frec1(x,10,3,data_cmp1); p2[10]=p2[10]|(data_cmp1[0]>>2); p2[11]=(data_cmp1[0]<<6)|(data_cmp1[1]>>2); /* frec1(x,10,3,data_cmp1); // p2[9]=data_cmp1[1]; p2[10]=data_cmp1[1]; p2[11]=data_cmp1[2];*/ } } else if(memcmp(p1,"wav(",4)==0) { p1=p1+4; if(memcmp(p1,"sin",3)==0) { if(k==1) out_data[10]=out_data[10]&0x00;//0xf0 else if(k==2) out_data[10]=out_data[10]&0x0f; } else if(memcmp(p1,"sum",3)==0) { p1=p1+3; if(k==1) { out_data[10]=out_data[10]&0xf0; out_data[10]=out_data[10]|0x8; } else if(k==2) { out_data[23]=out_data[23]&0xf; out_data[23]=out_data[23]|0x80; } p1++; if(memcmp(p1,"harmonic",8)==0) { p1=p1+8; p1++; for(i=0;p1[i]!=')';) i++; i--; data2=0; data1=1; for(j=i;j>=0;j--) { data2=data2+(unsigned char)((p1[j]&0xf)*data1); data1=(unsigned char)(data1*10); } if(k==1) out_data[13]=data2; else out_data[25]=data2; } /* //Ä©Íê³É */ length=59; } else if(memcmp(p1,"tri",3)==0||memcmp(p1,"square",6)==0) { if(memcmp(p1,"square",6)==0) { if(k==1) out_data[10]=(out_data[10]&0xf3)|0x3; else if(k==2) out_data[10]=(out_data[10]&0x3f)|0x30; p1=p1+6; } else if(memcmp(p1,"tri",3)==0) { if(k==1) out_data[10]=(out_data[10]&0xf2)|0x2; else if(k==2) out_data[10]=(out_data[10]&0x2f)|0x20; p1=p1+3; } if(p1[0]!=')') { p1++; for(i=0;p1[i]!=')';i++) data_cmp[i]=p1[i]; data_cmp[i]='\0'; //NULL; x=my_atof(data_cmp); x=1/x/2*10000; y=(int)x; p2[3]=(unsigned char)(y>>8); //p3[1]; p2[4]=(unsigned char)y; //p3[0]; frec(x,1,data_cmp1); p2[5]=data_cmp1[0]; x=my_atof(data_cmp); x=1/x*10000; y=(int)x; p2[6]=(unsigned char)(y>>8); //p3[1]; p2[7]=(unsigned char)y; //p3[0]; frec(x,1,data_cmp1); p2[8]=data_cmp1[0]; } else { p2[2]=0; p2[3]=0; p2[4]=0xc8; p2[5]=0; p2[6]=01; p2[7]=0x90; } } else if(memcmp(p1,"dc",2)==0) { if(k==1) out_data[10]=(out_data[10]&0xf0)|0x6; else if(k==2) out_data[10]=(out_data[10]&0xf)|0x60; } else if(memcmp(p1,"exp",3)==0) { if(k==1) out_data[10]=(out_data[10]&0xf7)|0x7; else if(k==2) out_data[10]=(out_data[10]&0x7f)|0x70; p1=p1+3; if(p1[0]!=')') { p1++; for(i=0;p1[i]!=')';i++) data_cmp[i]=p1[i]; data_cmp[i]='\0'; //NULL; x=my_atof(data_cmp); x=x*100000000; time_out=(long)(x); p2[3]=(unsigned char)(time_out>>16); p2[4]=(unsigned char)(time_out>>8); p2[5]=(unsigned char)(time_out); } } else if(memcmp(p1,"user",4)==0) { if(k==1) { out_data[10]=(out_data[10]&0xf4)|0x4; p1=p1+4; p1++; for(i=0;p1[i]!=')'&&p1[i]!=',';) i++; i--; data2=0; data1=1; for(j=i;j>=0;j--) { data2=data2+(unsigned char)((p1[j]&0xf)*data1); data1=(unsigned char)(data1*10); } out_data[13]=data2; } else if(k==2) { out_data[10]=(out_data[10]&0x4f)|0x40; p1=p1+4; p1++; for(i=0;p1[i]!=')'&&p1[i]!=',';) i++; i--; data2=0; data1=1; for(j=i;j>=0;j--) { data2=data2+(unsigned char)((p1[j]&0xf)*data1); data1=(unsigned char)(data1*10); } out_data[25]=data2; } } length=59; } length=59; }} else if(memcmp(p1,"i(",2)==0) { p2=p1+7; if(memcmp(p2,"on",2)==0) { out_data2[4]=0x00; out_data2[5]=0x04; out_data2[6]=0x11; if(memcmp(p1,"i(1:1",5)==0) out_data2[7]=0x04; else if(memcmp(p1,"i(1:2",5)==0) out_data2[7]=0x05; else if(memcmp(p1,"i(1:3",5)==0) out_data2[7]=0x06; length=8; transmit(fd,out_data2,length,max_result_length); } else if(memcmp(p2,"off",3)==0) { out_data2[4]=0x00; out_data2[5]=0x04; out_data2[6]=0x12; if(memcmp(p1,"i(1:",4)==0) out_data2[7]=0x00; else if(memcmp(p1,"i(2:",4)==0) out_data2[7]=0x04; else if(memcmp(p1,"i(3:",4)==0) out_data2[7]=0x08; else if(memcmp(p1,"i(4:",4)==0) out_data2[7]=0x0c; p1=p1+4; data1=(p1[0]&0x3)-1; out_data2[7]=out_data2[7]|data1; length=8; transmit(fd,out_data2,length,max_result_length); } else { if(memcmp(p1,"i(1:",4)==0) { p2=p1+4; if(memcmp(p2,"1):",3)==0) { max_output=max_output_i_a; out_data=data_i_a; data1=0x00; } else if(memcmp(p2,"2):",3)==0) { out_data=data_i_b; max_output=max_output_i_b; data1=0x01; } else if(memcmp(p2,"3):",3)==0) { out_data=data_i_c; max_output=max_output_i_c; data1=0x02; } out_data[8]=0x00; out_data[9]=out_data[9]&0xfb; out_data[7]=data1; } else if(memcmp(p1,"i(2:",4)==0) { p2=p1+4; if(memcmp(p2,"1):",3)==0) { out_data=data_i_a; max_output=max_output_i_a; data1=0x04; } else if(memcmp(p2,"2):",3)==0) { out_data=data_i_b; max_output=max_output_i_b; data1=0x05; } else if(memcmp(p2,"3):",3)==0) { out_data=data_i_c; max_output=max_output_i_c; data1=0x06; } out_data[7]=data1; out_data[8]=0x10; out_data[9]=out_data[9]|0x04; } else if(memcmp(p1,"i(3:",4)==0) out_data[7]=0x08; else if(memcmp(p1,"i(4:",4)==0) out_data[7]=0x0c; out_data[4]=0x00; out_data[5]=0x37; out_data[6]=0x10; p1=p1+7; if(memcmp(p1,"sig1:",5)==0) { status=0; p2=out_data+11; k=1; } else if(memcmp(p1,"sig2:",5)==0) { status=1; p2=out_data+23; k=2; } p1=p1+5; if(memcmp(p1,"a(",2)==0) { p1=p1+2; for(i=0;*p1!=NULL;i++) data_cmp[i]=*p1++; data_cmp[i]='\0';//NULL; x=my_atof(data_cmp); p1=p1-5; if(memcmp(p1,"step",4)==0) { y=chang_ampStep(x,&max_output); p2[25]=(unsigned char)(y>>8); p2[24]=(unsigned char)(y>>16); p2[26]=(unsigned char)y; p2[27]=0x00; } else { y=chang_amp(x,&max_output); p2[1]=(unsigned char)y; p2[0]=(unsigned char)(y>>8); p2[2]=0x00; p2[3]=0x00; } } else if(memcmp(p1,"f(",2)==0) { p1=p1+2; for(i=0;*p1!=NULL;i++) data_cmp[i]=*p1++; data_cmp[i]='\0'; //NULL; x=my_atof(data_cmp); y=(int)fabs(x); p1=p1-5; /* //p3=&y ; */ if(memcmp(p1,"step",4)==0) { p2[29]=(unsigned char)y; /* //p3[0]; */ p2[28]=(unsigned char)(y>>8); /* //p3[1]; */ frec(x,2,data_cmp1); p2[30]=data_cmp1[0]; p2[31]=data_cmp1[1]; if (x<0 && p2[28] < 0x80) p2[28]+=0x80; else if (x>0 && p2[28] >= 0x80) p2[28]-=0x80; } else { p2[5]=(unsigned char)y; /* //p3[0]; */ p2[4]=(unsigned char)(y>>8); /* //p3[1]; */ frec(x,2,data_cmp1); p2[6]=data_cmp1[0]; p2[7]=data_cmp1[1]; } } else if(memcmp(p1,"p(",2)==0) { p1=p1+2; for(i=0;*p1!=NULL;i++) data_cmp[i]=*p1++; data_cmp[i]='\0';/*NULL;*/ x=my_atof(data_cmp); y=(int)x; data2=(unsigned char)y; data1=(unsigned char)(y>>8); p1=p1-5; if(memcmp(p1,"step",4)==0) { p2[33]=(data1<<6)|(data2>>2); p2[34]=data2<<6; frec(x,2,data_cmp1); //p2[34]=p2[10]|(data_cmp1[0]>>2);//07-7-13 18:17œâÊÍÏàλ²œ³€ŽíÎ󣬵ŒÖÂÏàλ×Ô¶¯Ôڱ仯 p2[34]=p2[34]|(data_cmp1[0]>>2); p2[35]=(data_cmp1[0]<<6)|(data_cmp1[1]>>2); } else { p2[9]=(data1<<6)|(data2>>2); p2[10]=data2<<6; frec(x,2,data_cmp1); p2[10]=p2[10]|(data_cmp1[0]>>2); p2[11]=(data_cmp1[0]<<6)|(data_cmp1[1]>>2); } } else if(memcmp(p1,"wav(",4)==0) { p1=p1+4; if(memcmp(p1,"sin",3)==0) { if(k==1) out_data[10]=out_data[10]&0x00;//0xf0 else if(k==2) out_data[10]=out_data[10]&0x0f; } else if(memcmp(p1,"sum",3)==0) { p1=p1+3; if(k==1) { out_data[10]=out_data[10]&0xf0; out_data[10]=out_data[10]|0x8; } else if(k==2) { out_data[23]=out_data[23]&0xf; out_data[23]=out_data[23]|0x80; } p1++; if(memcmp(p1,"harmonic",8)==0) { p1=p1+8; p1++; for(i=0;p1[i]!=')';) i++; i--; data2=0; data1=1; for(j=i;j>=0;j--) { data2=data2+(unsigned char)((p1[j]&0xf)*data1); data1=(unsigned char)(data1*10); } if(k==1) out_data[13]=data2; else out_data[25]=data2; } /* //Ä©Íê³É */ length=59; } else if(memcmp(p1,"tri",3)==0||memcmp(p1,"square",6)==0) { if(memcmp(p1,"square",6)==0) { if(k==1) out_data[10]=(out_data[10]&0xf3)|0x3; else if(k==2) out_data[10]=(out_data[10]&0x3f)|0x30; p1=p1+6; } else if(memcmp(p1,"tri",3)==0) { if(k==1) out_data[10]=(out_data[10]&0xf2)|0x2; else if(k==2) out_data[10]=(out_data[10]&0x2f)|0x20; p1=p1+3; } if(p1[0]!=')') { p1++; for(i=0;p1[i]!=')';i++) data_cmp[i]=p1[i]; data_cmp[i]='\0'; //NULL; x=my_atof(data_cmp); x=1/x/2*10000; y=(int)x; p2[3]=(unsigned char)(y>>8); //p3[1]; p2[4]=(unsigned char)y; //p3[0]; frec(x,1,data_cmp1); p2[5]=data_cmp1[0]; x=my_atof(data_cmp); x=1/x*10000; y=(int)x; p2[6]=(unsigned char)(y>>8); //p3[1]; p2[7]=(unsigned char)y; //p3[0]; frec(x,1,data_cmp1); p2[8]=data_cmp1[0]; } else { p2[2]=0; p2[3]=0; p2[4]=0xc8; p2[5]=0; p2[6]=01; p2[7]=0x90; } } else if(memcmp(p1,"dc",2)==0) { if(k==1) out_data[10]=(out_data[10]&0xf0)|0x6; else if(k==2) out_data[10]=(out_data[10]&0xf)|0x60; } else if(memcmp(p1,"exp",3)==0) { if(k==1) out_data[10]=(out_data[10]&0xf7)|0x7; else if(k==2) out_data[10]=(out_data[10]&0x7f)|0x70; p1=p1+3; if(p1[0]!=')') { p1++; for(i=0;p1[i]!=')';i++) data_cmp[i]=p1[i]; data_cmp[i]='\0'; //NULL; x=my_atof(data_cmp); x=x*100000000; time_out=(long)(x); p2[3]=(unsigned char)(time_out>>16); p2[4]=(unsigned char)(time_out>>8); p2[5]=(unsigned char)(time_out); } } else if(memcmp(p1,"user",4)==0) { if(k==1) { out_data[10]=(out_data[10]&0xf4)|0x4; p1=p1+4; p1++; for(i=0;p1[i]!=')'&&p1[i]!=',';) i++; i--; data2=0; data1=1; for(j=i;j>=0;j--) { data2=data2+(unsigned char)((p1[j]&0xf)*data1); data1=(unsigned char)(data1*10); } out_data[13]=data2; } else if(k==2) { out_data[10]=(out_data[10]&0x4f)|0x40; p1=p1+4; p1++; for(i=0;p1[i]!=')'&&p1[i]!=',';) i++; i--; data2=0; data1=1; for(j=i;j>=0;j--) { data2=data2+(unsigned char)((p1[j]&0xf)*data1); data1=(unsigned char)(data1*10); } out_data[25]=data2; } } length=59; } length=59; }} else if(memcmp(p1,"mix:",4)==0) { p1=p1+4; if(memcmp(p1,"v(",2)==0) { p1=p1+2; if(p1[0]=='1') { p1=p1+2; if(p1[0]=='1') { out_data=data_v_a; out_data[7]=0x00; out_data[8]=0x00; } if(p1[0]=='2') { out_data=data_v_b; out_data[7]=0x01; out_data[8]=0x00; } if(p1[0]=='3') { out_data=data_v_c; out_data[7]=0x02; out_data[8]=0x00; } if(p1[0]=='4') { out_data=data_v_z; out_data[7]=0x03; out_data[8]=0x00; } } else if(p1[0]=='2') { p1=p1+2; if(p1[0]=='1') { out_data=data_v_a; out_data[7]=0x04; out_data[8]=0x10; } if(p1[0]=='2') { out_data=data_v_b; out_data[7]=0x05; out_data[8]=0x10; } if(p1[0]=='3') { out_data=data_v_c; out_data[7]=0x06; out_data[8]=0x10; } if(p1[0]=='4') { out_data=data_v_z; out_data[7]=0x07; out_data[8]=0x10; } } else if(p1[0]=='3') { p1=p1+2; } else if(p1[0]=='4') { p1=p1+2; } out_data[4]=0x00; out_data[5]=0x37; out_data[6]=0x10; p1=p1+2; if(memcmp(p1,"sig1",4)==0) out_data[9]=out_data[9]&0x4; else if(memcmp(p1,"add",3)==0) { out_data[9]=out_data[9]&0x05; } else if(memcmp(p1,"mult",4)==0) out_data[9]=out_data[9]&0x06; else if(memcmp(p1,"sum",3)==0) out_data[9]=out_data[9]&0x07; } else if(memcmp(p1,"i(",2)==0) { p1=p1+2; if(p1[0]=='1') { p1=p1+2; if(p1[0]=='1') { out_data=data_i_a; out_data[7]=0x04; out_data[8]=0x00; } if(p1[0]=='2') { out_data=data_i_b; out_data[7]=0x05; out_data[8]=0x00; } if(p1[0]=='3') { out_data=data_i_c; out_data[7]=0x06; out_data[8]=0x00; } } else if(p1[0]=='2') { p1=p1+2; if(p1[0]=='1') { out_data=data_i_a; out_data[7]=0x04; out_data[8]=0x10; } if(p1[0]=='2') { out_data=data_i_b; out_data[7]=0x05; out_data[8]=0x10; } if(p1[0]=='3') { out_data=data_i_c; out_data[7]=0x06; out_data[8]=0x10; } } else if(p1[0]=='3') { p1=p1+2; } else if(p1[0]=='4') { p1=p1+2; } out_data[4]=0x00; out_data[5]=0x37; out_data[6]=0x10; p1=p1+2; if(memcmp(p1,"sig1",4)==0) out_data[9]=out_data[9]&0x4; else if(memcmp(p1,"add",3)==0) { out_data[9]=out_data[9]&0x05; } else if(memcmp(p1,"mult",4)==0) out_data[9]=out_data[9]&0x06; else if(memcmp(p1,"sum",3)==0) out_data[9]=out_data[9]&0x07; } length=59; transmit(fd,out_data,length,max_result_length); } else if(memcmp(p1,"on",2)==0) { out_data2[4]=0x00; out_data2[5]=0x04; out_data2[6]=0x11; out_data2[7]=0x00; length=8; transmit(fd,out_data2,length,max_result_length); out_data2[7]=0x04; transmit(fd,out_data2,length,max_result_length); } else if(memcmp(p1,"off",3)==0) { //µçѹµçÁ÷ÿÏà·Ö±ð¹Ø±Õ length=8; out_data2[4]=0x00; out_data2[5]=0x04; out_data2[6]=0x12; out_data2[7]=0xc0; transmit(fd,out_data2,length,max_result_length); out_data2[7]=0xc1; transmit(fd,out_data2,length,max_result_length); out_data2[7]=0xc2; transmit(fd,out_data2,length,max_result_length); out_data2[7]=0xc3; //deng transmit(fd,out_data2,length,max_result_length); out_data2[7]=0xc4; transmit(fd,out_data2,length,max_result_length); out_data2[7]=0xc5; transmit(fd,out_data2,length,max_result_length); out_data2[7]=0xc6; transmit(fd,out_data2,length,max_result_length); } /*else if(memcmp(p1,"clr",3)==0) { out_data2[4]=0x00; out_data2[5]=0x03; out_data2[6]=0x13; length=7; transmit(fd,(out_data2,length,max_result_length,result); }030627*/ /* else if(memcmp(p1,"user:app",8)==0) { p1=p1+9; out_data2[6]=0x15; l=8; for(i=0;p1[0]!=',';i++) data_cmp[k]=p1[k]; data_cmp[k]=';';//NULL; p1=p1+k+1; i=atoi(data_cmp); out_data2[7]=i; for(j=0;p1[0]!=')';) { for(i=0;p1[0]!=','&&p1[0]!=')';i++) data_cmp[i]=p1[i]; data_cmp[i]='\0';//NULL; x=my_atof(data_cmp); y=chang_amp(x,&max_output); out_data2[l++]=(unsigned char)y; out_data2[l++]=(unsigned char)(y>>8); p1=p1+k; if(p1[0]!=')') p1=p1+1; } out_data2[4]=(l-4)>>8; out_data2[5]=(l-4); length=l; transmit(fd,(out_data2,length,max_result_length,result); }030627*/ /*else if(memcmp(p1,"user:init",9)==0) { p1=p1+10; p2=p1; out_data2[6]=0x14; i=0; j=0; m=9; l=10; for(i=0;p2[0]!=')';i++) { for(j=0;p2[0]!=';';) { j++; for(k=0;p2[k]!=','&&p2[k]!=')';k++) data_cmp[k]=p2[k]; data_cmp[k]=';';//NULL; p2=p2+k+1; time_out=atoi(data_cmp); out_data2[l++]=(unsigned char)(time_out>>8); out_data2[l++]=(unsigned char)(time_out); for(k=0;p2[k]!=','&&p2[k]!=';'&&p2[k]!=')';k++) data_cmp[k]=p2[k]; data_cmp[k]=';'; //NULL; p2=p2+k; if(p2[0]!=';'&&p2[0]!=')') p2=p2+1; x=my_atof(data_cmp)/10000; y=(int)x; if(y>0) { out_data2[l++]=0x80; out_data2[l++]=0x00; out_data2[l++]=0x00; } else { frec(x,3,data_cmp1); out_data2[l++]=data_cmp1[0]; out_data2[l++]=data_cmp1[1]; out_data2[l++]=data_cmp1[2]; } } if(p2[0]!=')') p2=p2+1; out_data2[m]=j+1; m=l; } i++; if(i<127) { out_data2[7]=i; out_data2[8]=0; } else { out_data2[7]=127; out_data2[8]=i-127; } out_data2[4]=(l-4)>>8; out_data2[5]=(l-4); length=l; transmit(fd,(out_data2,length,max_result_length,result); }030627*/ /* else if(memcmp(p1,"user:clr",8)==0) { p1=p1+8; out_data2[4]=0x00; out_data2[5]=0x04; out_data2[6]=0x16; if(p1[0]=='(') { for(k=0;p1[0]!=')';k++) data_cmp[k]=p1[k]; data_cmp[k]=';';//NULL; //p1=p1+k+1; i=atoi(data_cmp); out_data2[7]=i; } else out_data2[7]=0x7f; length=8; transmit(fd,(out_data2,length,max_result_length,result); }030627*/ /*else if(memcmp(p1,"user:mem?",9)==0) { p1=p1+9; out_data2[4]=0x00; out_data2[5]=0x04; out_data2[6]=0x17; if(p1[0]=='(') { for(k=0;p1[0]!=')';k++) data_cmp[k]=p1[k]; data_cmp[k]=';';//NULL; //p1=p1+k+1; i=atoi(data_cmp); out_data2[7]=i; } else out_data2[7]=0x7f; length=8; transmit(fd,(out_data2,length,max_result_length,result); } 030627*/ /* else if(memcmp(p1,"wtbl:app(",9)==0) { p1=p1+9; wavetable[0]=0xa5; wavetable[1]=0xa5; wavetable[2]=0xa5; wavetable[3]=0xa5; wavetable[6]=0x18; for(k=0;p1[k]!=',';k++) data_cmp[k]=p1[k]; data_cmp[k]=';';//NULL; p1=p1+k+1; i=atoi(data_cmp); wavetable[7]=i; l=8; for(;p1[0]!=')';) { for(i=0;p1[i]!=','&&p1[i]!=')';i++) data_cmp[i]=p1[i]; data_cmp[i]='\0';//NULL; x=my_atof(data_cmp); y=(int)(x*32767); if(abs(y)>32767) y=y/abs(y)*32767; //y=chang_amp(x,&max_output); wavetable[l++]=(unsigned char)(y>>8); wavetable[l++]=(unsigned char)(y); p1=p1+i; if(p1[0]!=')') p1=p1+1; } wavetable[4]=(l-4)>>8; wavetable[5]=(l-4); length=l; transmit(fd,(wavetable,length,max_result_length,result); } 030627*/ } else if(memcmp(p1,"dig:",4)==0) { p1=p1+4; for(i=0;i<39;i++) { out_data2[i]=0x00; } for(i=0;i<4;i++) { out_data2[i]=0xa5; } if(memcmp(p1,"on(",3)==0) { p1=p1+3; out_data2[4]=0x00; out_data2[5]=0x05; out_data2[6]=0x19; out_data2[7]=0x0; out_data2[8]=0x0; /*if(p1[0]=='1'&&p1[2]=='0') out_data2[8]=0x01; else if(p1[0]=='0'&&p1[2]=='1') out_data2[8]=0x02; else if(p1[0]=='1'&&p1[2]=='1') out_data2[8]=0x03;*/ out_data2[8]=autoc(p1); length=9; transmit(fd,out_data2,length,max_result_length); } else if(memcmp(p1,"off(",4)==0) { p1=p1+4; out_data2[4]=0x00; out_data2[5]=0x05; out_data2[6]=0x1a; /*if(p1[0]=='1'&&p1[2]=='0') out_data2[8]=0x01; else if(p1[0]=='0'&&p1[2]=='1') out_data2[8]=0x02; else if(p1[0]=='1'&&p1[2]=='1') out_data2[8]=0x03; //out_data2[8]=p1[0]; */ out_data2[8]=autoc(p1); length=9; transmit(fd,out_data2,length,max_result_length); } /*else if(memcmp(p1,"set(",4)==0) { p1=p1+4; out_data2[4]=0x00; out_data2[5]=0x05; out_data2[6]=0x1b; out_data2[7]=0x0; for(i=0;p1[i]!=')';i++) { if(p1[i]==',') i++; out_data2[8]=out_data2[8]|(p1[i]&0xf); } //out_data2[8]=p1[0]&0xf; length=9; transmit(fd,(out_data2,length,max_result_length,result); }030627*/ //transmit(fd,(out_data2,length,max_result_length,result); } else if(memcmp(p1,"cfg?",4)==0) { out_data2[4]=0x00; out_data2[5]=0x03; out_data2[6]=0x1c; length=7; transmit(fd,out_data2,length,max_result_length); } else if(memcmp(p1,"returnlimit",11)==0) { startvalue=StartCurrent; endvalue=EndCurrent; actstep=ActStep; tripvalue=fabs(startvalue-endvalue)/actstep+1; if(V1DC==0) { if(startvalue<endvalue) returnvalue=startvalue/actstep; else if(startvalue>endvalue) returnvalue=(MAX_I_VALUEDATA_AC-startvalue)/actstep; } else if(V1DC==1) { if(startvalue<endvalue) returnvalue=startvalue/actstep; else if(startvalue>endvalue) returnvalue=(MAX_I_VALUEDATA_DC-startvalue)/actstep; } for(i=0;i<39;i++) { out_data2[i]=0x00; } for(i=0;i<4;i++) { out_data2[i]=0xa5; } out_data2[4]=0x00; out_data2[5]=0x07; out_data2[6]=0x82; out_data2[7]=(unsigned char)(tripvalue>>8); out_data2[8]=(unsigned char)(tripvalue); out_data2[9]=(unsigned char)((returnvalue+32768)>>8); out_data2[10]=(unsigned char)(returnvalue); length=11; transmit(fd,out_data2,length,max_result_length); } } else if(memcmp(p1,"inp:",4)==0) { for(i=0;i<40;i++) inp_data[i]=0x00; for(i=0;i<4;i++) inp_data[i]=0xa5; inp_data[i]=0x00; p1=p1+4; if(memcmp(p1,"ana:",4)==0) { p1=p1+4; } else if(memcmp(p1,"dig(0):get?",8)==0) { inp_data[5]=0x04; inp_data[6]=0x24; inp_data[7]=0x00; length=8; transmit(fd,inp_data,length,max_result_length); } else if(memcmp(p1,"dig(1):get?",8)==0) { inp_data[5]=0x04; inp_data[6]=0x24; inp_data[7]=0x01; length=8; transmit(fd,inp_data,length,max_result_length); } else if(memcmp(p1,"dig:interval(",13)==0) //¿ª¹ØÁ¿·Ö±æÂÊ¡£ { p1=p1+13; inp_data[5]=0x07; inp_data[6]=0x2d; inp_data[7]=0x00; inp_data[8]=0x00; time_out=(long)(1000*LogicResolution/50); inp_data[7]=(unsigned char)(time_out>>16); inp_data[8]=(unsigned char)(time_out>>8); inp_data[9]=(unsigned char)(time_out); //ÔÚϵͳÉèÖÃÀïÔöŒÓ¡°¿ª¹ØÁ¿·Ö±æÂÊ¡±ºó // inp_data[9]=0x3c; //3ms mxg 2003_3_4 inp_data[10]=0x01; //0x01£º²»±£ŽæœÓµã¶¶¶¯ÊýŸÝ£¬0x00:±£ŽæœÓµã¶¶¶¯ÊýŸÝ¡£ length=11; transmit(fd,inp_data,length,max_result_length); } else if(memcmp(p1,"cfg?",4)==0) { p1=p1+4; inp_data[5]=0x03; inp_data[6]=0x2c; length=7; transmit(fd,inp_data,length,max_result_length); } else if(memcmp(p1,"buf:",4)==0) { p1=p1+4; if(memcmp(p1,"get?",4)==0) { inp_data[5]=0x03; inp_data[6]=0x29; length=7; transmit(fd,inp_data,length,max_result_length); } else if(memcmp(p1,"clr",3)==0) { inp_data[5]=0x03; inp_data[6]=0x2a; length=7; transmit(fd,inp_data,length,max_result_length); } else if(memcmp(p1,"sam(",4)==0) { p1=p1+4; inp_data[5]=0x05; inp_data[6]=0x28; if(memcmp(p1,"output",6)==0) { inp_data[7]=0x60; p1=p1+7; if(memcmp(p1,"v(",2)==0) { inp_data[7]=inp_data[7]|(((p1[0]-1)&0xf)<<2); p1=p1+3; inp_data[7]=inp_data[7]|((p1[0]-1)&0x03); inp_data[8]=0x00; } } else if(memcmp(p1,"input",5)==0) { inp_data[7]=0x00; inp_data[8]=0x00; } else if(memcmp(p1,"bin",3)==0) { p1=p1+4; inp_data[7]=0x80; for(i=0;p1[i]!=')';) i++; i--; data2=0; data1=1; for(j=i;j>=0;j--) { data2=data2+(unsigned char)((p1[j]&0xf)*data1); data1=(unsigned char)(data1*10); } inp_data[8]=data2; } length=9; transmit(fd,inp_data,length,max_result_length); } } else if(memcmp(p1,"dig(",4)==0) { p1=p1+4; for(j=0;p1[j]!=')';) j++; p2=p1+j+2; if(memcmp(p2,"thres(",6)==0) { inp_data[5]=0x06; inp_data[6]=0x25; p2=p2+6; inp_data[7]=p1[0]&0xf; //p1=p1+2; x=my_atof(p2); y=(int)x; inp_data[8]=(unsigned char)y; //p3[0]; //frec(x,1,data_cmp1); inp_data[9]=0x00; //data_cmp1[0]; length=10; transmit(fd,inp_data,length,max_result_length); } else if(memcmp(p2,"thres?",6)==0) { inp_data[5]=0x04; inp_data[6]=0x26; while((p1-1)[0]!=')') { inp_data[7]=p1[0]&0xf; p1=p1+2; length=8; transmit(fd,inp_data,length,max_result_length); } } } } else if(memcmp(p1,"amp:",4)==0) //Amplifier commands { for(i=0;i<40;i++) amp_data[i]=0x00; p1=p1+4; amp_data[0]=0xa5; amp_data[1]=0xa5; amp_data[2]=0xa5; amp_data[3]=0xa5; amp_data[4]=0x00; if(memcmp(p1,"def(",4)==0) { p1=p1+4; p2=p1; for(i=0;p1[i]!=')';p2++,i++) ; p2=p2-5; if(memcmp(p2,"reset",5)==0) { amp_data[5]=0x04; amp_data[6]=0x31; data1=(p1[0]&0x07)<<2; data2=p1[2]&0x03; data1=data1|data2; p1=p1+4; if(memcmp(p1,"int",3)==0) data1=data1&0x7f; else if(memcmp(p1,"ext",3)==0) data1=data1|0x80; amp_data[7]=data1; length=8; } else { amp_data[5]=0x04; amp_data[6]=0x30; data1=(p1[0]&0x07)<<2; data2=p1[2]&0x03; data1=data1|data2; p1=p1+4; if(memcmp(p1,"int",3)==0) data1=data1&0x7f; else if(memcmp(p1,"ext",3)==0) data1=data1|0x80; p1=p1+4; if(memcmp(p1,"v,",2)==0) {data1=data1&0xbf;status=1;} else if(memcmp(p1,"i,",3)==0) {data1=data1|0x40;status=2;} amp_data[7]=data1; p1=p1+2; x=my_atof(p1); y=(int)x; amp_data[8]=(unsigned char)y; //p3[0]; x=x-(int)x; frec(x,1,data_cmp1); amp_data[9]=data_cmp1[0]; for(i=0;p1[i]!=',';) i++; p1=p1+i+1; x=my_atof(p1); y=(int)x; data1=(unsigned char)y; //p3[0]; data2=(unsigned char)(y>>8); //p3[1]; p3[0]=data2; p3[1]=data1; if(status==1) { y=y<<6; amp_data[10]=p3[0]; amp_data[11]=p3[1]; frec(x,3,data_cmp1); p3[0]=0; p3[1]=data_cmp1[0]; p3[2]=data_cmp1[1]; p3[3]=data_cmp1[2]; time_out=time_out<<6; amp_data[11]=amp_data[11]|p3[0]; amp_data[12]=p3[1]; } else if(status==2) { amp_data[10]=p3[0]; frec(x,2,data_cmp1); amp_data[11]=data_cmp1[0]; amp_data[12]=data_cmp1[1]; } out_data=amp_data+13; k=0; for(j=0;j<2;j++) { for(i=0;p1[i]!=',';) {i++;} p1=p1+i+1; x=my_atof(p1); y=(int)x; //p3=&y; out_data[k]=(unsigned char)(y>>8); //p3[1]; k++; out_data[k]=(unsigned char)y; //p3[0]; k++; frec(x,2,data_cmp1); out_data[k]=data_cmp1[0]; k++; out_data[k]=data_cmp1[1]; k++; } for(i=0;p1[i]!=',';) i++; p1=p1+i+1; x=my_atof(p1); y=(int)x; //p3=&y; out_data[k]=(unsigned char)y;//p3[0]; k++; frec(x,1,data_cmp1); out_data[k]=data_cmp1[0]; length=23; } } else if(memcmp(p1,"def?(",5)==0) { p1=p1+5; amp_data[5]=0x04; amp_data[6]=0x32; if(p1[0]=='1') { switch(p1[2]) { case '1': amp_data[7]=0x00; break; case '2': amp_data[7]=0x01; break; case '3': amp_data[7]=0x02; break; case '4': amp_data[7]=0x03; break; } } else if(p1[0]=='2') { switch(p1[2]) { case '1': amp_data[7]=0x04; break; case '2': amp_data[7]=0x05; break; case '3': amp_data[7]=0x06; break; } } length=8; } else if(memcmp(p1,"route(",6)==0) { p1=p1+6; amp_data[5]=0x04; amp_data[6]=0x33; amp_data[7]=0x00; if(memcmp(p1,"v,",2)==0) { data1=0x00; } else if(memcmp(p1,"i,",2)==0) data1=0x11; p1=p1+2; if(memcmp(p1,"clr",3)==0) amp_data[7]=0x80; amp_data[7]=amp_data[7]|data1; length=8; } else if(memcmp(p1,"route?(",7)==0) { p1=p1+7; amp_data[5]=0x04; amp_data[6]=0x34; if(memcmp(p1,"v,",2)==0) data1=0x00; if(memcmp(p1,"i,",2)==0) data1=0x01; amp_data[7]=data1; length=8; } else if(memcmp(p1,"list?",5)==0) { p1=p1+5; amp_data[5]=0x04; amp_data[6]=0x35; length=7; } else if(memcmp(p1,"ctrl(",5)==0) { p1=p1+5; amp_data[5]=0x0c; if(memcmp(p1,"v,",2)==0) amp_data[6]=0x36; else if(memcmp(p1,"i,",2)==0) amp_data[6]=0x37; p1=p1+2; amp_data[7]=p1[0]&0x7; p1=p1+2; for(i=0;p1[i]!=')'&&p1[i]!=',';) {i++;} p1=p1+i; x=my_atof(p1); y=(long int)x; amp_data[8]=(unsigned char)(y>>8); amp_data[9]=(unsigned char)(y>>24); amp_data[10]=(unsigned char)(y>>16); if(p1[0]==',') { p1++; for(i=0;p1[i]!=')';) {i++;} x=my_atof(p1); y=(int)x; amp_data[11]=(unsigned char)(y>>8); amp_data[12]=(unsigned char)y; frec(x,1,data_cmp1); amp_data[13]=data_cmp1[0]; } length=14; } else if(memcmp(p1,"ctrl?(",6)==0) { p1=p1+6; amp_data[5]=0x04; amp_data[6]=0x38; if(memcmp(p1,"v,",2)==0) data1=0x00; if(memcmp(p1,"i,",2)==0) data1=0x01; amp_data[7]=data1; length=8; } else if(memcmp(p1,"on(",3)==0) { p1=p1+3; amp_data[5]=0x04; amp_data[6]=0x39; amp_data[7]=p1[0]&0xf; length=8; } else if(memcmp(p1,"off(",4)==0) { p1=p1+4; amp_data[5]=0x04; amp_data[6]=0x3a; amp_data[7]=p1[0]&0xf; length=8; } transmit(fd,amp_data,length,max_result_length); } else if(memcmp(p1,"seq:",4)==0) { for(i=0;i<40;i++) seq_data[i]=0x00; seq_data[0]=0xa5; seq_data[1]=0xa5; seq_data[2]=0xa5; seq_data[3]=0xa5; p1=p1+4; if(memcmp(p1,"begin",5)==0) { seq_data[4]=0x00; seq_data[5]=0x03; seq_data[6]=0x40; length=7; } else if(memcmp(p1,"end",3)==0) { seq_data[4]=0x00; seq_data[5]=0x03; seq_data[6]=0x41; length=7; } else if(memcmp(p1,"clr",3)==0) { seq_data[4]=0x00; seq_data[5]=0x03; seq_data[6]=0x42; length=7; } else if(memcmp(p1,"resumetime(",11)==0) { p1=p1+11; seq_data[5]=0x06; seq_data[6]=0x50; for(i=0;p1[i]!=')';i++) data_cmp[i]=p1[i]; data_cmp[i]='\0'; //NULL; //p1=p1+i; x=my_atof(data_cmp); time_out=(long)(1000000*x/50); //p3=&time_out; seq_data[7]=(unsigned char)(time_out>>16); //p3[0]; seq_data[8]=(unsigned char)(time_out>>8); //p3[4]; seq_data[9]=(unsigned char)(time_out); //p3[3]; length=10; } else if(memcmp(p1,"wait(",5)==0) { p1=p1+5; seq_data[4]=0x00; seq_data[5]=0x0F; seq_data[6]=0x43; seq_data[7]=0; seq_data[8]=0; seq_data[9]=0; seq_data[10]=0; seq_data[11]=0; seq_data[12]=0; seq_data[13]=0; seq_data[14]=0; seq_data[15]=0; seq_data[16]=0; seq_data[17]=0; seq_data[18]=0; if(memcmp(p1,"and",3)==0||memcmp(p1,"or",2)==0) { if(memcmp(p1,"and",3)==0) { p1=p1+3; seq_data[7]=seq_data[7]|0x80; } else if(memcmp(p1,"or",2)==0) { p1=p1+2; seq_data[7]=seq_data[7]|0xc0; } if(memcmp(p1,"bin(",4)==0) { p1=p1+4; switch(p1[0]) { case '0':{ break; } case '1':{ seq_data[9]=seq_data[9]|0x01; break; } case '2':{ seq_data[9]=seq_data[9]|0x01; seq_data[11]=seq_data[11]|0x01; break; } } p1=p1+3; if(memcmp(p1,"bin(",4)==0) { p1=p1+4; switch(p1[0]) { case '0':{ break; } case '1':{ seq_data[9]=seq_data[9]|0x02; break; } case '2':{ seq_data[9]=seq_data[9]|0x02; seq_data[11]=seq_data[11]|0x02; break; } } p1=p1+3; if(memcmp(p1,"bin(",4)==0) { p1=p1+4; switch(p1[0]) { case '0':{ break; } case '1':{ seq_data[9]=seq_data[9]|0x04; break; } case '2':{ seq_data[9]=seq_data[9]|0x04; seq_data[11]=seq_data[11]|0x04; break; } } p1=p1+3; if(memcmp(p1,"bin(",4)==0) { p1=p1+4; switch(p1[0]) { case '0':{ break; } case '1':{ seq_data[9]=seq_data[9]|0x08; break; } case '2':{ seq_data[9]=seq_data[9]|0x08; seq_data[11]=seq_data[11]|0x08; break; } } p1=p1+3; }}}} if((seq_data[9]&0x0f)==0) seq_data[7]=seq_data[7]&0xf; data1=p1[0]+1; //移动到 orbin(1),bin(1),bin(1),bin(1),2,1,0,1) 中的2 seq_data[7]=seq_data[7]|((data1&0x03)<<4); if(p1[2]=='1'||p1[2]=='2') //延时有效 { if(p1[2]=='1') { seq_data[7]=seq_data[7]|0x04; time_out=(long)(1000*faultduration); seq_data[15]=(unsigned char)(time_out>>16);//p3[0]; seq_data[16]=(unsigned char)(time_out>>8);//p3[4]; seq_data[17]=(unsigned char)(time_out);//p3[3]; } else if(p1[2]=='2') { seq_data[7]=seq_data[7]|0x04; time_out=(long)(1000*faultduration); seq_data[15]=(unsigned char)(time_out>>16);//p3[0]; seq_data[16]=(unsigned char)(time_out>>8);//p3[4]; seq_data[17]=(unsigned char)(time_out);//p3[3]; seq_data[18]=1; } } if(p1[3]==',') { p1=p1+4; for(i=0;p1[i]!=',';i++) data_cmp[i]=p1[i]; data_cmp[i]='\0';//NULL; p1=p1+i; if(out_time==-1) x=my_atof(data_cmp); else if(out_time!=-1) x=out_time; time_out=(long)(1000*x); seq_data[12]=(unsigned char)(time_out>>16);//p3[0]; seq_data[13]=(unsigned char)(time_out>>8);//p3[4]; seq_data[14]=(unsigned char)(time_out);//p3[3]; data1=(p1[1]+1)&0x03|0x8; seq_data[7]=seq_data[7]|data1; } } else { seq_data[7]=0x08; for(i=0;p1[i]!=',';i++) data_cmp[i]=p1[i]; data_cmp[i]='\0'; //NULL; p1=p1+i; if(out_time==-1) x=my_atof(data_cmp); else if(out_time!=-1) x=out_time; time_out=(long)(1000*x); /*//*/ seq_data[12]=(unsigned char)(time_out>>16); /* //p3[0]; */ seq_data[13]=(unsigned char)(time_out>>8); /* //p3[4]; */ seq_data[14]=(unsigned char)(time_out); /* //p3[3]; */ data1=(p1[1]+1)&0x03; seq_data[7]=seq_data[7]|data1; } length=19; } else if(memcmp(p1,"status?(",8)==0) { p1=p1+8; seq_data[4]=0x00; seq_data[5]=0x03; if(memcmp(p1,"step",4)==0) seq_data[6]=0x44; else if(memcmp(p1,"mem",3)==0) seq_data[6]=0x45; length=7; } else if(memcmp(p1,"brk",3)==0) { seq_data[4]=0x00; seq_data[5]=0x03; seq_data[6]=0x46; length=7; } else if(memcmp(p1,"exec",4)==0) { seq_data[4]=0x00; seq_data[5]=0x03; seq_data[6]=0x47; length=7; } else if(memcmp(p1,"stop",4)==0) { seq_data[4]=0x00; seq_data[5]=0x03; seq_data[6]=0x48; length=7; } else if(memcmp(p1,"mode",4)==0) { seq_data[4]=0x00; seq_data[5]=0x04; seq_data[6]=0x49; seq_data[7]=0x00; length=8; } transmit(fd,seq_data,length,max_result_length); } else if(memcmp(p1,"others:",7)==0) { for(i=0;i<4;i++) seq_data[i]=0xa5; seq_data[i]=0x00; p1=p1+7; if(memcmp(p1,"steptime(",9)==0) { p1=p1+9; seq_data[5]=0x06; seq_data[6]=0x57; /*for(i=0;p1[i]!=')';i++) data_cmp[i]=p1[i];*/ for(i=0;*p1!=NULL;i++) data_cmp[i]=*p1++; data_cmp[i]='\0'; /* //NULL; */ /* //p1=p1+i; */ //x=my_atof(data_cmp); x=change_timedata; time_out=(long)(1000000*x/50); /* //p3=&time_out; */ seq_data[7]=(unsigned char)(time_out>>16);/* //p3[0]; */ seq_data[8]=(unsigned char)(time_out>>8); /* //p3[4]; */ seq_data[9]=(unsigned char)(time_out); /* //p3[3]; */ length=10; } else if(memcmp(p1,"ana:",4)==0) { seq_data[5]=0x07; seq_data[6]=0x53; p1=p1+4; if(memcmp(p1,"v(1:1",5)==0) { seq_data[7]=0x00; x=V1RelaPhase; } else if(memcmp(p1,"v(1:2",5)==0) { seq_data[7]=0x01; x=V2RelaPhase; } else if(memcmp(p1,"v(1:3",5)==0) { seq_data[7]=0x02; x=V3RelaPhase; } else if(memcmp(p1,"i(1:1",5)==0) { seq_data[7]=0x04; x=I1RelaPhase; } else if(memcmp(p1,"i(1:2",5)==0) { seq_data[7]=0x05; x=I2RelaPhase; } else if(memcmp(p1,"i(1:3",5)==0) { seq_data[7]=0x06; x=I3RelaPhase; } p1=p1+7; if(memcmp(p1,"rel_phase(",10)==0) { y=(int)x; data2=(unsigned char)y; data1=(unsigned char)(y>>8); seq_data[8]=(data1<<6)|(data2>>2); seq_data[9]=data2<<6; frec(x,2,data_cmp1); seq_data[9]=seq_data[9]|(data_cmp1[0]>>2); seq_data[10]=(data_cmp1[0]<<6)|(data_cmp1[1]>>2); } length=11; } else if(memcmp(p1,"revision:get",12)==0) { seq_data[5]=0x03; seq_data[6]=0x59; length=7; } else if(memcmp(p1,"revision:valueget:",18)==0) { seq_data[5]=0x04; seq_data[6]=0x5e; p1=p1+18; if(memcmp(p1,"v(1:1",5)==0) seq_data[7]=0x00; else if(memcmp(p1,"v(1:2",5)==0) seq_data[7]=0x01; else if(memcmp(p1,"v(1:3",5)==0) seq_data[7]=0x02; else if(memcmp(p1,"v(1:4",5)==0) seq_data[7]=0x03; else if(memcmp(p1,"i(1:1",5)==0) seq_data[7]=0x04; else if(memcmp(p1,"i(1:2",5)==0) seq_data[7]=0x05; else if(memcmp(p1,"i(1:3",5)==0) seq_data[7]=0x06; length=8; } transmit(fd,seq_data,length,max_result_length); } p1=p4; return; } // amplifier parmeter change void channel_input(int fd,int type,double value, double phan,double frec,int sin_dc_status1,int channel_status,double value_step,double phase_step,double frec_step) { int i; char buffer[40],buffer1[100],p1[100],p2[100],buffer4[40]; char p3[100],buffer3[40]; if(sin_dc_status1==0) value=value*1.414; if(type==1)//type=1 -->voltage { if(channel_status==1) { for(i=0;i<40;i++) data_v_a[i]=0x00; strcpy(p1,"out:ana:v(1:1):sig1:"); if (phan!=360) phan+=VaPhaseRevision;//07-10-08 16:10,ÏàλУ׌ } else if(channel_status==2) { for(i=0;i<40;i++) data_v_b[i]=0x00; strcpy(p1,"out:ana:v(1:2):sig1:"); if (phan!=360) //2008-12-25 phan+=VbPhaseRevision;//07-10-08 16:10,ÏàλУ׌ } else if(channel_status==3) { for(i=0;i<40;i++) data_v_c[i]=0x00; strcpy(p1,"out:ana:v(1:3):sig1:"); if(phan!=360) //2008-12-25 phan+=VcPhaseRevision;//07-10-08 16:10,ÏàλУ׌ } } if(type==0) { if(channel_status==1) { for(i=0;i<40;i++) data_i_a[i]=0x00; strcpy(p1,"out:ana:i(1:1):sig1:"); if(phan!=360) //2008-12-25 phan+=IaPhaseRevision;// } else if(channel_status==2) { for(i=0;i<40;i++) data_i_b[i]=0x00; strcpy(p1,"out:ana:i(1:2):sig1:"); if(phan!=360) //2008-12-25 phan+=IbPhaseRevision;//07-10-08 16:10,ÏàλУ׌ } else if(channel_status==3) { for(i=0;i<40;i++) data_i_c[i]=0x00; strcpy(p1,"out:ana:i(1:3):sig1:"); if(phan!=360) //2008-12-25 phan+=IcPhaseRevision;//07-10-08 16:10,ÏàλУ׌ } } if(phan<0) phan+=360; if(phase_step<0) phase_step+=360; for(i=0;p1[i]!=NULL;i++) buffer4[i]=p1[i]; buffer4[i]=NULL; buffer1[0]=NULL; // p2=buffer2; p2[0]=')'; p2[1]=NULL; gcvt(value,6,buffer); strcpy(p1,"a(") ; for(i=0;p1[i]!=NULL;i++) buffer3[i]=p1[i]; buffer3[i]=NULL; strncat1(buffer1,buffer4); strncat1(buffer1,buffer3); strncat1(buffer1,buffer); strncat1(buffer1,p2); artExec(fd,buffer1,result,0); if(sin_dc_status1==0) value_step=value_step*1.414; gcvt(value_step,6,buffer); buffer1[0]=NULL; strncat1(buffer1,buffer4); strncat1(buffer1,buffer3); strncat1(buffer1,buffer); strcpy(p3,",step"); strcat(buffer1,p3); strncat1(buffer1,p2); artExec(fd,buffer1,result,0); buffer1[0]=NULL; gcvt(frec,7,buffer); strcpy(p1,"f("); for(i=0;p1[i]!=NULL;i++) buffer3[i]=p1[i]; buffer3[i]=NULL; buffer1[0]=NULL; strncat1(buffer1,buffer4); strncat1(buffer1,buffer3); strncat1(buffer1,buffer); strncat1(buffer1,p2); artExec(fd,buffer1,result,0); gcvt(frec_step,6,buffer); buffer1[0]=NULL; strncat1(buffer1,buffer4); strncat1(buffer1,buffer3); strncat1(buffer1,buffer); strcpy(p3,",step"); strcat(buffer1,p3); strncat1(buffer1,p2); artExec(fd,buffer1,result,0); buffer1[0]=NULL; gcvt(phan,7,buffer); strcpy(p1,"p("); for(i=0;p1[i]!=NULL;i++) buffer3[i]=p1[i]; buffer3[i]=NULL; strncat1(buffer1,buffer4); strncat1(buffer1,buffer3); strncat1(buffer1,buffer); strncat1(buffer1,p2); artExec(fd,buffer1,result,0); gcvt(phase_step,6,buffer); buffer1[0]=NULL; strncat1(buffer1,buffer4); strncat1(buffer1,buffer3); strncat1(buffer1,buffer); strcpy(p3,",step"); strcat(buffer1,p3); strncat1(buffer1,p2); artExec(fd,buffer1,result,0); if(sin_dc_status1==0) strcpy(p1,"wav(sin)"); else strcpy(p1,"wav(dc)"); for(i=0;p1[i]!=NULL;i++) buffer3[i]=p1[i]; buffer3[i]=NULL; buffer1[0]=NULL; strncat1(buffer1,buffer4); strncat1(buffer1,buffer3); artExec(fd,buffer1,result,0); if(type==1) { if(channel_status==1) { strcpy(p1,"out:ana:mix:v(1:1,sig1)"); for(i=0;p1[i]!=NULL;i++) buffer1[i]=p1[i]; buffer1[i]=NULL; artExec(fd,buffer1,result,0); } else if(channel_status==2) { strcpy(p1,"out:ana:mix:v(1:2,sig1)"); for(i=0;p1[i]!=NULL;i++) buffer1[i]=p1[i]; buffer1[i]=NULL; artExec(fd,buffer1,result,0); } else if(channel_status==3) { strcpy(p1,"out:ana:mix:v(1:3,sig1)"); for(i=0;p1[i]!=NULL;i++) buffer1[i]=p1[i]; buffer1[i]=NULL; artExec(fd,buffer1,result,0); } } if(type==0) { if(channel_status==1) { strcpy(p1,"out:ana:mix:i(1:1,sig1)"); for(i=0;p1[i]!=NULL;i++) buffer1[i]=p1[i]; buffer1[i]=NULL; artExec(fd,buffer1,result,0); } else if(channel_status==2) { strcpy(p1,"out:ana:mix:i(1:2,sig1)"); for(i=0;p1[i]!=NULL;i++) buffer1[i]=p1[i]; buffer1[i]=NULL; artExec(fd,buffer1,result,0); } else if(channel_status==3) { strcpy(p1,"out:ana:mix:i(1:3,sig1)"); for(i=0;p1[i]!=NULL;i++) buffer1[i]=p1[i]; buffer1[i]=NULL; artExec(fd,buffer1,result,0); } } } unsigned long BytesToUnlong( unsigned char bytes[], int NoBytes) { unsigned long value=0; //, value1=0, value2=0; if ( NoBytes <= 0 || NoBytes > 4 ) return -1; for (int i=0; i<NoBytes; i++) { value +=(unsigned long)(*(bytes+i)*(pow_my(256,(NoBytes-i-1)))); // =bytes[0]*256*...+bytes[1]*... } return value; } // to convert bytes to a float. // BitsInt - bits of integer part(maximum, 16) // Bytes - total bytes for transaction // float BytesToFloat(unsigned char bytes[], int BitsInt, int Bytes, int Signed) { float rtn =(float)BytesToUnlong( bytes, Bytes); if (Signed && *bytes > 128) rtn -= (float)pow(256, Bytes); rtn /= (float)pow(2, (Bytes*8-BitsInt)); return rtn; } void online(int fd) //online { int i,k; unsigned char send_str[17]={0xa5,0xa5,0xa5,0xa5,0xff,0x00,0x0c,0x0f}; unsigned char receive_str1[4]={0xf0,0xf0,0xf0,0xf0}; unsigned char receive_str2[10]={0x0f,0x5a,0xf0,0xa5,0xff,0x0f,0x5a,0xf0,0xa5,0x00}; while(1) { receive_send(fd,send_str,0,receive_str1,12,4,1); for(i=0;i<8;i++) send_str[8+i]=receive_data[4+i]; send_str[16]=ID; k=receive_send(fd,send_str,17,receive_str2,10,10,0); if(k==1) break; } } int read_max(int fd) { int SIGNED=1; artExec(fd,"amp:def?(1:1)",result,24);//from ART read amplifer_va's parameter. response[0]=result[10]; response[1]=result[11]; response[2]=result[12]; max_output_v_a=BytesToFloat(response,10,3,SIGNED);//get va's max absolute output level. artExec(fd,"amp:def?(1:2)",result,24); //from ART read amplifer_vb's parameter. response[0]=result[10]; response[1]=result[11]; response[2]=result[12]; max_output_v_b=BytesToFloat(response,10,3,SIGNED);//get vb's max absolute output level. artExec(fd,"amp:def?(1:3)",result,24); //from ART read amplifer_vc's parameter. response[0]=result[10]; response[1]=result[11]; response[2]=result[12]; max_output_v_c=BytesToFloat(response,10,3,SIGNED);//get vc's max absolute output level. artExec(fd,"amp:def?(1:4)",result,24); //from ART read amplifer_vc's parameter. response[0]=result[10]; response[1]=result[11]; response[2]=result[12]; max_output_v_z=BytesToFloat(response,10,3,SIGNED);//get vb's max absolute output level. artExec(fd,"amp:def?(2:1)",result,24);//from ART read amplifer_i's parameter. response[0]=result[10]; response[1]=result[11]; response[2]=result[12]; max_output_i_a=BytesToFloat(response,8,3,SIGNED);//get i1's max absolute output level. artExec(fd,"amp:def?(2:2)",result,24);//from ART read amplifer_i's parameter. response[0]=result[10]; response[1]=result[11]; response[2]=result[12]; max_output_i_b=BytesToFloat(response,8,3,SIGNED);//get i2's max absolute output level. artExec(fd,"amp:def?(2:3)",result,24);//from ART read amplifer_i's parameter. response[0]=result[10]; response[1]=result[11]; response[2]=result[12]; max_output_i_c=BytesToFloat(response,8,3,SIGNED);//get i3's max absolute output level. artExec(fd,"others:revision:get",result,59);//¶ÁƵÂÊ¡¢Ïàλ²¹³¥²ÎÊý response[0]=result[7]; response[1]=result[8]; response[2]=result[9]; FreqRevision=BytesToFloat(response,4,3,SIGNED);//ƵÂʲ¹³¥²ÎÊý response[0]=result[10]; response[1]=result[11]; response[2]=result[12]; VaPhaseRevision=BytesToFloat(response,4,3,SIGNED);//VaÏàλ²¹³¥²ÎÊý response[0]=result[13]; response[1]=result[14]; response[2]=result[15]; VbPhaseRevision=BytesToFloat(response,4,3,SIGNED);//VbÏàλ²¹³¥²ÎÊý response[0]=result[16]; response[1]=result[17]; response[2]=result[18]; VcPhaseRevision=BytesToFloat(response,4,3,SIGNED);//VcÏàλ²¹³¥²ÎÊý response[0]=result[22]; response[1]=result[23]; response[2]=result[24]; IaPhaseRevision=BytesToFloat(response,4,3,SIGNED);//IaÏàλ²¹³¥²ÎÊý response[0]=result[25]; response[1]=result[26]; response[2]=result[27]; IbPhaseRevision=BytesToFloat(response,4,3,SIGNED);//IbÏàλ²¹³¥²ÎÊý response[0]=result[28]; response[1]=result[29]; response[2]=result[30]; IcPhaseRevision=BytesToFloat(response,4,3,SIGNED);//IcÏàλ²¹³¥²ÎÊý return (1); } #endif
[ "275159401@qq.com" ]
275159401@qq.com
bd4f7b0ea8996745c57b0c4258c678796ff18db3
2abb5b2237e5b879e2fcf414e0400c70099291de
/UnitTesting/TestObjectiveFunctional/Polynomial.cpp
065001cd08c88b3991a7892b3c4ddfded0b042fc
[]
no_license
dimitarpg13/FloodV3
860e6e3fc726def8851408aea573ebe531d406d1
d816a635161656b65b0edc9675336f10fadc8f27
refs/heads/master
2021-01-11T04:19:49.944314
2017-04-03T18:06:31
2017-04-03T18:06:31
71,177,040
0
1
null
null
null
null
UTF-8
C++
false
false
3,841
cpp
/****************************************************************************************************************/ /* */ /* Flood: An Open Source Neural Networks C++ Library */ /* www.cimne.com/flood */ /* */ /* P O L Y N O M I A L C L A S S */ /* */ /* Roberto Lopez */ /* International Center for Numerical Methods in Engineering (CIMNE) */ /* Technical University of Catalonia (UPC) */ /* Barcelona, Spain */ /* E-mail: rlopez@cimne.upc.edu */ /* */ /****************************************************************************************************************/ // Flood includes #include "Polynomial.h" // System includes #include <string> #include <sstream> #include <iostream> #include <fstream> #include <cmath> using namespace Flood; // GENERAL CONSTRUCTOR Polynomial::Polynomial(MultilayerPerceptron* new_multilayer_perceptron_pointer) : ObjectiveFunctional(new_multilayer_perceptron_pointer) { } // DEFAULT CONSTRUCTOR Polynomial::Polynomial(void) : ObjectiveFunctional() { } // DESTRUCTOR Polynomial::~Polynomial(void) { } // METHODS // Vector<double> get_coefficients(void) method Vector<double> Polynomial::get_coefficients(void) { return(coefficients); } // void set_coefficients(Vector<double>) method void Polynomial::set_coefficients(Vector<double> new_coefficients) { coefficients = new_coefficients; } double Polynomial::calculate_output(double input) { int size = coefficients.get_size(); double output = 0.0; for(int i = 0; i < size; i++) { output += coefficients[i]*pow(input,i); } return(output); } // double calculate_objective(void) method double Polynomial::calculate_objective(void) { calculate_evaluation_count++; double input = multilayer_perceptron_pointer->get_independent_parameter(0); double objective = calculate_output(input); return(objective); } // Flood: An Open Source Neural Networks C++ Library. // Copyright (C) 2005-2010 Roberto Lopez // // This library is free software; you can redistribute it and/or // modify it under the s of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
[ "dimitar_pg13@hotmail.com" ]
dimitar_pg13@hotmail.com
d5b1766119e03b8569ec462c3b61f599324d120f
f69a16affcc4a132fbd97cf68dbad9a57bded7c7
/src/fltest/flowtest.cc
ee2608af245ab1fbb7e1dae2228a36c361f82787
[]
no_license
christianparpart/flow
aa89208a61ca2a21c0efe498bacad74ac9b52f10
4c2ced8f05068293277b3da7c50fc9eda9a904d3
refs/heads/master
2020-03-17T15:39:13.509770
2018-07-23T12:20:10
2018-07-23T12:20:10
133,718,646
4
0
null
null
null
null
UTF-8
C++
false
false
7,966
cc
// This file is part of the "x0" project, http://github.com/christianparpart/x0> // (c) 2009-2018 Christian Parpart <christian@parpart.family> // // Licensed under the MIT License (the "License"); you may not use this // file except in compliance with the License. You may obtain a copy of // the License at: http://opensource.org/licenses/MIT #include "flowtest.h" #include <flow/SourceLocation.h> /* TestProgram ::= FlowProgram [Initializer Message*] FlowProgram ::= <flow program code until Initializer> Initializer ::= '#' '----' LF Message ::= '#' [Location] DiagnosticsType ':' MessageText LF DiagnosticsType ::= 'TokenError' | 'SyntaxError' | 'TypeError' | 'Warning' | 'LinkError' Location ::= '[' FilePos ['..' FilePos] ']' FilePos ::= Line ':' Column Column ::= NUMBER Line ::= NUMBER MessageText ::= TEXT (LF INDENT TEXT)* NUMBER ::= ('0'..'9')+ TEXT ::= <until LF> LF ::= '\n' | '\r\n' INDENT ::= (' ' | '\t')+ */ namespace flowtest { // ---------------------------------------------------------------------------- // lexic Lexer::Lexer() : Lexer("", "") { } Lexer::Lexer(std::string filename, std::string contents) : filename_{std::move(filename)}, source_{std::move(contents)}, startOffset_{0}, currentToken_{Token::Eof}, currentPos_{}, numberValue_{0}, stringValue_{} { size_t i = source_.find("\n# ----\n"); if (i != std::string::npos) { nextChar(i + 8); startOffset_ = i + 1; currentToken_ = Token::InitializerMark; } else { startOffset_ = source_.size(); currentToken_ = Token::Eof; } } int Lexer::nextChar(off_t i) { while (i > 0 && !eof_()) { currentPos_.advance(currentChar()); i--; } return currentChar(); } bool Lexer::peekSequenceMatch(const std::string& sequence) const { if (currentOffset() + sequence.size() > source_.size()) return false; for (size_t i = 0; i < sequence.size(); ++i) if (source_[currentOffset() + i] != sequence[i]) return false; return true; } Token Lexer::nextToken() { skipSpace(); switch (currentChar()) { case -1: return currentToken_ = Token::Eof; case '#': // if (peekSequenceMatch("# ----\n")) { // nextChar(7); // return currentToken_ = Token::InitializerMark; // } nextChar(); return currentToken_ = Token::Begin; case '.': if (peekChar() == '.') { nextChar(2); return currentToken_ = Token::DotDot; } break; case ':': nextChar(); return currentToken_ = Token::Colon; case '[': nextChar(); return currentToken_ = Token::BrOpen; case ']': nextChar(); return currentToken_ = Token::BrClose; case '\n': nextChar(); return currentToken_ = Token::LF; default: if (currentToken_ == Token::Colon) { return currentToken_ = parseMessageText(); } if (std::isdigit(currentChar())) { return currentToken_ = parseNumber(); } if (std::isalpha(currentChar())) { return currentToken_ = parseIdent(); } } throw LexerError{fmt::format("Unexpected character {} ({:x}) during tokenization.", currentChar() ? (char) currentChar() : '?', currentChar())}; } Token Lexer::parseIdent() { stringValue_.clear(); while (std::isalpha(currentChar())) { stringValue_ += static_cast<char>(currentChar()); nextChar(); } if (stringValue_ == "TokenError") return Token::TokenError; if (stringValue_ == "SyntaxError") return Token::SyntaxError; if (stringValue_ == "TypeError") return Token::TypeError; if (stringValue_ == "Warning") return Token::Warning; if (stringValue_ == "LinkError") return Token::LinkError; throw LexerError{fmt::format("Unexpected identifier '{}' during tokenization.", stringValue_)}; } Token Lexer::parseMessageText() { stringValue_.clear(); while (!eof_() && currentChar() != '\n') { stringValue_ += static_cast<char>(currentChar()); nextChar(); } return Token::MessageText; } Token Lexer::parseNumber() { numberValue_ = 0; while (std::isdigit(currentChar())) { numberValue_ *= 10; numberValue_ += currentChar() - '0'; nextChar(); } return Token::Number; } void Lexer::skipSpace() { for (;;) { switch (currentChar()) { case ' ': case '\t': nextChar(); break; default: return; } } } bool Lexer::consumeIf(Token t) { if (currentToken() != t) return false; nextToken(); return true; } void Lexer::consume(Token t) { if (currentToken() != t) throw LexerError{fmt::format("Unexpected token {}. Expected {} instead.", currentToken(), t)}; nextToken(); } int Lexer::consumeNumber() { unsigned result = numberValue_; consume(Token::Number); return result; } std::string Lexer::consumeText(Token t) { std::string result = stringValue(); consume(t); return result; } std::string join(const std::initializer_list<Token>& tokens) { std::string s; for (Token t: tokens) { if (!s.empty()) s += ", "; s += fmt::format("{}", t); } return s; } void Lexer::consumeOneOf(std::initializer_list<Token>&& tokens) { if (std::find(tokens.begin(), tokens.end(), currentToken()) == tokens.end()) throw LexerError{fmt::format("Unexpected token {}. Expected on of {} instead.", currentToken(), join(tokens))}; nextToken(); } // ---------------------------------------------------------------------------- // parser Parser::Parser(std::string filename, std::string source) : lexer_{std::move(filename), std::move(source)} { } std::error_code Parser::parse(flow::diagnostics::Report* report) { lexer_.consume(Token::InitializerMark); while (!lexer_.eof()) report->push_back(parseMessage()); return std::error_code{}; } Message Parser::parseMessage() { // Message ::= '#' [Location] DiagnosticsType ':' MessageText (LF | EOF) lexer_.consume(Token::Begin); SourceLocation location = tryParseLocation(); DiagnosticsType type = parseDiagnosticsType(); lexer_.consume(Token::Colon); std::string text = lexer_.consumeText(Token::MessageText); lexer_.consumeOneOf({Token::LF, Token::Eof}); return Message{type, location, text}; } DiagnosticsType Parser::parseDiagnosticsType() { // DiagnosticsType ::= 'TokenError' | 'SyntaxError' | 'TypeError' | 'Warning' | 'LinkError' switch (lexer_.currentToken()) { case Token::TokenError: lexer_.nextToken(); return DiagnosticsType::TokenError; case Token::SyntaxError: lexer_.nextToken(); return DiagnosticsType::SyntaxError; case Token::TypeError: lexer_.nextToken(); return DiagnosticsType::TypeError; case Token::Warning: lexer_.nextToken(); return DiagnosticsType::Warning; case Token::LinkError: lexer_.nextToken(); return DiagnosticsType::LinkError; default: throw SyntaxError{"Unexpected token. Expected DiagnosticsType instead."}; } } SourceLocation Parser::tryParseLocation() { // TODO // Location ::= '[' FilePos ['..' FilePos] ']' if (!lexer_.consumeIf(Token::BrOpen)) return SourceLocation{}; FilePos begin = parseFilePos(); if (lexer_.consumeIf(Token::DotDot)) { FilePos end = parseFilePos(); return SourceLocation{"", begin, end}; } else { return SourceLocation{"", begin, FilePos{}}; } } FilePos Parser::parseFilePos() { // FilePos ::= Line [':' Column] // Column ::= NUMBER // Line ::= NUMBER unsigned line = lexer_.consumeNumber(); if (lexer_.consumeIf(Token::Colon)) { unsigned column = lexer_.consumeNumber(); return FilePos{line, column}; } else { return FilePos{line, 0}; } } } // namespace flowtest
[ "christian@parpart.family" ]
christian@parpart.family
f6fb5dbedc7b93d079de6a87afea57f993facb6e
7d7df8fd1529137060c9b420ade369dd816b9cee
/src/convert_old_robot_log.cpp
d8798b57174470a242c37ac00e8bf32a61a4ab4d
[ "BSD-3-Clause" ]
permissive
open-dynamic-robot-initiative/robot_interfaces
28eb944e3e45da2c46899041d74b50bec53f9d9f
9d771e712f5b5841e52d94ab82bc5db9645b5dc9
refs/heads/master
2022-11-30T02:17:57.244189
2022-11-28T08:12:05
2022-11-28T08:12:05
203,580,199
21
5
BSD-3-Clause
2023-09-14T09:23:46
2019-08-21T12:32:44
C++
UTF-8
C++
false
false
3,175
cpp
/** * @file * @brief Convert old TriFinger robot logs from before the fix in * Status::error_message. * * In the past Status::error_message was a variable-sized std::string. Since * this is incompatible with the fixed-size requirement for shared memory time * series, it was changed to a fixed-size char-array in commit 4ca02a17. * Unfortunately, this makes old logfiles incompatible with the RobotLogReader * using the fixed type. * * This file provides a utility to load log files of the old format and convert * them to the new format, so that they can be processed with the latest version * of the code. * * @copyright Copyright (c) 2021, Max Planck Gesellschaft. * @license BSD 3-clause */ #include <filesystem> #include <iostream> #include <string> #include <vector> #include <cereal/types/string.hpp> #include <robot_interfaces/finger_types.hpp> #include <robot_interfaces/status.hpp> using namespace robot_interfaces; //! Old version of the Status message (taken from commit 4ca02a17^, stripped //! down to the relevant parts). struct OldStatus { uint32_t action_repetitions = 0; Status::ErrorStatus error_status = Status::ErrorStatus::NO_ERROR; std::string error_message; template <class Archive> void serialize(Archive& archive) { archive(action_repetitions, error_status, error_message); } }; typedef RobotBinaryLogReader<TriFingerTypes::Action, TriFingerTypes::Observation, OldStatus> OldLogReader; int main(int argc, char* argv[]) { if (argc != 3) { std::cerr << "Error: Invalid number of arguments." << std::endl; std::cerr << "Usage: " << argv[0] << " <old_logfile> <new_logfile>" << std::endl; return 1; } std::string old_logfile(argv[1]); std::string new_logfile(argv[2]); if (!std::filesystem::is_regular_file(old_logfile)) { std::cout << "Error: Input " << old_logfile << " is not a regular file." << std::endl; return 2; } if (std::filesystem::exists(new_logfile)) { std::cout << "Error: Output destination " << new_logfile << " already exists." << std::endl; return 3; } OldLogReader old_log(old_logfile); TriFingerTypes::BinaryLogReader new_log; // copy data for (OldLogReader::LogEntry old_entry : old_log.data) { TriFingerTypes::BinaryLogReader::LogEntry new_entry; // copy all fields that are unchanged new_entry.timeindex = old_entry.timeindex; new_entry.timestamp = old_entry.timestamp; new_entry.observation = old_entry.observation; new_entry.desired_action = old_entry.desired_action; new_entry.applied_action = old_entry.applied_action; // copy status new_entry.status.action_repetitions = old_entry.status.action_repetitions; new_entry.status.set_error(old_entry.status.error_status, old_entry.status.error_message); new_log.data.push_back(new_entry); } new_log.write_file(new_logfile); }
[ "felix.widmaier@tuebingen.mpg.de" ]
felix.widmaier@tuebingen.mpg.de
cc2c96e8521a776d8b4c83caa136ab132e4bea00
a7764174fb0351ea666faa9f3b5dfe304390a011
/src/Graphic3d/Graphic3d_Group_9.cxx
ee3426e3b295b206f68d9123ca743262d17ebfae
[]
no_license
uel-dataexchange/Opencascade_uel
f7123943e9d8124f4fa67579e3cd3f85cfe52d91
06ec93d238d3e3ea2881ff44ba8c21cf870435cd
refs/heads/master
2022-11-16T07:40:30.837854
2020-07-08T01:56:37
2020-07-08T01:56:37
276,290,778
0
0
null
null
null
null
UTF-8
C++
false
false
10,786
cxx
// File Graphic3d_Group_9.cxx (Quadrangle) // Created Fevrier 1992 // Author NW,JPB,CAL // Modified // 27/08/97 ; PCT : ajout coordonnee texture //-Copyright MatraDatavision 1991,1992 //-Version //-Design Declaration des variables specifiques aux groupes // de primitives //-Warning Un groupe est defini dans une structure // Il s'agit de la plus petite entite editable //-References //-Language C++ 2.0 //-Declarations // for the class #include <Graphic3d_Group.jxx> #include <Graphic3d_Group.pxx> #include <Graphic3d_VertexN.hxx> #include <Graphic3d_VertexC.hxx> #include <Graphic3d_VertexNT.hxx> //-Methods, in order void Graphic3d_Group::QuadrangleMesh (const Graphic3d_Array2OfVertex& ListVertex, const Standard_Boolean EvalMinMax) { if (IsDeleted ()) return; if (! MyContainsFacet) MyStructure->GroupsWithFacet (+1); MyContainsFacet = Standard_True; MyIsEmpty = Standard_False; Standard_Real X, Y, Z; // Min-Max Update if (EvalMinMax) { Standard_Integer i, j; Standard_Integer LowerRow = ListVertex.LowerRow (); Standard_Integer UpperRow = ListVertex.UpperRow (); Standard_Integer LowerCol = ListVertex.LowerCol (); Standard_Integer UpperCol = ListVertex.UpperCol (); // Parcours des sommets for (i=LowerRow; i<=UpperRow; i++) for (j=LowerCol; j<=UpperCol; j++) { ListVertex (i, j).Coord (X, Y, Z); if (X < MyBounds.XMin) MyBounds.XMin = Standard_ShortReal (X); if (Y < MyBounds.YMin) MyBounds.YMin = Standard_ShortReal (Y); if (Z < MyBounds.ZMin) MyBounds.ZMin = Standard_ShortReal (Z); if (X > MyBounds.XMax) MyBounds.XMax = Standard_ShortReal (X); if (Y > MyBounds.YMax) MyBounds.YMax = Standard_ShortReal (Y); if (Z > MyBounds.ZMax) MyBounds.ZMax = Standard_ShortReal (Z); } } MyGraphicDriver->QuadrangleMesh (MyCGroup, ListVertex, EvalMinMax); Update (); } void Graphic3d_Group::QuadrangleMesh (const Graphic3d_Array2OfVertexN& ListVertex, const Standard_Boolean EvalMinMax) { if (IsDeleted ()) return; if (! MyContainsFacet) MyStructure->GroupsWithFacet (+1); MyContainsFacet = Standard_True; MyIsEmpty = Standard_False; Standard_Real X, Y, Z; Standard_Integer i, j; Standard_Integer LowerRow = ListVertex.LowerRow (); Standard_Integer UpperRow = ListVertex.UpperRow (); Standard_Integer LowerCol = ListVertex.LowerCol (); Standard_Integer UpperCol = ListVertex.UpperCol (); // Min-Max Update if (EvalMinMax) { // Parcours des sommets for (i=LowerRow; i<=UpperRow; i++) for (j=LowerCol; j<=UpperCol; j++) { ListVertex (i, j).Coord (X, Y, Z); if (X < MyBounds.XMin) MyBounds.XMin = Standard_ShortReal (X); if (Y < MyBounds.YMin) MyBounds.YMin = Standard_ShortReal (Y); if (Z < MyBounds.ZMin) MyBounds.ZMin = Standard_ShortReal (Z); if (X > MyBounds.XMax) MyBounds.XMax = Standard_ShortReal (X); if (Y > MyBounds.YMax) MyBounds.YMax = Standard_ShortReal (Y); if (Z > MyBounds.ZMax) MyBounds.ZMax = Standard_ShortReal (Z); } } MyGraphicDriver->QuadrangleMesh (MyCGroup, ListVertex, EvalMinMax); Update (); } void Graphic3d_Group::QuadrangleMesh(const Graphic3d_Array2OfVertexNT& ListVertex,const Standard_Boolean EvalMinMax) { if (IsDeleted ()) return; if (! MyContainsFacet) MyStructure->GroupsWithFacet (+1); MyContainsFacet = Standard_True; MyIsEmpty = Standard_False; Standard_Real X, Y, Z; Standard_Integer i, j; Standard_Integer LowerRow = ListVertex.LowerRow (); Standard_Integer UpperRow = ListVertex.UpperRow (); Standard_Integer LowerCol = ListVertex.LowerCol (); Standard_Integer UpperCol = ListVertex.UpperCol (); // Min-Max Update if (EvalMinMax) { // Parcours des sommets for (i=LowerRow; i<=UpperRow; i++) for (j=LowerCol; j<=UpperCol; j++) { ListVertex (i, j).Coord (X, Y, Z); if (X < MyBounds.XMin) MyBounds.XMin = Standard_ShortReal (X); if (Y < MyBounds.YMin) MyBounds.YMin = Standard_ShortReal (Y); if (Z < MyBounds.ZMin) MyBounds.ZMin = Standard_ShortReal (Z); if (X > MyBounds.XMax) MyBounds.XMax = Standard_ShortReal (X); if (Y > MyBounds.YMax) MyBounds.YMax = Standard_ShortReal (Y); if (Z > MyBounds.ZMax) MyBounds.ZMax = Standard_ShortReal (Z); } } MyGraphicDriver->QuadrangleMesh (MyCGroup, ListVertex, EvalMinMax); Update (); } void Graphic3d_Group::QuadrangleSet (const Graphic3d_Array1OfVertex& ListVertex, const Aspect_Array1OfEdge& ListEdge, const Standard_Boolean EvalMinMax) { if (IsDeleted ()) return; if (! MyContainsFacet) MyStructure->GroupsWithFacet (+1); MyContainsFacet = Standard_True; MyIsEmpty = Standard_False; Standard_Integer i, j; i = ListVertex.Length (); j = ListEdge.Length (); if ((i <= 3) || (j <= 3)) Graphic3d_GroupDefinitionError::Raise ("Bad number of vertices"); // Min-Max Update if (EvalMinMax) { Standard_Real X, Y, Z; Standard_Integer Lower = ListVertex.Lower (); Standard_Integer Upper = ListVertex.Upper (); // Parcours des sommets for (j=0, i=Lower; i<=Upper; i++, j++) { ListVertex (i).Coord (X, Y, Z); if (X < MyBounds.XMin) MyBounds.XMin = Standard_ShortReal (X); if (Y < MyBounds.YMin) MyBounds.YMin = Standard_ShortReal (Y); if (Z < MyBounds.ZMin) MyBounds.ZMin = Standard_ShortReal (Z); if (X > MyBounds.XMax) MyBounds.XMax = Standard_ShortReal (X); if (Y > MyBounds.YMax) MyBounds.YMax = Standard_ShortReal (Y); if (Z > MyBounds.ZMax) MyBounds.ZMax = Standard_ShortReal (Z); } } MyGraphicDriver->QuadrangleSet (MyCGroup, ListVertex, ListEdge, EvalMinMax); Update (); } void Graphic3d_Group::QuadrangleSet (const Graphic3d_Array1OfVertexN& ListVertex, const Aspect_Array1OfEdge& ListEdge, const Standard_Boolean EvalMinMax) { if (IsDeleted ()) return; if (! MyContainsFacet) MyStructure->GroupsWithFacet (+1); MyContainsFacet = Standard_True; MyIsEmpty = Standard_False; Standard_Integer i, j; i = ListVertex.Length (); j = ListEdge.Length (); if ((i <= 3) || (j <= 3)) Graphic3d_GroupDefinitionError::Raise ("Bad number of vertices"); // Min-Max Update if (EvalMinMax) { Standard_Real X, Y, Z; Standard_Integer Lower = ListVertex.Lower (); Standard_Integer Upper = ListVertex.Upper (); // Parcours des sommets for (j=0, i=Lower; i<=Upper; i++, j++) { ListVertex (i).Coord (X, Y, Z); if (X < MyBounds.XMin) MyBounds.XMin = Standard_ShortReal (X); if (Y < MyBounds.YMin) MyBounds.YMin = Standard_ShortReal (Y); if (Z < MyBounds.ZMin) MyBounds.ZMin = Standard_ShortReal (Z); if (X > MyBounds.XMax) MyBounds.XMax = Standard_ShortReal (X); if (Y > MyBounds.YMax) MyBounds.YMax = Standard_ShortReal (Y); if (Z > MyBounds.ZMax) MyBounds.ZMax = Standard_ShortReal (Z); } } MyGraphicDriver->QuadrangleSet (MyCGroup, ListVertex, ListEdge, EvalMinMax); Update (); } void Graphic3d_Group::QuadrangleSet (const Graphic3d_Array1OfVertexC& ListVertex, const Aspect_Array1OfEdge& ListEdge, const Standard_Boolean EvalMinMax) { if (IsDeleted ()) return; if (! MyContainsFacet) MyStructure->GroupsWithFacet (+1); MyContainsFacet = Standard_True; MyIsEmpty = Standard_False; Standard_Integer i, j; i = ListVertex.Length (); j = ListEdge.Length (); if ((i <= 3) || (j <= 3)) Graphic3d_GroupDefinitionError::Raise ("Bad number of vertices"); // Min-Max Update if (EvalMinMax) { Standard_Real X, Y, Z; Standard_Integer Lower = ListVertex.Lower (); Standard_Integer Upper = ListVertex.Upper (); // Parcours des sommets for (j=0, i=Lower; i<=Upper; i++, j++) { ListVertex (i).Coord (X, Y, Z); if (X < MyBounds.XMin) MyBounds.XMin = Standard_ShortReal (X); if (Y < MyBounds.YMin) MyBounds.YMin = Standard_ShortReal (Y); if (Z < MyBounds.ZMin) MyBounds.ZMin = Standard_ShortReal (Z); if (X > MyBounds.XMax) MyBounds.XMax = Standard_ShortReal (X); if (Y > MyBounds.YMax) MyBounds.YMax = Standard_ShortReal (Y); if (Z > MyBounds.ZMax) MyBounds.ZMax = Standard_ShortReal (Z); } } MyGraphicDriver->QuadrangleSet (MyCGroup, ListVertex, ListEdge, EvalMinMax); Update (); } void Graphic3d_Group::QuadrangleSet (const Graphic3d_Array1OfVertexNC& ListVertex, const Aspect_Array1OfEdge& ListEdge, const Standard_Boolean EvalMinMax) { if (IsDeleted ()) return; if (! MyContainsFacet) MyStructure->GroupsWithFacet (+1); MyContainsFacet = Standard_True; MyIsEmpty = Standard_False; Standard_Integer i, j; i = ListVertex.Length (); j = ListEdge.Length (); if ((i <= 3) || (j <= 3)) Graphic3d_GroupDefinitionError::Raise ("Bad number of vertices"); // Min-Max Update if (EvalMinMax) { Standard_Real X, Y, Z; Standard_Integer Lower = ListVertex.Lower (); Standard_Integer Upper = ListVertex.Upper (); // Parcours des sommets for (j=0, i=Lower; i<=Upper; i++, j++) { ListVertex (i).Coord (X, Y, Z); if (X < MyBounds.XMin) MyBounds.XMin = Standard_ShortReal (X); if (Y < MyBounds.YMin) MyBounds.YMin = Standard_ShortReal (Y); if (Z < MyBounds.ZMin) MyBounds.ZMin = Standard_ShortReal (Z); if (X > MyBounds.XMax) MyBounds.XMax = Standard_ShortReal (X); if (Y > MyBounds.YMax) MyBounds.YMax = Standard_ShortReal (Y); if (Z > MyBounds.ZMax) MyBounds.ZMax = Standard_ShortReal (Z); } } MyGraphicDriver->QuadrangleSet (MyCGroup, ListVertex, ListEdge, EvalMinMax); Update (); } void Graphic3d_Group::QuadrangleSet(const Graphic3d_Array1OfVertexNT& ListVertex,const Aspect_Array1OfEdge& ListEdge,const Standard_Boolean EvalMinMax) { if (IsDeleted ()) return; if (! MyContainsFacet) MyStructure->GroupsWithFacet (+1); MyContainsFacet = Standard_True; MyIsEmpty = Standard_False; Standard_Integer i, j; i = ListVertex.Length (); j = ListEdge.Length (); if ((i <= 3) || (j <= 3)) Graphic3d_GroupDefinitionError::Raise ("Bad number of vertices"); // Min-Max Update if (EvalMinMax) { Standard_Real X, Y, Z; Standard_Integer Lower = ListVertex.Lower (); Standard_Integer Upper = ListVertex.Upper (); // Parcours des sommets for (j=0, i=Lower; i<=Upper; i++, j++) { ListVertex (i).Coord (X, Y, Z); if (X < MyBounds.XMin) MyBounds.XMin = Standard_ShortReal (X); if (Y < MyBounds.YMin) MyBounds.YMin = Standard_ShortReal (Y); if (Z < MyBounds.ZMin) MyBounds.ZMin = Standard_ShortReal (Z); if (X > MyBounds.XMax) MyBounds.XMax = Standard_ShortReal (X); if (Y > MyBounds.YMax) MyBounds.YMax = Standard_ShortReal (Y); if (Z > MyBounds.ZMax) MyBounds.ZMax = Standard_ShortReal (Z); } } MyGraphicDriver->QuadrangleSet (MyCGroup, ListVertex, ListEdge, EvalMinMax); Update (); }
[ "shoka.sho2@excel.co.jp" ]
shoka.sho2@excel.co.jp
47112fda6642ed0ed39be20365dcdd5272d13dd4
636f92553b5077f82e9c2b6dfa84508a7d7ede0a
/Happic Engine/Src/ECS/ECSBaseSystem.h
3fdc6074e8013239ccaef7d8b76dde5e59f13489
[]
no_license
Happic-Games/Happic-Game-Engine
c7f3edaa88ca9388ea4b295775d0bad06ecdb3a8
18af6621abf43883640d14e815cd0bc7819c761e
refs/heads/master
2020-04-20T08:36:59.879767
2019-02-03T06:04:20
2019-02-03T06:04:20
168,744,549
0
1
null
null
null
null
UTF-8
C++
false
false
896
h
#pragma once #include "ECSHandles.h" #include "ECSBaseComponent.h" #include "../Core/SubEngines.h" #include <vector> namespace Happic { namespace ECS { typedef std::vector<ComponentID> ComponentInputSignature; class EntityComponentSystem; class BaseSystem { public: BaseSystem() {} virtual ~BaseSystem() {} virtual void ProcessEntity(EntityID entity, Core::IDisplayInput* pInput, float dt) = 0; inline const ComponentInputSignature& GetInputSignature() const { return m_inputSignature; } inline static SystemID RegisterSystemType() { return ++s_lastID; } protected: void AddComponentType(ComponentID componentID); void RemoveComponentType(ComponentID componentID); protected: EntityComponentSystem* m_pECS; SubEngines m_subEngines; private: ComponentInputSignature m_inputSignature; friend class EntityComponentSystem; static SystemID s_lastID; }; } }
[ "eunoiagamess@gmail.com" ]
eunoiagamess@gmail.com
af9b0cee36f8770a1dd9952e833f4e4cfacf068d
9953aaeed410e1fd26f738466e585bcfa187c527
/IDE/ScriptIDE/ScriptIDE.h
6e003699d4838775a19f04465be5945804531bf5
[]
no_license
zhaoliangcn/LScript
5ab470aa1f2b674a067802c4fd306c79a7ac9e8c
97205f823cc3aaaf56308a74fa1b3f28d302b89b
refs/heads/master
2022-09-23T06:34:40.999691
2022-07-26T08:10:39
2022-07-26T08:10:39
33,216,059
6
2
null
null
null
null
UTF-8
C++
false
false
1,182
h
// 这段 MFC 示例源代码演示如何使用 MFC Microsoft Office Fluent 用户界面 // (“Fluent UI”)。该示例仅供参考, // 用以补充《Microsoft 基础类参考》和 // MFC C++ 库软件随附的相关电子文档。 // 复制、使用或分发 Fluent UI 的许可条款是单独提供的。 // 若要了解有关 Fluent UI 许可计划的详细信息,请访问 // https://go.microsoft.com/fwlink/?LinkId=238214. // // 版权所有(C) Microsoft Corporation // 保留所有权利。 // ScriptIDE.h: ScriptIDE 应用程序的主头文件 // #pragma once #ifndef __AFXWIN_H__ #error "在包含此文件之前包含“stdafx.h”以生成 PCH 文件" #endif #include "resource.h" // 主符号 // CScriptIDEApp: // 有关此类的实现,请参阅 ScriptIDE.cpp // class CScriptIDEApp : public CWinAppEx { public: CScriptIDEApp(); // 重写 public: virtual BOOL InitInstance(); virtual int ExitInstance(); // 实现 UINT m_nAppLook; BOOL m_bHiColorIcons; virtual void PreLoadState(); virtual void LoadCustomState(); virtual void SaveCustomState(); afx_msg void OnAppAbout(); DECLARE_MESSAGE_MAP() }; extern CScriptIDEApp theApp;
[ "zhaoliangcn@126.com" ]
zhaoliangcn@126.com
b2e398b070ad6943428d976d088187c234a9c041
ab62c54954906229220b2e707bde48224fab25fc
/lib/Target/ARM/ARMFPUName.def
1fef3b3bc5e20744f0a4bc521ec40968c1c4b630
[ "NCSA", "LicenseRef-scancode-arm-llvm-sga" ]
permissive
sys-bio/roadrunner-dep-llvm-3.5.2
c4918566618bb4b7dfe0be47bb2e2814b75f9ef1
3cae879d3cef83ad9963c9386643b6760a33c88a
refs/heads/master
2021-01-10T02:47:31.374083
2015-09-29T21:59:47
2015-09-29T21:59:47
43,401,649
0
2
NOASSERTION
2020-03-26T09:55:59
2015-09-30T00:11:13
C++
UTF-8
C++
false
false
1,080
def
//===-- ARMFPUName.def - List of the ARM FPU names --------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file contains the list of the supported ARM FPU names. // //===----------------------------------------------------------------------===// // NOTE: NO INCLUDE GUARD DESIRED! #ifndef ARM_FPU_NAME #error "You must define ARM_FPU_NAME(NAME, ID) before including ARMFPUName.h" #endif ARM_FPU_NAME("vfp", VFP) ARM_FPU_NAME("vfpv2", VFPV2) ARM_FPU_NAME("vfpv3", VFPV3) ARM_FPU_NAME("vfpv3-d16", VFPV3_D16) ARM_FPU_NAME("vfpv4", VFPV4) ARM_FPU_NAME("vfpv4-d16", VFPV4_D16) ARM_FPU_NAME("fp-armv8", FP_ARMV8) ARM_FPU_NAME("neon", NEON) ARM_FPU_NAME("neon-vfpv4", NEON_VFPV4) ARM_FPU_NAME("neon-fp-armv8", NEON_FP_ARMV8) ARM_FPU_NAME("crypto-neon-fp-armv8", CRYPTO_NEON_FP_ARMV8) ARM_FPU_NAME("softvfp", SOFTVFP) #undef ARM_FPU_NAME
[ "0u812@github.com" ]
0u812@github.com
f568832abe92913c301645a81b4245b0ec83dea2
538f2b2a2e83518af6c9f37a83b35ef21ba5de6b
/13-vertex-animation/FSGL/src/Data/QuaternionKeyframe/FSGLQuaternionKeyframe.cpp
73734155813444b928ac842872d9bc548d8537d3
[]
no_license
LIANGMA314/OpenGLES3-Experiments
647af9ae842aa9664f69cd0c3f04e699ca7a8601
3ae2bf53787eb2e6f95a29f56bf6e2fb81ff27bf
refs/heads/master
2020-04-26T01:43:10.440623
2018-05-10T03:47:52
2018-05-10T03:47:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
533
cpp
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /* * File: FSGLQuaternionKeyframe.cpp * Author: demensdeum * * Created on November 5, 2017, 3:30 PM */ #include "FSGLQuaternionKeyframe.h" FSGLQuaternionKeyframe::FSGLQuaternionKeyframe() { } FSGLQuaternionKeyframe::FSGLQuaternionKeyframe(const FSGLQuaternionKeyframe& orig) { } FSGLQuaternionKeyframe::~FSGLQuaternionKeyframe() { }
[ "demensdeum@gmail.com" ]
demensdeum@gmail.com
3e7023b558a94c7b7322a2f994cf2ee775a64c21
dce7440578f056113ee73f00c57fcce07d932cdf
/Hw7/myApp.cpp
a0d5cc84d40423c558f940b00948d83e0b11847d
[]
no_license
HoofaPoofa/ALVESHW7-1
51e46734d57ea441b05d2e1bb12b8dd925db5e31
28886e6dd3283de3a4cad52d178ff9fc3062586c
refs/heads/main
2023-09-02T14:42:54.032034
2021-11-05T06:30:15
2021-11-05T06:30:15
424,808,744
0
0
null
null
null
null
UTF-8
C++
false
false
870
cpp
#include<iostream> #include<fstream> #include<string> #include<sstream> #include "derek_LED.h" using namespace std; #define LED_PATH "/sys/class/leds/beaglebone:green:usr" int main(int argc, char* argv[]){ if(argc!=2){ cout << "Usage is makeLEDs <command>" << endl; cout << " command is one of: on, off, flash or status" << endl; cout << " e.g. makeLEDs flash" << endl; } cout << "Starting the makeLEDs program" << endl; string cmd(argv[1]); LED leds[4] = { LED(0), LED(1), LED(2), LED(3) }; for(int i=0; i<=3; i++){ if(cmd=="on")leds[i].turnOn(); else if(cmd=="off")leds[i].turnOff(); else if(cmd=="flash")leds[i].flash("100"); //default is "50" else if(cmd=="status")leds[i].outputState(); else{ cout << "Invalid command!" << endl; } } cout << "Finished the makeLEDs program" << endl; return 0; }
[ "jason.alves@wne.edu" ]
jason.alves@wne.edu
42fdd0563fd3faa97c8d925292a797dce5d2332f
81f4ebf8666ff68f407c3cbd7165a59df4483901
/Source/WebKit/qt/WidgetSupport/QStyleFacadeImp.cpp
97c790aa630e57c251cb7ac6c098d9668eb20eb6
[ "BSD-2-Clause" ]
permissive
andrwwbstr/webkit
0a09927fc5f9d9d7b207f566a8f85cdd682a7795
9f70a9b57fcd7fa0431c080f1efd03b150cafe47
refs/heads/qtwebkit-stable
2023-01-01T19:57:45.819146
2016-07-04T21:57:08
2016-07-04T21:57:08
63,253,127
0
0
null
2016-07-13T14:29:15
2016-07-13T14:29:14
null
UTF-8
C++
false
false
17,556
cpp
/* * This file is part of the theme implementation for form controls in WebCore. * * Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). * Copyright (C) 2011-2012 Nokia Corporation and/or its subsidiary(-ies). * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * */ #include "config.h" #include "QStyleFacadeImp.h" #include <QApplication> #include <QLineEdit> #include <QPainter> #include <QPushButton> #include <QStyleFactory> #include <QStyleOption> #include <QWebPageAdapter.h> #include <QWebPageClient.h> using namespace WebCore; namespace WebKit { static QStyle::State convertToQStyleState(QStyleFacade::State state) { QStyle::State result; #define CONVERT_STATE(ProxiedState, Value) \ if (state & QStyleFacade::ProxiedState) \ result |= QStyle::ProxiedState; FOR_EACH_MAPPED_STATE(CONVERT_STATE, ) #undef CONVERT_STATE return result; } static QStyle::SubControl convertToQStyleSubControl(QStyleFacade::SubControl sc) { #define CONVERT_SUBCONTROL(F, Value) \ case QStyleFacade::F: return QStyle::F switch (sc) { FOR_EACH_SUBCONTROL(CONVERT_SUBCONTROL, SEMICOLON); } Q_UNREACHABLE(); return QStyle::SC_None; #undef CONVERT_SUBCONTROL } static void initGenericStyleOption(QStyleOption* option, QWidget* widget, const QStyleFacadeOption& facadeOption) { if (widget) option->init(widget); else // If a widget is not directly available for rendering, we fallback to default // value for an active widget. option->state = QStyle::State_Active | QStyle::State_Enabled; option->rect = facadeOption.rect; option->state = convertToQStyleState(facadeOption.state); if (facadeOption.direction != Qt::LayoutDirectionAuto) option->direction = facadeOption.direction; option->palette = facadeOption.palette; } static void initSpecificStyleOption(QStyleOption*, const QStyleFacadeOption&) { } static void initSpecificStyleOption(QStyleOptionSlider* sliderOption, const QStyleFacadeOption& facadeOption) { sliderOption->orientation = facadeOption.slider.orientation; sliderOption->upsideDown = facadeOption.slider.upsideDown; sliderOption->minimum = facadeOption.slider.minimum; sliderOption->maximum = facadeOption.slider.maximum; sliderOption->sliderPosition = facadeOption.slider.position; sliderOption->sliderValue = facadeOption.slider.value; sliderOption->singleStep = facadeOption.slider.singleStep; sliderOption->pageStep = facadeOption.slider.pageStep; sliderOption->activeSubControls = convertToQStyleSubControl(facadeOption.slider.activeSubControls); } template <typename StyleOption> class MappedStyleOption : public StyleOption { public: MappedStyleOption(QWidget* widget, const QStyleFacadeOption& facadeOption) { initGenericStyleOption(this, widget, facadeOption); initSpecificStyleOption(this, facadeOption); } }; static QStyle::PixelMetric convertPixelMetric(QStyleFacade::PixelMetric state) { #define CONVERT_METRIC(Metric) \ case QStyleFacade::Metric: return QStyle::Metric switch (state) { FOR_EACH_MAPPED_METRIC(CONVERT_METRIC, SEMICOLON); } Q_UNREACHABLE(); return QStyle::PM_CustomBase; #undef CONVERT_METRIC } static QStyleFacade::SubControl convertToQStyleFacadeSubControl(QStyle::SubControl sc) { #define CONVERT_SUBCONTROL(F, Value) \ case QStyle::F: return QStyleFacade::F switch (sc) { FOR_EACH_SUBCONTROL(CONVERT_SUBCONTROL, SEMICOLON); } Q_UNREACHABLE(); return QStyleFacade::SC_None; #undef CONVERT_SUBCONTROL } QStyleFacadeImp::QStyleFacadeImp(QWebPageAdapter* page) : m_page(page) , m_style(0) { m_fallbackStyle = QStyleFactory::create(QLatin1String("windows")); m_ownFallbackStyle = true; if (!m_fallbackStyle) { m_fallbackStyle = QApplication::style(); m_ownFallbackStyle = false; } } QStyleFacadeImp::~QStyleFacadeImp() { if (m_ownFallbackStyle) delete m_fallbackStyle; } QRect QStyleFacadeImp::buttonSubElementRect(QStyleFacade::ButtonSubElement buttonElement, State state, const QRect& originalRect) const { QStyleOptionButton option; option.state = convertToQStyleState(state); option.rect = originalRect; QStyle::SubElement subElement = QStyle::SE_CustomBase; switch (buttonElement) { case PushButtonLayoutItem: subElement = QStyle::SE_PushButtonLayoutItem; break; case PushButtonContents: subElement = QStyle::SE_PushButtonContents; break; default: Q_UNREACHABLE(); } return style()->subElementRect(subElement, &option); } int QStyleFacadeImp::findFrameLineWidth() const { if (!m_lineEdit) m_lineEdit.reset(new QLineEdit()); return style()->pixelMetric(QStyle::PM_DefaultFrameWidth, 0, m_lineEdit.data()); } int QStyleFacadeImp::simplePixelMetric(QStyleFacade::PixelMetric metric, State state) const { QStyleOption opt; opt.state = convertToQStyleState(state); return style()->pixelMetric(convertPixelMetric(metric), &opt, 0); } int QStyleFacadeImp::buttonMargin(State state, const QRect& originalRect) const { QStyleOptionButton styleOption; styleOption.state = convertToQStyleState(state); styleOption.rect = originalRect; return style()->pixelMetric(QStyle::PM_ButtonMargin, &styleOption, 0); } int QStyleFacadeImp::sliderLength(Qt::Orientation orientation) const { QStyleOptionSlider opt; opt.orientation = orientation; return style()->pixelMetric(QStyle::PM_SliderLength, &opt); } int QStyleFacadeImp::sliderThickness(Qt::Orientation orientation) const { QStyleOptionSlider opt; opt.orientation = orientation; return style()->pixelMetric(QStyle::PM_SliderThickness, &opt); } int QStyleFacadeImp::progressBarChunkWidth(const QSize& size) const { QStyleOptionProgressBarV2 option; option.rect.setSize(size); // FIXME: Until http://bugreports.qt.nokia.com/browse/QTBUG-9171 is fixed, // we simulate one square animating across the progress bar. return style()->pixelMetric(QStyle::PM_ProgressBarChunkWidth, &option); } void QStyleFacadeImp::getButtonMetrics(QString *buttonFontFamily, int *buttonFontPixelSize) const { QPushButton button; QFont defaultButtonFont = QApplication::font(&button); *buttonFontFamily = defaultButtonFont.family(); *buttonFontPixelSize = 0; #ifdef Q_OS_MAC button.setAttribute(Qt::WA_MacSmallSize); QFontInfo fontInfo(defaultButtonFont); *buttonFontPixelSize = fontInfo.pixelSize(); #endif } QSize QStyleFacadeImp::comboBoxSizeFromContents(State state, const QSize& contentsSize) const { QStyleOptionComboBox opt; opt.state = convertToQStyleState(state); return style()->sizeFromContents(QStyle::CT_ComboBox, &opt, contentsSize); } QSize QStyleFacadeImp::pushButtonSizeFromContents(State state, const QSize& contentsSize) const { QStyleOptionButton opt; opt.state = convertToQStyleState(state); return style()->sizeFromContents(QStyle::CT_PushButton, &opt, contentsSize); } void QStyleFacadeImp::paintButton(QPainter* painter, QStyleFacade::ButtonType type, const QStyleFacadeOption &proxyOption) { QWidget* widget = qobject_cast<QWidget*>(widgetForPainter(painter)); MappedStyleOption<QStyleOptionButton> option(widget, proxyOption); if (type == PushButton) style()->drawControl(QStyle::CE_PushButton, &option, painter, widget); else if (type == RadioButton) style()->drawControl(QStyle::CE_RadioButton, &option, painter, widget); else if (type == CheckBox) style()->drawControl(QStyle::CE_CheckBox, &option, painter, widget); } void QStyleFacadeImp::paintTextField(QPainter *painter, const QStyleFacadeOption &proxyOption) { QWidget* widget = qobject_cast<QWidget*>(widgetForPainter(painter)); MappedStyleOption<QStyleOptionFrameV2> panel(widget, proxyOption); panel.lineWidth = findFrameLineWidth(); panel.features = QStyleOptionFrameV2::None; style()->drawPrimitive(QStyle::PE_PanelLineEdit, &panel, painter, widget); } void QStyleFacadeImp::paintComboBox(QPainter *painter, const QStyleFacadeOption &proxyOption) { QWidget* widget = qobject_cast<QWidget*>(widgetForPainter(painter)); MappedStyleOption<QStyleOptionComboBox> opt(widget, proxyOption); QRect rect = opt.rect; #if defined(Q_OS_MAC) && !defined(QT_NO_STYLE_MAC) // QMacStyle makes the combo boxes a little bit smaller to leave space for the focus rect. // Because of it, the combo button is drawn at a point to the left of where it was expect to be and may end up // overlapped with the text. This will force QMacStyle to draw the combo box with the expected width. if (m_style->inherits("QMacStyle")) { rect.setX(rect.x() - 3); rect.setWidth(rect.width() + 2 * 3); } #endif painter->translate(rect.topLeft()); opt.rect.moveTo(QPoint(0, 0)); opt.rect.setSize(rect.size()); style()->drawComplexControl(QStyle::CC_ComboBox, &opt, painter, widget); painter->translate(-rect.topLeft()); } void QStyleFacadeImp::paintComboBoxArrow(QPainter *painter, const QStyleFacadeOption &proxyOption) { QWidget* widget = qobject_cast<QWidget*>(widgetForPainter(painter)); MappedStyleOption<QStyleOptionComboBox> opt(widget, proxyOption); opt.subControls = QStyle::SC_ComboBoxArrow; // for drawing the combo box arrow, rely only on the fallback style m_fallbackStyle->drawComplexControl(QStyle::CC_ComboBox, &opt, painter, widget); } void QStyleFacadeImp::paintSliderTrack(QPainter* painter, const QStyleFacadeOption& proxyOption) { QWidget* widget = qobject_cast<QWidget*>(widgetForPainter(painter)); MappedStyleOption<QStyleOptionSlider> option(widget, proxyOption); option.subControls = QStyle::SC_SliderGroove; option.upsideDown = proxyOption.slider.upsideDown; option.minimum = proxyOption.slider.minimum; option.maximum = proxyOption.slider.maximum; option.sliderPosition = proxyOption.slider.position; option.orientation = proxyOption.slider.orientation; style()->drawComplexControl(QStyle::CC_Slider, &option, painter, widget); if (option.state & QStyle::State_HasFocus) { QStyleOptionFocusRect focusOption; focusOption.rect = option.rect; style()->drawPrimitive(QStyle::PE_FrameFocusRect, &focusOption, painter, widget); } } void QStyleFacadeImp::paintSliderThumb(QPainter* painter, const QStyleFacadeOption& proxyOption) { QWidget* widget = qobject_cast<QWidget*>(widgetForPainter(painter)); MappedStyleOption<QStyleOptionSlider> option(widget, proxyOption); option.subControls = QStyle::SC_SliderHandle; if (option.state & QStyle::State_Sunken) option.activeSubControls = QStyle::SC_SliderHandle; style()->drawComplexControl(QStyle::CC_Slider, &option, painter, widget); } void QStyleFacadeImp::paintInnerSpinButton(QPainter* painter, const QStyleFacadeOption& proxyOption, bool spinBoxUp) { QWidget* widget = qobject_cast<QWidget*>(widgetForPainter(painter)); MappedStyleOption<QStyleOptionSpinBox> option(widget, proxyOption); option.subControls = QStyle::SC_SpinBoxUp | QStyle::SC_SpinBoxDown; if (!(option.state & QStyle::State_ReadOnly)) { if (option.state & QStyle::State_Enabled) option.stepEnabled = QAbstractSpinBox::StepUpEnabled | QAbstractSpinBox::StepDownEnabled; if (option.state & QStyle::State_Sunken) { if (spinBoxUp) option.activeSubControls = QStyle::SC_SpinBoxUp; else option.activeSubControls = QStyle::SC_SpinBoxDown; } } QRect buttonRect = option.rect; // Default to moving the buttons a little bit within the editor frame. int inflateX = -2; int inflateY = -2; #if defined(Q_OS_MAC) && !defined(QT_NO_STYLE_MAC) // QMacStyle will position the aqua buttons flush to the right. // This will move them more within the control for better style, a la // Chromium look & feel. if (m_style->inherits("QMacStyle")) { inflateX = -4; // Render mini aqua spin buttons for QMacStyle to fit nicely into // the editor area, like Chromium. option.state |= QStyle::State_Mini; } #endif buttonRect.setX(buttonRect.x() - inflateX); buttonRect.setWidth(buttonRect.width() + 2 * inflateX); buttonRect.setY(buttonRect.y() - inflateY); buttonRect.setHeight(buttonRect.height() + 2 * inflateY); option.rect = buttonRect; style()->drawComplexControl(QStyle::CC_SpinBox, &option, painter, widget); } void QStyleFacadeImp::paintProgressBar(QPainter* painter, const QStyleFacadeOption& proxyOption, double progress, double animationProgress) { QWidget* widget = qobject_cast<QWidget*>(widgetForPainter(painter)); MappedStyleOption<QStyleOptionProgressBarV2> option(widget, proxyOption); option.maximum = std::numeric_limits<int>::max(); option.minimum = 0; option.progress = progress * std::numeric_limits<int>::max(); const QPoint topLeft = option.rect.topLeft(); painter->translate(topLeft); option.rect.moveTo(QPoint(0, 0)); if (progress < 0) { // FIXME: Until http://bugreports.qt.nokia.com/browse/QTBUG-9171 is fixed, // we simulate one square animating across the progress bar. style()->drawControl(QStyle::CE_ProgressBarGroove, &option, painter, widget); int chunkWidth = style()->pixelMetric(QStyle::PM_ProgressBarChunkWidth, &option); QColor color = (option.palette.highlight() == option.palette.background()) ? option.palette.color(QPalette::Active, QPalette::Highlight) : option.palette.color(QPalette::Highlight); if (option.direction == Qt::RightToLeft) painter->fillRect(option.rect.right() - chunkWidth - animationProgress * option.rect.width(), 0, chunkWidth, option.rect.height(), color); else painter->fillRect(animationProgress * option.rect.width(), 0, chunkWidth, option.rect.height(), color); } else style()->drawControl(QStyle::CE_ProgressBar, &option, painter, widget); painter->translate(-topLeft); } int QStyleFacadeImp::scrollBarExtent(bool mini) { QStyleOptionSlider o; o.orientation = Qt::Vertical; o.state &= ~QStyle::State_Horizontal; if (mini) o.state |= QStyle::State_Mini; return style()->pixelMetric(QStyle::PM_ScrollBarExtent, &o, 0); } bool QStyleFacadeImp::scrollBarMiddleClickAbsolutePositionStyleHint() const { return style()->styleHint(QStyle::SH_ScrollBar_MiddleClickAbsolutePosition); } void QStyleFacadeImp::paintScrollCorner(QPainter* painter, const QRect& rect) { QWidget* widget = qobject_cast<QWidget*>(widgetForPainter(painter)); QStyleOption option; option.rect = rect; style()->drawPrimitive(QStyle::PE_PanelScrollAreaCorner, &option, painter, widget); } QStyleFacade::SubControl QStyleFacadeImp::hitTestScrollBar(const QStyleFacadeOption &proxyOption, const QPoint &pos) { MappedStyleOption<QStyleOptionSlider> opt(0, proxyOption); QStyle::SubControl sc = style()->hitTestComplexControl(QStyle::CC_ScrollBar, &opt, pos, 0); return convertToQStyleFacadeSubControl(sc); } QRect QStyleFacadeImp::scrollBarSubControlRect(const QStyleFacadeOption &proxyOption, QStyleFacade::SubControl subControl) { MappedStyleOption<QStyleOptionSlider> opt(0, proxyOption); return style()->subControlRect(QStyle::CC_ScrollBar, &opt, convertToQStyleSubControl(subControl), 0); } void QStyleFacadeImp::paintScrollBar(QPainter *painter, const QStyleFacadeOption &proxyOption) { QWidget* widget = qobject_cast<QWidget*>(widgetForPainter(painter)); MappedStyleOption<QStyleOptionSlider> opt(widget, proxyOption); if (m_style->inherits("QMacStyle")) { // FIXME: Disable transient scrollbar animations on OSX to avoid hiding the whole webview with the scrollbar fade out animation. opt.styleObject = 0; } painter->fillRect(opt.rect, opt.palette.background()); const QPoint topLeft = opt.rect.topLeft(); painter->translate(topLeft); opt.rect.moveTo(QPoint(0, 0)); style()->drawComplexControl(QStyle::CC_ScrollBar, &opt, painter, widget); opt.rect.moveTo(topLeft); } QObject* QStyleFacadeImp::widgetForPainter(QPainter* painter) { QPaintDevice* dev = 0; if (painter) dev = painter->device(); if (dev && dev->devType() == QInternal::Widget) return static_cast<QWidget*>(dev); return 0; } QStyle* QStyleFacadeImp::style() const { if (m_style) return m_style; if (m_page) { if (QWebPageClient* pageClient = m_page->client.data()) m_style = pageClient->style(); } if (!m_style) m_style = QApplication::style(); return m_style; } }
[ "annulen@yandex.ru" ]
annulen@yandex.ru
6ca28ae3e24051be6c93f5d55c00e719ddcd9261
3ba3b29e73b240a346202332b6ffac7d55cd5cff
/Angine/Animator.h
1550e0ba51e6950f6f0221b4ef7c42fde4480d3e
[]
no_license
4rgc/NinjaPlatformer
bc630dfbd120debc7c43327d851718b0af35ffa9
c1f5a70bd2196331e551caa93fd66f54e6a0971f
refs/heads/master
2020-12-31T07:10:47.191018
2018-11-04T22:07:40
2018-11-04T22:07:40
86,575,901
0
0
null
null
null
null
UTF-8
C++
false
false
200
h
#pragma once //Not implemented and is not used namespace Angine { class Animator { SpriteBatch p_spriteBatch; GLTexture p_texture; int p_numTiles; public: Animator(); ~Animator(); }; }
[ "justkrut514@outlook.com" ]
justkrut514@outlook.com
e88774b96606527ca26034473d6f8dcef1e87d29
361ed5d2675cefcc0006243d9278bbf841e384ef
/mcrouter/routes/ShardSelectionRouteFactory.h
c5012e48d42946ab30a582ff2a7d213b725ddde9
[ "MIT" ]
permissive
miezoy/mcrouter
8919de002e02c05b1fedb6929aa27dc71dd9739f
47445ecdd0a7eee1f54957594cfadbb32c618e2d
refs/heads/master
2020-09-15T06:39:10.495858
2019-11-20T23:58:09
2019-11-20T23:59:24
223,369,362
0
1
MIT
2019-11-22T09:29:54
2019-11-22T09:29:53
null
UTF-8
C++
false
false
9,993
h
/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <algorithm> #include <cassert> #include <unordered_map> #include <vector> #include <folly/Range.h> #include <folly/dynamic.h> #include <mcrouter/config.h> #include <mcrouter/lib/config/RouteHandleFactory.h> #include <mcrouter/lib/fbi/cpp/util.h> #include <mcrouter/lib/routes/DefaultShadowSelectorPolicy.h> namespace facebook { namespace memcache { namespace mcrouter { // Alias for eager shard selector factory. template <class RouterInfo> using RouteHandleWithChildrenFactoryFn = std::function<typename RouterInfo::RouteHandlePtr( RouteHandleFactory<typename RouterInfo::RouteHandleIf>& factory, const folly::dynamic& json, std::vector<typename RouterInfo::RouteHandlePtr> children)>; template <class RouterInfo> using ChildrenFactoryMap = std:: unordered_map<std::string, RouteHandleWithChildrenFactoryFn<RouterInfo>>; /** * Create a route handle for sharding requests to servers. * * Sample json format: * { * "pool": { * "type": "pool", * "name": "A", * "servers": [ * "server1:12345", * "server2:12345" * ], * "shards": [ * [1, 3, 6], * [2, 4, 5] * ] * }, * "out_of_range": "ErrorRoute" * } * * Alternatively, "shards" can be an array of strings of comma-separated * shard ids. For example: * { * "pool": { * "type": "pool", * "name": "A", * "servers": [ * "server1:12345", * "server2:12345" * ], * "shards": [ * "1,3,6", * "2,4,5" * ] * }, * } * * * NOTE: * - "shards" and "servers" must have the same number of entries, in exactly * the same order (e.g. shards[5] shows the shards processed by servers[5]). * * @tparam ShardSelector Class responsible for selecting the shard responsible * for handling the request. The ShardSelector constructor * accepts a MapType shardsMap that maps * shardId -> destinationId. * @tparam MapType C++ type container that maps shardId -> destinationId. * * @param factory RouteHandleFactory to create destinations. * @param json JSON object with RouteHandle representation. */ template < class RouterInfo, class ShardSelector, class MapType = std::vector<uint16_t>> typename RouterInfo::RouteHandlePtr createShardSelectionRoute( RouteHandleFactory<typename RouterInfo::RouteHandleIf>& factory, const folly::dynamic& json); /** * Creates a route handle that sends requests to destinations based on the * shards map. * If there are multiple servers serving the same shard, these destinations * will be grouped together under the route handle specified by the * "children_type" property. * * Sample json format: * { * "children_type": "RouteHandle", * "children_settings" : { .. }, * "pools" : [ * { * "pool": { * "type": "pool", * "name": "A", * "servers": [ * "server1:12345", * "server2:12345" * ], * "shards": [ * [1, 3, 6], * [2, 4, 5] * ] * }, * } * ], * "out_of_range": "ErrorRoute" * } * * DETAILS: * - "shards" can also be an array of strings of comma-separated shard ids, * as stated in the documentation of createShardSelectionRoute() above. * * - "children_type" the name of route handle that will group the servers that * are responsible for a given shard. Can be: LoadBalancerRoute, * LatestRoute, CustomJsonmRoute, or one of the names provided in the * childrenFactoryMap. If CustomJsonmRoute is used, "children_settings" * will have access to "$children_list$", which expands to the list of * servers that serve a given shard. Check EagerShardSelectionRouteTest for * more details. * * - "children_settings" is the properties of the route handle specified * in the "children_type" option. * * - "pools" is an array of pools (or tiers). * - "shards" and "servers" must have the same number of entries, in exactly * the same order (e.g. shards[5] has the shards processed by servers[5]). * * @tparam ShardSelector Class responsible for selecting the shard responsible * for handling the request. The ShardSelector constructor * takes a shardsMap (unordered_map) that maps * shardId -> destinationIndex. * @tparam MapType C++ type container that maps shardId -> destinationIdx * * @param factory The route handle factory. * @param json JSON object with the config of this route handle. * @param childrenFactoryMap Map with factory functions of custom route handles * that are supported to group the destinations that * handle a given shard. * * @return Pointer to the EagerShardSelectionRoute. */ template < class RouterInfo, class ShardSelector, class MapType = std::unordered_map<uint32_t, uint32_t>> typename RouterInfo::RouteHandlePtr createEagerShardSelectionRoute( RouteHandleFactory<typename RouterInfo::RouteHandleIf>& factory, const folly::dynamic& json, const ChildrenFactoryMap<RouterInfo>& childrenFactoryMap = {}); /** * Creates a route handle that sends requests to destinations based on the * shards map and shadows requests based on a shadow shards map. * If there are multiple servers serving the same shard, these destinations * will be grouped together under the route handle specified by the * "children_type" property. Similarly hosts under the same "shadow_shard" * will be grouped under the same route handle specified by the * "shadow_children_type" property. * * Sample json format: * { * "children_type": "RouteHandle", * "children_settings" : { .. }, * "pools" : [ * { * "pool": { * "type": "pool", * "name": "A", * "servers": [ * "server1:12345", * "server2:12345" * ], * "shards": [ * [1, 3, 6], * [2, 4, 5], * "shadow_shards": [ * [7, 8, 9], * [10, 11, 12] * ] * }, * } * ], * "out_of_range": "ErrorRoute", * "shadow_children_type" : "RouteHandle", * "shadow_children_settings" : { .. } * } * * DETAILS: * - "shards" and "shadow_shards" can also be an array of strings of * comma-separated shard ids, as stated in the documentation of * createShardSelectionRoute() above. * * - "children_type" the name of route handle that will group the servers that * are responsible for a given shard. Can be: LoadBalancerRoute, * LatestRoute, CustomJsonmRoute, or one of the names provided in the * childrenFactoryMap. If CustomJsonmRoute is used, "children_settings" * will have access to "$children_list$", which expands to the list of * servers that serve a given shard. Check EagerShardSelectionRouteTest for * more details. * * - "shadow_children_tye" is the name of the route handle that will group the * server responsible for a given "shadow_shard". It currently supports * LoadBalancerRoute, LatestRoute and one of the names provided in the * childrenFactoryMap. * * - "children_settings" is the properties of the route handle specified * in the "children_type" option. * * - "shadow_children_settings" is the properties of the route handle specified * in the "shadow_children_type" option. * * - "pools" is an array of pools (or tiers). * - "shards" and "servers" must have the same number of entries, in exactly * the same order (e.g. shards[5] has the shards processed by servers[5]). * * @tparam ShardSelector Class responsible for selecting the shard responsible * for handling the request. The ShardSelector constructor * takes a shardsMap (unordered_map) that maps * shardId -> destinationIndex. * @tparam MapType C++ type container that maps shardId -> destinationIdx * * @param factory The route handle factory. * @param json JSON object with the config of this route handle. * @param childrenFactoryMap Map with factory functions of custom route handles * that are supported to group the destinations that * handle a given shard. * @param shadowchildrenFactoryMap Map with factory functions of custom route * handles that are supported to group the destinations that handle a given shadow shard. * @param shadowSelectorPolicy Optional policy implementing * makePostShadowReplyFn() * @param seed Seed to randbom number generator used to determine * if to shadow. * * @return Pointer to the EagerShardSelectionRoute. */ template < class RouterInfo, class ShardSelector, class MapType = std::unordered_map<uint32_t, uint32_t>, class ShadowSelectorPolicy = DefaultShadowSelectorPolicy> typename RouterInfo::RouteHandlePtr createEagerShardSelectionShadowRoute( RouteHandleFactory<typename RouterInfo::RouteHandleIf>& factory, const folly::dynamic& json, const ChildrenFactoryMap<RouterInfo>& childrenFactoryMap = {}, const ChildrenFactoryMap<RouterInfo>& shadowChildrenFactoryMap = {}, const folly::Optional<ShadowSelectorPolicy>& shadowSelectorPolicy = folly::none, const uint32_t seed = nowUs()); } // namespace mcrouter } // namespace memcache } // namespace facebook #include "mcrouter/routes/ShardSelectionRouteFactory-inl.h"
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
4a4650199ebaf1283043347ca07615c30c9a266f
6e7d89d6982b77e0b3bfd3b08daf9b5937cc16c1
/Parking_Meter_GE_Coordinator_3/Parking_Meter_GE_Coordinator_3.ino
d412d10d6922143bd34b9be602d1811c592024fe
[]
no_license
Blitz72/Arduino-Projects
77bab39fc5653174c3490512a9224c4862fa46b3
1e00e669c4f62137b6fa7b7a44af4acabf9d749a
refs/heads/master
2020-05-31T00:30:19.441695
2019-06-03T15:46:00
2019-06-03T15:46:00
190,035,959
0
0
null
null
null
null
UTF-8
C++
false
false
11,259
ino
/****************************************************************** This is an example for the Adafruit RA8875 Driver board for TFT displays ---------------> http://www.adafruit.com/products/1590 The RA8875 is a TFT driver for up to 800x480 dotclock'd displays It is tested to work with displays in the Adafruit shop. Other displays may need timing adjustments and are not guanteed to work. Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit! Written by Limor Fried/Ladyada for Adafruit Industries. BSD license, check license.txt for more information. All text above must be included in any redistribution. ******************************************************************/ #include <SPI.h> #include "Adafruit_GFX.h" #include "Adafruit_RA8875.h" #include <EEPROM.h> //using namespace std; // Library only supports hardware SPI at this time // Connect SCLK to UNO Digital #13 (Hardware SPI clock) // Connect MISO to UNO Digital #12 (Hardware SPI MISO) // Connect MOSI to UNO Digital #11 (Hardware SPI MOSI) // Connect SCLK to MEGA Digital #52 (Hardware SPI clock) // Connect MISO to MEGA Digital #50 (Hardware SPI MISO) // Connect MOSI to MEGA Digital #51 (Hardware SPI MOSI) #define RA8875_INT 21 // MEGA 2560 R3 interrupt pins 2, 3, 18, 19, 20, 21; UNO R3 = 2, 3 #define RA8875_CS 53 // MEGA 2560 R3 = 53; UNO R3 = 10 #define RA8875_RESET 49 // MEGA 2560 R3 reset used is 49 which next to hardware SPI; UNO R3 reset was 9 next to hardware SPI #define eePromAddress 0 #define red RA8875_RED //#define green RA8875_GREEN #define green 0x07a0 // just a bit darker than RA8875_GREEN #define blue RA8875_BLUE #define yellow RA8875_YELLOW #define white RA8875_WHITE #define black RA8875_BLACK #define gray 0xe71c Adafruit_RA8875 tft = Adafruit_RA8875(RA8875_CS, RA8875_RESET); uint16_t tx, ty; tsPoint_t _tsLCDPoints[3]; tsPoint_t _tsTSPoints[3]; tsMatrix_t _tsMatrix; struct CalibrationObject { int32_t An; int32_t Bn; int32_t Cn; int32_t Dn; int32_t En; int32_t Fn; int32_t divider; boolean calibrated; }; class ParkingMeter { private: byte address[4]; char mins[2]; char secs[2]; char _status; char latitude[5]; char longitude[5]; byte id; public: ParkingMeter() { Serial.println("Created default ParkingMeter!"); } ParkingMeter(byte _id) { setId(_id); } void setId(byte _id) { id = _id; } byte getId() { return id; } void setAddress(byte a[]) { for (int i = 0; i < 4; i++) { address[i] = a[i]; } } void setMins(char m[]) { mins[0] = m[0]; mins[1] = m[1]; } void setSecs(char s[]) { secs[0] = s[0]; secs[1] = s[1]; } void setStatus(char s) { _status = s; } char getStatus() { return _status; } void setLat(char l[]) { for (int i = 0; i < 5; i++) { latitude[i] = l[i]; } } void setLong(char l[]) { for (int i = 0; i < 5; i++) { longitude[i] = l[i]; } } int getTimer() { int minutes = (mins[0] - 0x30) * 10 + mins[1] - 0x30; int seconds = (secs[0] - 0x30) * 10 + secs[1] - 0x30; return minutes * 100 + seconds; } void printInfo() { }; void updateInfo() { } }; //ParkingMeter meterArray[10] = {p}; CalibrationObject cal; // ================================================================= SETUP ============================================================================ void setup() { Serial.begin(9600); Serial1.begin(9600); // Xbee serial port Serial.println(F("RA8875 start")); /* Initialise the display using 'RA8875_480x272' or 'RA8875_800x480' */ if (!tft.begin(RA8875_800x480)) { Serial.println(F("RA8875 Not Found!")); // while (1); // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! PUT BACK IN WHEN WORHING !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! } Serial.println(F("Found RA8875")); tft.displayOn(true); tft.GPIOX(true); // Enable TFT - display enable tied to GPIOX tft.PWM1config(true, RA8875_PWM_CLK_DIV1024); // PWM output for backlight tft.PWM1out(255); pinMode(RA8875_INT, INPUT); digitalWrite(RA8875_INT, HIGH); tft.touchEnable(true); EEPROM.get(eePromAddress, cal); // Serial.println(cal.An); // Serial.println(cal.Bn); // Serial.println(cal.Cn); // Serial.println(cal.Dn); // Serial.println(cal.En); // Serial.println(cal.Fn); // Serial.println(cal.divider); // Serial.println(cal.calibrated); for (int i = 0; i < 11; i++) { tft.drawRect(0, i*40, tft.width() - 1, 40, RA8875_WHITE); } // tft.drawRect(0, 0, tft.width() - 1, 40, RA8875_WHITE); tft.drawRect(0, 440, tft.width() - 1, 39, RA8875_WHITE); tft.fillRect(1, 1, tft.width() - 3, 38, gray); tft.fillRect(1, 441, tft.width() - 3, 37, gray); tft.textMode(); tft.textEnlarge(1); tft.textSetCursor(20, 3); const char string[] = "LOCATION SERIAL # TIME LEFT"; tft.textTransparent(RA8875_BLACK); tft.textWrite(string); const byte MAX_SIZE = 10; ParkingMeter meterArray[MAX_SIZE]; for (int i = 0; i < MAX_SIZE; i++) { meterArray[i].setId(i); Serial.println(meterArray[i].getId()); } } // ================================================================== LOOP ============================================================================ void loop() { delay(500); } // end of loop() // ================================================================ FUNCTIONS ========================================================================= void serialEvent1() { noInterrupts(); byte address[4] = {0}; char minArray[2] = {0}; char secArray[2] = {0}; char _status = 'R'; char latArray[5] = {0}; char lonArray[5] = {0}; byte inByte; while (Serial1.available() > 0) { // should be a receive packet frame 0x90 // Serial.print(Serial1.read(), HEX); // Serial.print(", "); inByte = Serial1.read(); if (inByte == 0x7e) { for (int i = 0; i < 2; i++) { Serial1.read(); // discard length bytes } inByte = Serial1.read(); if (inByte == 0x90) { for (int i = 0; i < 4; i++) { Serial1.read(); // discard bytes 4 - 7, first half of 64-bit address } for (int i = 0; i < 4; i++) { address[i] = Serial1.read(); // read offset 8 - 11, second half of 64-bit address } for (int i = 0; i < 3; i++) { Serial1.read(); // discard offset 12 - 14 } minArray[0] = Serial1.read(); // time left from parking meter, offset 15 minArray[1] = Serial1.read(); secArray[0] = Serial1.read(); secArray[1] = Serial1.read(); _status = Serial1.read(); for (int i = 0; i < 5; i++) { latArray[i] = Serial1.read(); } for (int i = 0; i < 5; i++) { lonArray[i] = Serial1.read(); } } } } interrupts(); printInfo(address, minArray, secArray, _status, latArray, lonArray); if (minArray[0] > 0x20 && minArray[0] < 0x7f && latArray[0] > 0x20 and latArray[0] < 0x7f && lonArray[0] > 0x20 && lonArray[0] < 0x7f && lonArray[5] > 0x20 && lonArray[5] < 0x7f ) { updateInfo(address, minArray, secArray, _status, latArray, lonArray); } } void printInfo(byte address[], char minutes[], char seconds[], char _status, char latitude[], char longitude[]) { Serial.print(F("Address: ")); for (int i = 0; i < 4; i++) { Serial.print(address[i], HEX); } Serial.println(); Serial.print(F("Time left: ")); Serial.print(minutes[0]); Serial.print(minutes[1]); Serial.print(F(":")); Serial.print(seconds[0]); Serial.println(seconds[1]); Serial.print(F("Status: ")); Serial.println(_status); Serial.print(F("Position: 41.")); for (int i = 0; i < 5; i++) { Serial.print(latitude[i]); } Serial.print(", -81."); for (int i = 0; i < 5; i++) { Serial.print(longitude[i]); } Serial.println(); Serial.println(); } void updateInfo(byte address[], char minutes[], char seconds[], char _status, char latitude[], char longitude[]) { uint16_t bgColor; uint16_t textColor; int mins = (minutes[0] - 0x30) * 10; mins += minutes[1] - 0x30; int secs = (seconds[0] - 0x30) * 10; secs += seconds[1] - 0x30; int timer = mins * 100 + secs; if (_status == 'R') { bgColor = blue; textColor = white; } else if (_status == 'A') { if (timer > 500) { bgColor = green; textColor = black; } if (timer > 0 && timer <= 500) { bgColor = yellow; textColor = black; } if (timer <= 0) { bgColor = red; textColor = white; } } else if (_status == 'X') { bgColor = red; textColor = white; } uint16_t _latitude = (latitude[0] - 0x30) * 10000; // convert latitude char array into uinsigned integer _latitude += (latitude[1] - 0x30) * 1000; _latitude += (latitude[2] - 0x30) * 100; _latitude += (latitude[3] - 0x30) * 10; _latitude += (latitude[4] - 0x30); uint16_t _longitude = (longitude[0] - 0x30) * 10000; // convert longitude char array into uinsigned integer _longitude += (longitude[1] - 0x30) * 1000; _longitude += (longitude[2] - 0x30) * 100; _longitude += (longitude[3] - 0x30) * 10; _longitude += (longitude[4] - 0x30); tft.drawRect(0, 40, tft.width() - 1, 40, white); tft.fillRect(1, 41, tft.width() - 3, 38, bgColor); if (_latitude >= 54036 && _latitude <= 54056 && _longitude >= 56060 && _longitude <= 56141) { tft.textSetCursor(20, 43); tft.textTransparent(textColor); tft.textWrite("SECURITY"); } tft.textSetCursor(290, 43); tft.textTransparent(textColor); // convert hex values of the address to ascii for easy prining in the tft.textWrite() function byte add[8] = {0}; ((address[0] >> 4) < 10) ? add[0] = (address[0] >> 4) + 0x30 : add[0] = (address[0] >> 4) + 0x37; ((address[0] & 0x0f) < 10) ? add[1] = (address[0] & 0x0f) + 0x30 : add[1] = (address[0] & 0x0f) + 0x37; ((address[1] >> 4) < 10) ? add[2] = (address[1] >> 4) + 0x30 : add[2] = (address[1] >> 4) + 0x37; ((address[1] & 0x0f) < 10) ? add[3] = (address[1] & 0x0f) + 0x30 : add[3] = (address[1] & 0x0f) + 0x37; ((address[2] >> 4) < 10) ? add[4] = (address[2] >> 4) + 0x30 : add[4] = (address[2] >> 4) + 0x37; ((address[2] & 0x0f) < 10) ? add[5] = (address[2] & 0x0f) + 0x30 : add[5] = (address[2] & 0x0f) + 0x37; ((address[3] >> 4) < 10) ? add[6] = (address[3] >> 4) + 0x30 : add[6] = (address[3] >> 4) + 0x37; ((address[3] & 0x0f) < 10) ? add[7] = (address[3] & 0x0f) + 0x30 : add[7] = (address[3] & 0x0f) + 0x37; tft.textWrite(add, 8); tft.textSetCursor(520, 43); tft.fillRect(520, 43, 100, 35, bgColor); tft.textTransparent(textColor); if (_status == 'A' || _status == 'X') { tft.textWrite(minutes, 2); tft.textWrite(":"); tft.textWrite(seconds, 2); } else if (_status == 'R') { tft.textWrite("INACTIVE"); } }
[ "bauer.david@att.net" ]
bauer.david@att.net
76571858f06d83c35ef775982350e2b2650fc6fa
7d84cd94d836f8f37e850023f0721e81f585208d
/AI Assignment 2/Base/Source/Waiter/State_Cashier.h
181c8fd5a60c83cbab1cb298f26cca7be255411c
[]
no_license
thjsamuel/AI-assignment-2
bda65a9c8acf2ea012d0ea66284221ca3cc646b4
fb05b38b5de81f36afb83216e251d10577137f03
refs/heads/master
2021-03-27T14:10:41.536574
2017-02-07T12:10:46
2017-02-07T12:10:46
78,397,388
0
0
null
null
null
null
UTF-8
C++
false
false
493
h
#ifndef STATE_CASHIER_H #define STATE_CASHIER_H #include "../State.h" class CWaiter; struct Telegram; class CState_Cashier : public CState<CWaiter> { public: static CState_Cashier* GetInstance(); virtual void Enter(CWaiter* waiter, double dt); virtual void Execute(CWaiter* waiter, double dt); virtual void Exit(CWaiter* waiter, double dt); virtual bool OnMessage(CWaiter* waiter, const Telegram& telegram); private: CState_Cashier(); }; #endif // STATE_Cashier_H
[ "153942B@mymail.nyp.edu.sg" ]
153942B@mymail.nyp.edu.sg
85f75d3d4d9360df5fcb51c6214d56ce3b6de303
84fd0927233bfe7b0f24bc97335ce4284ee84e59
/include/caffe/layers/attention_pooling_layer.hpp
e4882dea0c92fe8599b8ba6d3b49a772d96cfe35
[]
no_license
jialinwu17/caffe
a5e708df86de7bf2362c15628af8596941c7dfed
b6e6fd6a8a7c3d0612cdef14a28b45322dad3512
refs/heads/master
2021-01-21T22:35:28.795149
2017-09-02T01:51:28
2017-09-02T01:51:28
102,165,194
4
0
null
null
null
null
UTF-8
C++
false
false
2,799
hpp
#ifndef CAFFE_SOFTROI_POOLING_LAYER_HPP_ #define CAFFE_SOFTROI_POOLING_LAYER_HPP_ #include <vector> #include "caffe/blob.hpp" #include "caffe/common.hpp" #include "caffe/layer.hpp" #include "caffe/proto/caffe.pb.h" namespace caffe { /** * @brief Perform position-sensitive max pooling on regions of interest specified by input, takes * as input N position-sensitive score maps and a list of R regions of interest. * ROIPoolingLayer takes 2 inputs and produces 1 output. bottom[0] is * [N x (C x K^2) x H x W] position-sensitive score maps on which pooling is performed. bottom[1] is * [R x 5] containing a list R ROI tuples with batch index and coordinates of * regions of interest. Each row in bottom[1] is a ROI tuple in format * [batch_index x1 y1 x2 y2], where batch_index corresponds to the index of * instance in the first input and x1 y1 x2 y2 are 0-indexed coordinates * of ROI rectangle (including its boundaries). The output top[0] is [R x C x K x K] score maps pooled * within the ROI tuples. * @param param provides PSROIPoolingParameter psroi_pooling_param, * with PSROIPoolingLayer options: * - output_dim. The pooled output channel number. * - group_size. The number of groups to encode position-sensitive score maps * - spatial_scale. Multiplicative spatial scale factor to translate ROI * coordinates from their input scale to the scale used when pooling. * R-FCN * Written by Yi Li */ template <typename Dtype> class AttentionPoolingLayer : public Layer<Dtype> { public: explicit AttentionPoolingLayer(const LayerParameter& param) : Layer<Dtype>(param) {} virtual void LayerSetUp(const vector<Blob<Dtype>*>& bottom, const vector<Blob<Dtype>*>& top); virtual void Reshape(const vector<Blob<Dtype>*>& bottom, const vector<Blob<Dtype>*>& top); virtual inline const char* type() const { return "AttentionPoolingLayer"; } virtual inline int MinBottomBlobs() const { return 2; } virtual inline int MaxBottomBlobs() const { return 2; } virtual inline int MinTopBlobs() const { return 1; } virtual inline int MaxTopBlobs() const { return 1; } protected: virtual void Forward_cpu(const vector<Blob<Dtype>*>& bottom, const vector<Blob<Dtype>*>& top); virtual void Forward_gpu(const vector<Blob<Dtype>*>& bottom, const vector<Blob<Dtype>*>& top); virtual void Backward_cpu(const vector<Blob<Dtype>*>& top, const vector<bool>& propagate_down, const vector<Blob<Dtype>*>& bottom); virtual void Backward_gpu(const vector<Blob<Dtype>*>& top, const vector<bool>& propagate_down, const vector<Blob<Dtype>*>& bottom); Dtype spatial_scale_; int output_dim_; int K; int N_; int height_; int width_; }; } // namespace caffe #endif // CAFFE_PSROI_POOLING_LAYER_HPP_
[ "18701637167@163.com" ]
18701637167@163.com
e990603eef69d1c60d6461389b904da70545a3ac
ad27946aa93951e574a7a288a410c7b2ccd51fd4
/debug.cpp
48c744fc995d52b8dc9d5e256c3ddf8e969b6c05
[]
no_license
zpriddy/CSE310-Project2
6f2d8dc38b233bdc821b334c49029db3e3154f97
fb55fdf30c52eee4a9f8d6691451984fc3710ba8
refs/heads/master
2020-05-18T19:51:54.676344
2013-10-23T17:54:26
2013-10-23T17:54:26
13,641,886
1
1
null
null
null
null
UTF-8
C++
false
false
807
cpp
/******************************************************************************* * FILE NAME: degub.cpp * DATE: 2013-10-16 * AUTHOR: Zachary Priddy * me@zpriddy.com * zpriddy@asu.edu * * DESC: * * ******************************************************************************/ #include <cstdlib> #include <iostream> using namespace std; //Change this to 1 to display debug messages int DEBUG=0; void debug(string out) { if(DEBUG == 1) { cout << "DEBUG:\n"; cout << out << "\n"; } } void debug(int out) { if(DEBUG == 1) { cout << "DEBUG:\n"; cout << out << "\n"; } } void debug(string desc, int out) { if(DEBUG == 1) { cout << "DEBUG: " << desc << "\n"; cout << out << "\n"; } }
[ "me@zpriddy.com" ]
me@zpriddy.com
22aac0f2d0eb9c41b1d432e58c18ae502f3275f8
ea30d9545b1caabd1cf5b616d3b8ed8b25659524
/src/Minesweeper.cpp
8ecaf4fa538da2eaf017a49f24a682d4e965fd48
[ "MIT" ]
permissive
joao29a/Minesweeper
85dff3622bdb1fd0a6e480b6b2dfb76cf1fe5697
5362b176bc2d689edf3152a2e52ad4ea9d1ac61f
refs/heads/master
2021-01-16T21:15:20.505958
2016-06-04T08:05:48
2016-06-04T08:05:48
60,396,843
0
1
null
null
null
null
UTF-8
C++
false
false
10,356
cpp
#include "hdr/Minesweeper.hpp" Minesweeper::Minesweeper(){ done = false; displayVideo = NULL; images = NULL; textFont = NULL; flagsQuantity = 0; resetParams(); } void Minesweeper::resetParams(){ visibilityQuantity = 0; gameOver = false; initTime = false; startTime = 0; cheatActived = false; srand(time(NULL)); } void Minesweeper::resetGame(){ resetParams(); flagsQuantity = BOMB_TOTAL; mineTable.clear(); minesCoord.clear(); digitsCoord.clear(); vector<square> rows(SIZE_COL); mineTable.resize(SIZE_ROW,rows); TOP_SCORE = getTopScore(); insertMines(); insertDigits(); } string Minesweeper::getTopScore(){ ifstream file; file.open(getScoreFilename().c_str(), ifstream::in); if (!file.is_open()) return string("-"); string line, bestWord; int hour, min, sec, total, best = 24*60*60; while (getline(file, line)){ sscanf(line.c_str(), "%d:%d:%d", &hour, &min, &sec); total = (hour * 60 * 60) + (min * 60) + sec; if (total < best){ best = total; bestWord = string(line); } } return bestWord; } void Minesweeper::setGameParams(int row, int col, int bomb_total){ SIZE_ROW = (Uint32)row; SIZE_COL = (Uint32)col; BOMB_TOTAL = (Uint32)bomb_total; TOP_SCORE = getTopScore(); flagsQuantity = BOMB_TOTAL; vector<square> rows(SIZE_COL); mineTable.resize(SIZE_ROW,rows); } void Minesweeper::insertMines(){ Uint32 row,col; for(Uint32 i = 0; i < BOMB_TOTAL; i++){ randomizeCoords(&row,&col); while (mineTable[row][col].value == BOMB) randomizeCoords(&row,&col); mineTable[row][col].value = BOMB; minesCoord.push_back({row,col}); } } void Minesweeper::insertDigits(){ for(Uint32 i = 0; i < BOMB_TOTAL; i++) for(auto& coords: getAroundCoords(minesCoord[i][0], minesCoord[i][1])) incrementKeyDigit(coords[0],coords[1]); for(auto& itMap: digitsCoord){ Uint32 row = itMap.first / SIZE_COL; Uint32 col = itMap.first % SIZE_COL; mineTable[row][col].value = itMap.second; } } listVector Minesweeper::getAroundCoords(Uint32 row, Uint32 col){ listVector coords; int neighbours[][2] = {{0,1},{0,-1},{-1,0},{-1,1},{-1,-1},{1,0}, {1,1},{1,-1}}; for (Uint32 i = 0; i < 8; i++){ int newRow = row + neighbours[i][0]; int newCol = col + neighbours[i][1]; if (newRow >= 0 && newRow < (int)SIZE_ROW && newCol >= 0 && newCol < (int)SIZE_COL) coords.push_back({(Uint32)newRow,(Uint32)newCol}); } return coords; } void Minesweeper::incrementKeyDigit(Uint32 row, Uint32 col){ Uint32 coord = row * SIZE_COL + col; if (mineTable[row][col].value != BOMB){ if (digitsCoord.find(coord) == digitsCoord.end()){ digitsCoord[coord] = 1; } else digitsCoord[coord]++; } } bool Minesweeper::isPlayerWinner(){ if (visibilityQuantity == (SIZE_ROW * SIZE_COL - BOMB_TOTAL) && flagsQuantity == 0) return true; else return false; } void Minesweeper::quitGame(){ done = true; } void Minesweeper::keyPressedDown(SDLKey key){ if (key == SDLK_ESCAPE) quitGame(); else if (key == SDLK_r) resetGame(); else if (key == SDLK_s){ cheat << "s"; } else if (key == SDLK_h){ cheat << "h"; } else if (key == SDLK_o){ cheat << "o"; } else if (key == SDLK_w){ cheat << "w"; } } void Minesweeper::leftButtonDown(int x, int y){ if (!initTime){ startTime = time(NULL); initTime = true; } if (y - OFFSET < 0) return; Uint32 col = x / WIDTH; Uint32 row = (y - OFFSET) / HEIGHT; if (mineTable[row][col].flag == true || mineTable[row][col].visibility == true) return; mineTable[row][col].visibility = true; if (mineTable[row][col].value == BOMB){ gameOver = true; showMines(); } else if (mineTable[row][col].value != BLANK) visibilityQuantity++; else{ visibilityQuantity++; revealBlankPositions(row,col); } } void Minesweeper::revealBlankPositions(Uint32 row, Uint32 col){ for(auto& coords: getAroundCoords(row,col)){ if (mineTable[coords[0]][coords[1]].visibility == true || mineTable[coords[0]][coords[1]].flag == true) continue; mineTable[coords[0]][coords[1]].visibility = true; visibilityQuantity++; if (mineTable[coords[0]][coords[1]].value == BLANK) revealBlankPositions(coords[0],coords[1]); } } void Minesweeper::rightButtonDown(int x, int y){ if (gameOver) return; if (y - OFFSET < 0 || isPlayerWinner()) return; int col = x / WIDTH; int row = (y - OFFSET) / HEIGHT; if (mineTable[row][col].visibility == true && mineTable[row][col].value == BOMB){ mineTable[row][col].visibility = false; return; } if (mineTable[row][col].visibility == true) return; if (mineTable[row][col].flag == false && flagsQuantity > 0){ mineTable[row][col].flag = true; flagsQuantity--; } else if (mineTable[row][col].flag == true){ mineTable[row][col].flag = false; flagsQuantity++; } } void Minesweeper::randomizeCoords(Uint32* row, Uint32* col){ *row = rand() % SIZE_ROW; *col = rand() % SIZE_COL; } bool Minesweeper::initGame(){ if (SDL_Init(SDL_INIT_EVERYTHING) < 0 || TTF_Init() < 0){ cout << SDL_GetError() << endl; return false; } displayVideo = SDL_SetVideoMode(WIDTH * SIZE_COL, HEIGHT * SIZE_ROW + OFFSET, 32, SDL_HWSURFACE | SDL_DOUBLEBUF); images = Render::assignImage(IMAGE_PATH); textFont = TTF_OpenFont(FONT_PATH, 23); if (displayVideo == NULL || images == NULL || textFont == NULL){ cout << SDL_GetError() << endl; return false; } SDL_WM_SetCaption("Minesweeper", "Mines"); return true; } void Minesweeper::waitPlayer(SDL_Event* event){ while ((isPlayerWinner() || gameOver) && !done){ checkEvents(event); struct timespec timespec_st = {0,NANOSEC}; nanosleep(&timespec_st,NULL); } } void Minesweeper::checkCheat(){ if (((int) cheat.str().find("show")) != -1){ cheatActived = true; showMines(); cheat.str(string()); } } void Minesweeper::startGame(){ SDL_Event event; thread timer(&Minesweeper::renderTimerText,this); while (!done){ checkEvents(&event); mtx.lock(); renderGame(); mtx.unlock(); if (isPlayerWinner() || gameOver){ if (isPlayerWinner() && !cheatActived) saveScore(); waitPlayer(&event); } checkCheat(); struct timespec timespec_st = {0,NANOSEC}; nanosleep(&timespec_st,NULL); //used to not consume 100% of the cpu 0,1s } timer.join(); SDL_FreeSurface(displayVideo); SDL_FreeSurface(images); SDL_Quit(); TTF_Quit(); } void Minesweeper::saveScore(){ ofstream file; file.open(getScoreFilename().c_str(), ofstream::app); file << getTimer() << endl; file.close(); } string Minesweeper::getScoreFilename(){ stringstream o; o << "/scores/" << SIZE_ROW << "x" << SIZE_COL << "x" << BOMB_TOTAL; o << ".txt"; return string(PATH) + o.str(); } void Minesweeper::showMines(){ for(auto& coords: minesCoord) mineTable[coords[0]][coords[1]].visibility = true; } SDL_Surface* Minesweeper::getTextSurface(const char* message){ return TTF_RenderUTF8_Solid(textFont,message,textColor); } void Minesweeper::renderGame(){ for (Uint32 i = 0; i < SIZE_ROW; i++){ for (Uint32 j = 0; j < SIZE_COL; j++){ Uint32 x = j * WIDTH; Uint32 y = i * HEIGHT; if (mineTable[i][j].visibility == false){ if (mineTable[i][j].flag == false) Render::drawImage(displayVideo,images,x,y + OFFSET, 0,11*WIDTH,WIDTH,HEIGHT); else Render::drawImage(displayVideo,images,x,y + OFFSET ,0,10*WIDTH,WIDTH,HEIGHT); } else Render::drawImage(displayVideo,images,x,y + OFFSET,0, mineTable[i][j].value*WIDTH,WIDTH,HEIGHT); } } renderFlagText(); // render the best score renderText(getTextSurface(TOP_SCORE.c_str()),(WIDTH/2) * SIZE_COL - 2*(WIDTH/2)-WIDTH,0, WIDTH+5*WIDTH/2,HEIGHT); SDL_Flip(displayVideo); } void Minesweeper::renderText(SDL_Surface* surface, int x, int y, int w, int h){ Render::drawRect(displayVideo,x,y,w,h,0,0,0); Render::drawImage(displayVideo,surface,x,y,0,0,w,h); SDL_FreeSurface(surface); } void Minesweeper::renderFlagText(){ stringstream message; message << setw(3) << setfill('0') << flagsQuantity; renderText(getTextSurface(message.str().c_str()),0,0, WIDTH+WIDTH/2,HEIGHT); } const char* Minesweeper::getTimer(){ time_t timeNow = 0; int hours,minutes,seconds; hours = minutes = seconds = 0; if (initTime){ timeNow = time(NULL) - startTime; hours = timeNow / 3600; minutes = (timeNow / 60) % 60; seconds = timeNow % 60; } stringstream messageHour,messageMinutes,messageSeconds; messageHour << setw(2) << setfill('0') << hours; messageMinutes << setw(2) << setfill('0') << minutes; messageSeconds << setw(2) << setfill('0') << seconds; return (messageHour.str() + ":" + messageMinutes.str() + ":" + messageSeconds.str()).c_str(); } void Minesweeper::renderTimerText(){ while(!done){ if (!gameOver && !isPlayerWinner()){ mtx.lock(); renderText(getTextSurface(getTimer()),WIDTH * SIZE_COL - 4*(WIDTH/2)-WIDTH,0, WIDTH+5*WIDTH/2,HEIGHT); SDL_Flip(displayVideo); mtx.unlock(); } struct timespec timespec_st; if (initTime) { timespec_st = {1,0}; nanosleep(&timespec_st,NULL); } else { timespec_st = {0,NANOSEC}; nanosleep(&timespec_st,NULL); } } } void Minesweeper::printMines(){ for(Uint32 i = 0; i < SIZE_ROW; i++){ for(Uint32 j = 0; j < SIZE_COL; j++){ cout << mineTable[i][j].value << " "; } cout << endl; } } int main(int argc, char **argv){ Minesweeper obj; if (argc == 2 && atoi(argv[1]) == 1 || argc == 1) obj.setGameParams(9,9,10); else if (argc == 2 && atoi(argv[1]) == 2) obj.setGameParams(16,16,40); else if (argc == 2 && atoi(argv[1]) == 3) obj.setGameParams(16,30,99); else{ if (argc < 4) return 1; int row = atoi(argv[1]); int col = atoi(argv[2]); int mines = atoi(argv[3]); if (col >= 9 && mines <= 999 && mines <= row * col) obj.setGameParams(row,col,mines); else return 1; } if (!obj.initGame()) return 1; obj.insertMines(); obj.insertDigits(); obj.startGame(); return 0; }
[ "joao29a@gmail.com" ]
joao29a@gmail.com
2eee6e9b0fdf67e29c5a331b727d1b3ee6fc77a7
1dbf007249acad6038d2aaa1751cbde7e7842c53
/tms/include/huaweicloud/tms/v1/model/Resources.h
a0a4e5cacd5a1560d872e7acfa594dc3c8fe3956
[]
permissive
huaweicloud/huaweicloud-sdk-cpp-v3
24fc8d93c922598376bdb7d009e12378dff5dd20
71674f4afbb0cd5950f880ec516cfabcde71afe4
refs/heads/master
2023-08-04T19:37:47.187698
2023-08-03T08:25:43
2023-08-03T08:25:43
324,328,641
11
10
Apache-2.0
2021-06-24T07:25:26
2020-12-25T09:11:43
C++
UTF-8
C++
false
false
3,006
h
#ifndef HUAWEICLOUD_SDK_TMS_V1_MODEL_Resources_H_ #define HUAWEICLOUD_SDK_TMS_V1_MODEL_Resources_H_ #include <huaweicloud/tms/v1/TmsExport.h> #include <huaweicloud/core/utils/ModelBase.h> #include <huaweicloud/core/http/HttpResponse.h> #include <huaweicloud/core/utils/Object.h> #include <string> #include <huaweicloud/tms/v1/model/CreateTagRequest.h> #include <vector> namespace HuaweiCloud { namespace Sdk { namespace Tms { namespace V1 { namespace Model { using namespace HuaweiCloud::Sdk::Core::Utils; using namespace HuaweiCloud::Sdk::Core::Http; /// <summary> /// 资源列表 /// </summary> class HUAWEICLOUD_TMS_V1_EXPORT Resources : public ModelBase { public: Resources(); virtual ~Resources(); ///////////////////////////////////////////// /// ModelBase overrides void validate() override; web::json::value toJson() const override; bool fromJson(const web::json::value& json) override; ///////////////////////////////////////////// /// Resources members /// <summary> /// ProjectID /// </summary> std::string getProjectId() const; bool projectIdIsSet() const; void unsetprojectId(); void setProjectId(const std::string& value); /// <summary> /// Project名称 /// </summary> std::string getProjectName() const; bool projectNameIsSet() const; void unsetprojectName(); void setProjectName(const std::string& value); /// <summary> /// 资源详情 /// </summary> Object getResourceDetail() const; bool resourceDetailIsSet() const; void unsetresourceDetail(); void setResourceDetail(const Object& value); /// <summary> /// 资源ID /// </summary> std::string getResourceId() const; bool resourceIdIsSet() const; void unsetresourceId(); void setResourceId(const std::string& value); /// <summary> /// 资源名称 /// </summary> std::string getResourceName() const; bool resourceNameIsSet() const; void unsetresourceName(); void setResourceName(const std::string& value); /// <summary> /// 资源类型 /// </summary> std::string getResourceType() const; bool resourceTypeIsSet() const; void unsetresourceType(); void setResourceType(const std::string& value); /// <summary> /// 标签列表 /// </summary> std::vector<CreateTagRequest>& getTags(); bool tagsIsSet() const; void unsettags(); void setTags(const std::vector<CreateTagRequest>& value); protected: std::string projectId_; bool projectIdIsSet_; std::string projectName_; bool projectNameIsSet_; Object resourceDetail_; bool resourceDetailIsSet_; std::string resourceId_; bool resourceIdIsSet_; std::string resourceName_; bool resourceNameIsSet_; std::string resourceType_; bool resourceTypeIsSet_; std::vector<CreateTagRequest> tags_; bool tagsIsSet_; }; } } } } } #endif // HUAWEICLOUD_SDK_TMS_V1_MODEL_Resources_H_
[ "hwcloudsdk@huawei.com" ]
hwcloudsdk@huawei.com
64704f49210f936da3943ad37efb7f1f20455256
2ea95f366f918ce0ed64d482c338827a0541420e
/APril Long/worthy.cpp
940b07f9b171600d4bd7876f6f57ce23c6e9c68b
[]
no_license
Pavankalyan0105/CP
a972241dd0d85492862893bb0259a0cd9f1a8a57
afb0cdddacf16570bbb93f1755a97758716e0347
refs/heads/master
2023-04-27T02:47:51.632668
2021-05-16T09:44:22
2021-05-16T09:44:22
357,893,027
0
0
null
2021-04-21T03:46:10
2021-04-14T12:12:43
Python
UTF-8
C++
false
false
863
cpp
#include <iostream> using namespace std; typedef long long ll; void solve(){ ll r , c, k; cin>>r>>c>>k; long long arr[r+1][c+1] = {0}; for(long long i=1;i<=r;i++) for(long long j=1;j<=c;j++) cin>>arr[i][j]; long long p[r+1][c+1]; for(long long i=1;i<=r;i++) for(long long j=1;j<=c;j++) p[i][j] = p[i-1][j] + p[i][j-1] - p[i-1][j-1] + arr[i][j]; int count = 0; long long n = (r<c)?r:c; long long sm=0; for(ll i=1;i<=n;i++) for(ll x=1;x<=(r-i+1);x++) for(ll y=1;y<=(c-i+1);y++) { sm = p[x+i-1][y+i-1] - p[x+i-1][y-1] - p[x-1][y+i-1] + p[x-1][y-1]; if((sm/(i*i))>=k) count+=1; } cout<<count; } int main() { int T; cin>>T; while(T--) { solve(); } }
[ "pavankalyan0105@gmail.com" ]
pavankalyan0105@gmail.com
da7d5e4efd445a47c152d7c64bf8d3bdd79ce917
09c2ba193806628b014f1090eb9a4f184110d9bb
/depotlocker.cpp
0d438cd403fbccfd8f8c539e73da4208bbd45f02
[]
no_license
UnsineSoft/TheImaginedServer
5a1b09806a41546d4eec26d00f7170d1516e4004
c78c89d321bb4a051127186548843ebcb7497035
refs/heads/master
2021-01-24T20:58:41.676305
2014-03-25T02:17:19
2014-03-25T02:17:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,477
cpp
////////////////////////////////////////////////////////////////////// // OpenTibia - an opensource roleplaying game ////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////// // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software Foundation, // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ////////////////////////////////////////////////////////////////////// #include "otpch.h" #include "depotlocker.h" #include "tools.h" DepotLocker::DepotLocker(uint16_t _type) : Container(_type) { maxSize = 3; } DepotLocker::~DepotLocker() { // } Attr_ReadValue DepotLocker::readAttr(AttrTypes_t attr, PropStream& propStream) { if(attr != ATTR_DEPOT_ID) return Item::readAttr(attr, propStream); uint16_t depotId; if(!propStream.getShort(depotId)) return ATTR_READ_ERROR; setAttribute("depotid", depotId); return ATTR_READ_CONTINUE; } ReturnValue DepotLocker::__queryAdd(int32_t index, const Thing* thing, uint32_t count, uint32_t flags, Creature* actor/* = NULL*/) const { return Container::__queryAdd(index, thing, count, flags, actor); } void DepotLocker::postAddNotification(Creature* actor, Thing* thing, const Cylinder* oldParent, int32_t index, CylinderLink_t /*link = LINK_OWNER*/) { if(getParent()) getParent()->postAddNotification(actor, thing, oldParent, index, LINK_PARENT); } void DepotLocker::postRemoveNotification(Creature* actor, Thing* thing, const Cylinder* newParent, int32_t index, bool isCompleteRemoval, CylinderLink_t /*link = LINK_OWNER*/) { if(getParent()) getParent()->postRemoveNotification(actor, thing, newParent, index, isCompleteRemoval, LINK_PARENT); } void DepotLocker::removeInbox(Inbox* inbox) { ItemList::iterator cit = std::find(itemlist.begin(), itemlist.end(), inbox); if(cit == itemlist.end()) return; itemlist.erase(cit); }
[ "patman57@gmail.com" ]
patman57@gmail.com
4e3461f6608374f4c3c895faad25fcb69066612e
0db7e969dd5712edc29f84d63e8789ba5492cdd1
/codechef/new/trial.cpp
6750c9e29bf1a0f5b7356b94042e4c8f864ae97b
[]
no_license
gokart23/Competitive-Programming
21b3ab436e4bf4a10fe061c0fbe919cf7b16cf24
a45a72eee42a1263c608dc0b2834d17cbc1ad424
refs/heads/master
2021-01-22T11:05:05.486205
2017-12-02T21:30:54
2017-12-02T21:30:54
45,769,546
0
0
null
null
null
null
UTF-8
C++
false
false
1,145
cpp
#include <cstdio> #include <vector> #include <cstring> #include <algorithm> using namespace std; long int n; inline void fastread_lint(long int *a) { char c=0; *a=0; while(c<33){c=getchar_unlocked();} while(c>33){*a=(*a<<3)+(*a<<1)+c-'0'; c=getchar_unlocked();} } long long int get(long int arr[],long int idx) { long long int ans=0; while(idx>0) { ans = ans + arr[idx-1]; idx = idx - (idx&(-idx)); } return ans; } void update(long int arr[],long int idx) { while(idx<n) { arr[idx-1]++; idx = idx + (idx&(-idx)); } } int main(void) { long int i; long long int ans =0; fastread_lint(&n); vector< pair<long int ,long int> > pr(n);long int arr[n]; for(i=0;i<n;i++) { fastread_lint(&pr[i].first); fastread_lint(&pr[i].second); arr[i] = pr[i].second; } sort(pr.begin(),pr.end()); sort(arr,arr+n); for(i=0;i<n;i++) { long int ind = (int)(lower_bound(arr,arr+n,pr[i].second)-arr); pr[i].second = ind + 1; } memset(arr,0,sizeof arr); for(i=n-1;i>=0;i--) { ans = ans + get(arr,pr[i].second-1); update(arr,pr[i].second); } printf("%lld\n",ans); return 0; }
[ "kar.meher95@gmail.com" ]
kar.meher95@gmail.com
9adfafd3d010df3264cc68646a6103e887382755
3e375244058ed4f0f27b9d42ecbadb1e8e7ff820
/src/zeq/window.hpp
1d7ffaf994e456304642eb2c4f7e7c5529f1bcf6
[]
no_license
Zaela/ZEQ
e53fd136a06e2638efb395c80572fbc486a00c62
5f3386b80eb75b432f7c20fa3054d4b39a6adc30
refs/heads/master
2021-01-10T14:42:49.591211
2016-02-22T00:49:11
2016-02-22T00:49:11
50,164,457
1
2
null
null
null
null
UTF-8
C++
false
false
819
hpp
#ifndef _ZEQ_WINDOW_HPP_ #define _ZEQ_WINDOW_HPP_ #include "define.hpp" #include "opengl.hpp" #include "input.hpp" #include "model_resources.hpp" #include "zone_model.hpp" #include "entity_list.hpp" #include "animated_model.hpp" #include "config.hpp" #include "log.hpp" #include <vector> #include <string> class Window : public sf::RenderWindow { private: Input m_input; bool m_running; double m_prevTime; PerfTimer m_deltaTimer; ZoneModel* m_zoneModel; EntityList m_entityList; private: static void clear(); void pollInput(double delta); void drawAll(); public: Window(); virtual ~Window(); bool mainLoop(); void loadZoneModel(const std::string& shortname); Camera& getCamera() { return m_input.getCamera(); } }; #endif//_ZEQ_WINDOW_HPP_
[ "zaelas@gmail.com" ]
zaelas@gmail.com
e7b0d22a9815722fe204f70da807642807fc9221
e5b136d24afe47484371ca8087c43f024aa6fdb3
/src/connectivity/bluetooth/core/bt-host/l2cap/bredr_dynamic_channel.h
3bcb8307d3fc6116d11622705c0ecbac50fbbdd2
[ "BSD-3-Clause" ]
permissive
deveshd020/fuchsia
92d5ded7c84a7f9eae092d4c35ef923cd7852bd4
810c7b868d2e7b580f5ccbe1cb26e45746ae3ac5
refs/heads/master
2021-01-03T09:43:21.757097
2020-02-06T01:06:22
2020-02-06T01:06:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,608
h
// Copyright 2018 The Fuchsia 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 SRC_CONNECTIVITY_BLUETOOTH_CORE_BT_HOST_L2CAP_BREDR_DYNAMIC_CHANNEL_H_ #define SRC_CONNECTIVITY_BLUETOOTH_CORE_BT_HOST_L2CAP_BREDR_DYNAMIC_CHANNEL_H_ #include <lib/fit/function.h> #include <unordered_map> #include "src/connectivity/bluetooth/core/bt-host/l2cap/bredr_command_handler.h" #include "src/connectivity/bluetooth/core/bt-host/l2cap/dynamic_channel_registry.h" #include "src/connectivity/bluetooth/core/bt-host/l2cap/l2cap.h" #include "src/connectivity/bluetooth/core/bt-host/l2cap/signaling_channel.h" #include "src/connectivity/bluetooth/core/bt-host/l2cap/types.h" namespace bt { namespace l2cap { namespace internal { // Implements factories for BR/EDR dynamic channels and dispatches incoming // signaling channel requests to the corresponding channels by local ID. // // Must be run only on the L2CAP thread. class BrEdrDynamicChannelRegistry final : public DynamicChannelRegistry { public: BrEdrDynamicChannelRegistry(SignalingChannelInterface* sig, DynamicChannelCallback close_cb, ServiceRequestCallback service_request_cb); ~BrEdrDynamicChannelRegistry() override = default; std::optional<ExtendedFeatures> extended_features() { return extended_features_; }; private: // DynamicChannelRegistry override DynamicChannelPtr MakeOutbound(PSM psm, ChannelId local_cid, ChannelParameters params) override; DynamicChannelPtr MakeInbound(PSM psm, ChannelId local_cid, ChannelId remote_cid, ChannelParameters params) override; // Signaling channel request handlers void OnRxConnReq(PSM psm, ChannelId remote_cid, BrEdrCommandHandler::ConnectionResponder* responder); void OnRxConfigReq(ChannelId local_cid, uint16_t flags, ChannelConfiguration config, BrEdrCommandHandler::ConfigurationResponder* responder); void OnRxDisconReq(ChannelId local_cid, ChannelId remote_cid, BrEdrCommandHandler::DisconnectionResponder* responder); void OnRxInfoReq(InformationType type, BrEdrCommandHandler::InformationResponder* responder); // Signaling channel response handlers void OnRxExtendedFeaturesInfoRsp(const BrEdrCommandHandler::InformationResponse& rsp); // Send extended features information request. // TODO(929): Send fixed channels information request. void SendInformationRequests(); // If an extended features information response has been received, returns the value of the ERTM // bit in the peer's feature mask. std::optional<bool> PeerSupportsERTM() const; using State = uint8_t; enum StateBit : State { // Extended Features Information Request (transmitted from local to remote) kExtendedFeaturesSent = (1 << 0), // Extended Features Information Response (transmitted from remote to local) kExtendedFeaturesReceived = (1 << 1), }; // Bit field assembled using the bit masks above. State state_; SignalingChannelInterface* const sig_; std::optional<ExtendedFeatures> extended_features_; }; class BrEdrDynamicChannel; using BrEdrDynamicChannelPtr = std::unique_ptr<BrEdrDynamicChannel>; // Creates, configures, and tears down dynamic channels using the BR/EDR // signaling channel. The lifetime of this object matches that of the channel // itself: created in order to start an outbound channel or in response to an // inbound channel request, then destroyed immediately after the channel is // closed. This is intended to be created and owned by // BrEdrDynamicChannelRegistry. // // This implements the state machine described by v5.0 Vol 3 Part A Sec 6. The // state of OPEN ("user data transfer state") matches the implementation of the // |DynamicChannel::IsOpen()|. // // Channel Configuration design: // Implementation-defined behavior: // * Inbound and outbound configuration requests/responses are exchanged simultaneously // * If the desired channel mode is ERTM, the configuration request is not sent until the extended // features mask is received from the peer. // * If the peer doesn't support ERTM, the local device will negotiate Basic Mode instead of ERTM // * after both configuration requests have been accepted, if they are inconsistent, the channel // is disconnected (this can happen if the peer doesn't follow the spec) // Configuration Request Handling: // * when the peer requests an MTU below the minumum, send an Unacceptable Parameters response // suggesting the minimum MTU. // * allow peer to send a maximum of 2 configuration requests with undesired channel modes // before disconnecting // * reject all channel modes other than Basic Mode and ERTM // Negative Configuration Response Handling: // A maximum of 2 negotiation attempts will be made before disconnecting, according to the // following rules: // * if the response does not contain the Retransmission & Flow Control option, disconnect // * when the response specifies a different channel mode than the peer sent in a configuration // request, disconnect // * when the response rejected Basic Mode, disconnect // * otherwise, send a second configuration request with Basic Mode // // Must be run only on the L2CAP thread. class BrEdrDynamicChannel final : public DynamicChannel { public: using ResponseHandlerAction = SignalingChannel::ResponseHandlerAction; static BrEdrDynamicChannelPtr MakeOutbound(DynamicChannelRegistry* registry, SignalingChannelInterface* signaling_channel, PSM psm, ChannelId local_cid, ChannelParameters params, std::optional<bool> peer_supports_ertm); static BrEdrDynamicChannelPtr MakeInbound(DynamicChannelRegistry* registry, SignalingChannelInterface* signaling_channel, PSM psm, ChannelId local_cid, ChannelId remote_cid, ChannelParameters params, std::optional<bool> peer_supports_ertm); // DynamicChannel overrides ~BrEdrDynamicChannel() override = default; void Open(fit::closure open_cb) override; // Mark this channel as closed and disconnected. Send a Disconnection Request // to the peer if possible (peer had sent an ID for its endpoint). |done_cb| // will be called when Disconnection Response is received or if channel is // already not connected. void Disconnect(DisconnectDoneCallback done_cb) override; bool IsConnected() const override; bool IsOpen() const override; // Must not be called until channel is open. ChannelInfo info() const override; // Inbound request handlers. Request must have a destination channel ID that // matches this instance's |local_cid|. void OnRxConfigReq(uint16_t flags, ChannelConfiguration config, BrEdrCommandHandler::ConfigurationResponder* responder); void OnRxDisconReq(BrEdrCommandHandler::DisconnectionResponder* responder); // Called when the peer indicates whether it supports Enhanced Retransmission Mode. // Kicks off the configuration process if the preferred channel mode is ERTM. void SetEnhancedRetransmissionSupport(bool supported); // Reply with affirmative connection response and begin configuration. void CompleteInboundConnection(BrEdrCommandHandler::ConnectionResponder* responder); // Contains options configured by remote configuration requests (Core Spec v5.1, Vol 3, Part A, // Sections 5 and 7.1.1). const ChannelConfiguration& remote_config() const { return remote_config_; } // Contains options configured by local configuration requests (Core Spec v5.1, Vol 3, Part A, // Sections 5 and 7.1.2). const ChannelConfiguration& local_config() const { return local_config_; } private: // The channel configuration state is described in v5.0 Vol 3 Part A Sec 6 (in // particular in Fig. 6.2) as having numerous substates in order to capture // the different orders in which configuration packets may be transmitted. It // is implemented here as a bitfield where bits are set as each packet is // transmitted. // // The initial state for a channel prior to any signaling packets transmitted // is 0. using State = uint8_t; enum StateBit : State { // Connection Req (transmitted in either direction) kConnRequested = (1 << 0), // Connection Rsp (transmitted in opposite direction of Connection Req) kConnResponded = (1 << 1), // Configuration Req (transmitted from local to remote) kLocalConfigSent = (1 << 2), // Configuration Rsp (successful; transmitted from remote to local) kLocalConfigAccepted = (1 << 3), // Configuration Req (transmitted from remote to local) kRemoteConfigReceived = (1 << 4), // Configuration Rsp (successful; transmitted from local to remote) kRemoteConfigAccepted = (1 << 5), // Disconnection Req (transmitted in either direction) kDisconnected = (1 << 6), }; // TODO(NET-1319): Add Extended Flow Specification steps (exchange & // controller configuration) BrEdrDynamicChannel(DynamicChannelRegistry* registry, SignalingChannelInterface* signaling_channel, PSM psm, ChannelId local_cid, ChannelId remote_cid, ChannelParameters params, std::optional<bool> peer_supports_ertm); // Deliver the result of channel connection and configuration to the |Open| // originator. Can be called multiple times but only the first invocation // passes the result. void PassOpenResult(); // Error during channel connection or configuration (before it is open). // Deliver the error open result to the |Open| originator. Disconnect the // remote endpoint of the channel if possible. If the channel is already open, // use |Disconnect| instead. void PassOpenError(); // The local configuration channel mode may need to be changed from ERTM to Basic Mode if the peer // does not support ERTM. This channel must not be waiting for extended features when this method // is called. No-op if extended features have not been received yet (e.g. when a basic mode // channel configuration flow is initiated before extended features have been received). void UpdateLocalConfigForErtm(); // Returns true if the preferred channel parameters require waiting for an extended features // information response and the response has not yet been received. Must be false before sending // local config. bool IsWaitingForPeerErtmSupport(); // Begin the local channel Configuration Request flow if it has not yet // happened. The channel must not be waiting for the extended features info response. void TrySendLocalConfig(); // Send local configuration request. void SendLocalConfig(); // Returns true if both the remote and local configs have been accepted. bool BothConfigsAccepted() const; // Returns true if negotiated channel modes are consistent. Must not be called until after both // configs have been accepted (|BothConfigsAccepted()| is true). [[nodiscard]] bool AcceptedChannelModesAreConsistent() const; // Checks options in a configuration request for unacceptable MTU and Retransmission and Flow // Control options. Returns a configuration object where for each unacceptable option, there // is a corresponding option with a value that would have been accepted if sent in the // original request. [[nodiscard]] ChannelConfiguration CheckForUnacceptableConfigReqOptions( const ChannelConfiguration& config); // Try to recover from a configuration response with the "Unacceptable Parameters" result. // Returns true if the negative reponse could be recovered from, and false otherwise (in which // case an error should be reported). [[nodiscard]] bool TryRecoverFromUnacceptableParametersConfigRsp( const ChannelConfiguration& config); // Response handlers for outbound requests ResponseHandlerAction OnRxConnRsp(const BrEdrCommandHandler::ConnectionResponse& rsp); ResponseHandlerAction OnRxConfigRsp(const BrEdrCommandHandler::ConfigurationResponse& rsp); SignalingChannelInterface* const signaling_channel_; // Bit field assembled using the bit masks above. When zero, it represents a // closed (i.e. not yet open) channel. State state_; // This shall be reset to nullptr after invocation to enforce its single-use // semantics. See |DynamicChannel::Open| for details. fit::closure open_result_cb_; // Support for ERTM is indicated in the peer's extended features mask, received in the extended // features information response. Since the response may not yet have been received when this // channel is created, this value may be assigned in either the constructor or in the // |SetEnhancedRetransmissionSupport| callback. std::optional<bool> peer_supports_ertm_; // Contains options configured by remote configuration requests (Core Spec v5.1, Vol 3, Part A, // Sections 5 and 7.1.1). ChannelConfiguration remote_config_; // Contains options configured by local configuration requests (Core Spec v5.1, Vol 3, Part A, // Sections 5 and 7.1.2). ChannelConfiguration local_config_; fxl::WeakPtrFactory<BrEdrDynamicChannel> weak_ptr_factory_; }; } // namespace internal } // namespace l2cap } // namespace bt #endif // SRC_CONNECTIVITY_BLUETOOTH_CORE_BT_HOST_L2CAP_BREDR_DYNAMIC_CHANNEL_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org