blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e2a3bcdd144a08287a48cf6a5fadba2d8c8e4d81 | 2d5c49c5171055727b7d28fdcab3bfe96a376f92 | /uva/10071 - Back to High School Physics.cpp | 6a672c6f0fb5ca30fa9d2b6b0797ca06e1595231 | [] | no_license | mahfuzmohammad/ProblemSolving | 70dfe2b5f23e1934adcf3e96228e84a2abf89f75 | 324d02d0a81c3521833b9ed2670c084adad536f0 | refs/heads/master | 2021-01-10T07:48:40.895308 | 2015-07-24T22:52:17 | 2015-07-24T22:52:17 | 36,975,135 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 175 | cpp | #include <iostream>
#include <cstdio>
using namespace std;
int main()
{
int v, t;
while(cin >> v >> t){
cout << (v * t * 2) << endl;
}
return 0;
}
| [
"mahfuz.discover@gmail.com"
] | mahfuz.discover@gmail.com |
484865420ebcb18a2302c851b744bbba31c713e9 | c7a4259e840d07a4a9739ecea0ff811866d6a44d | /projectsg/projectsg/main.hpp | f60f51079fa38453197f7af8d7460455912095e6 | [] | no_license | EliotVonEcklie/project-sg | cbb4b29b5e31ee2684cc57fc0eed51402f5e0674 | 09aab41c27001ffbe62233182d49312e52638a3b | refs/heads/main | 2023-03-10T07:24:39.680778 | 2021-02-22T23:04:58 | 2021-02-22T23:04:58 | 341,049,304 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 149 | hpp | #pragma once
#include <iostream>
#include <random>
#include <functional>
#include <projectsg/gui/gui.hpp>
#include <projectsg/physics/vectors.ipp>
| [
"josephhansdiaz30@gmail.com"
] | josephhansdiaz30@gmail.com |
f1a0a71339a64bf00f436f42bd3a049774658093 | 9c413d807c6ff456f6032636753d9f9246944cdf | /Calculator/Calculator.cpp | 0b856e668e268863b0deac2c04029708f2a3020c | [] | no_license | Deniska1323/Calculator-kursovik | 331859abf19f471405b217e6e1261300c968273a | cc8f421698d5d38143c8b27501925a78f0869f39 | refs/heads/master | 2022-07-19T06:14:59.544521 | 2020-05-25T09:47:33 | 2020-05-25T09:47:33 | 262,019,353 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 209 | cpp | #include "pch.h"
#include <iostream>
#include "IncludeGuards.h"
using namespace std;
int main()
{
string s;
while (true)
{
system("cls");
cin >> s;
cout << check(s) << endl;
system("pause");
}
}
| [
"daimondhome@mail.ru"
] | daimondhome@mail.ru |
35eb369127517de65b96457f7886600ce0c646a5 | 52436fc6aab271ca8f80951f5805952b6dce9c97 | /0-N-knapsack.cpp | a38e650969eac462c543cd05413f88803dc2fd34 | [
"MIT"
] | permissive | rishavraj5/interview-prep | a6d8c2bea42936bc31e16c33e0590c55e5bc4264 | 3b72f5a750fffa3383d48b8fd1e74f0c9c49b645 | refs/heads/master | 2020-11-26T12:00:30.320357 | 2020-01-06T18:18:33 | 2020-01-06T18:18:33 | 229,065,461 | 1 | 0 | MIT | 2019-12-19T13:57:14 | 2019-12-19T13:57:13 | null | UTF-8 | C++ | false | false | 756 | cpp | #include<iostream>
using namespace std;
int weight[1001],value[1001],n;
int dp[1001][1001];
int knapsack(int W,int start)
{
if(start==n||W==0)
return 0;
if(dp[W][start]!=-1)
return dp[W][start];
if(weight[start]>W)
return dp[W][start]=knapsack(W,start+1);
return dp[W][start]=max(value[start]+knapsack(W-weight[start],start),max(value[start]+knapsack(W-weight[start],start+1),knapsack(W,start+1)));
}
int main() {
int i,s;
cin>>n>>s;
for(i=0;i<n;i++){
cin>>weight[i];
}
for(i=0;i<n;i++){
cin>>value[i];
}
for(i=0;i<=1000;i++)
for(int j=0;j<=1000;j++)
dp[i][j]=-1;
int res=knapsack(s,0);
cout<<res;
return 0;
}
| [
"abc@gmail.com"
] | abc@gmail.com |
a126585c8e9359b4ffdc7a755b17f1337ea0c390 | 715c86bb9b3689cdc86300cf4fa824a3864b1b3f | /src/computinghurt/armyhurt.h | 54fc0c90c57f1433eed3fd5b289068f57e1d9694 | [] | no_license | Ivanhan2018/zsbbserver | cb94a2353453bd41ce237aa27865b491be04d9fd | 02a3827099b93f93a2e1aeb6460f6eede57ed8ee | refs/heads/master | 2022-01-30T07:48:41.497675 | 2022-01-15T01:04:28 | 2022-01-15T01:04:28 | 168,654,088 | 4 | 9 | null | null | null | null | GB18030 | C++ | false | false | 4,666 | h | // $Id: computingarmyhurt.h 2 2009-08-27 12:12:38 Zhangwenlong $
// @brief 部队伤害类
// 当部队攻击时,伤害值的计算如下:
// 攻击力的计算:攻击力包括英雄的和所有士兵的,公式如下:
// 总攻击力(T) = (士兵人数×武器攻击力×种族命中率+英雄攻击力)× (1+光环类效果)× 相克系数 × (地形影响+ 地形技能)
// 其中,英雄攻击力 = 敏捷或力量或智力(根据英雄各类的不同)x 5
// 还有部队所在的位置(如森林,陆地,它的攻击系数是不同的)来共同确定的)
//
// 英雄的物理减免率=(√英雄的物理防御力)/150
// 英雄的魔法减免率=(√英雄的魔法防御力)/150
// 部队物攻减免率=装备物防×(1+光环类效果+兵种专精技能)×(地形影响+地形技能)
// 部队魔攻减免率=装备魔防×(1+光环类效果+兵种专精技能)×(地形影响+地形技能)
// 部队的减免率不得超过90%,超过90%按90%计算。
// 最后伤害=Damage X (1-部队减免率) X(1-英雄减免率)
//
// 生命公式:
// 部队单个士兵生命=种族+职业+英雄HP/1.5
// @author 张文龙
// 2009-09-25
#ifndef COMPUTINGHURT_ARMYHURT_H_
#define COMPUTINGHURT_ARMYHURT_H_
#include "iarmyhurt.h"
#include "soldiers.h"
#include "hero.h"
#include "namespacedef.h"
COMPUTINGHURT_NAMESPACE_BEGIN
class ArmyHurt : public IArmyHurt
{
public:
ArmyHurt(const ArmyInfo& armyInfo, const LandformInfoMap *landformInfoMapPtrParam, IArmy *army, IRandomGenerator* randomGenerator);
~ArmyHurt();
virtual void release();
virtual AttackInfo attack(Armys& armys);
virtual AttackInfo attack(Armys &armysCenter, Armys &armysInOneCircle);
virtual HarmInfo beAttacked(const NothingingDefendStru ¬hingDefStru, IArmy* attacker, int power);
virtual bool canCatchHero(IArmy* army);
virtual bool canPlasterHero(IArmy* army);
virtual SOLDIER_TYPE getSoldierType() const ;
virtual int getCurHurtHp() const;
virtual int getHeroIncreaseExp() const;
virtual int getCurrentHp() const;
virtual int getDefendPower(ATTACK_TYPE attackType) const;
virtual int GetAttackPower() const;
virtual int getSoldierNum() const;
virtual void resetHurt();
virtual void upgradeLevel(const HeroAttribute& heroAttribute);
virtual void upgradeOrLearnedSkill(const SkillInfo& skillInfo);
// 函数描述:废弃所学的技能
// @param skillAndGradeStru 技能基本信息数据结构
// @return true/false
virtual bool abandonSkill(const SkillAndGradeStru& skillAndGradeStru);
// 函数描述:是否学习了指定等级的技能
// @param SkillAndGradeStru 技能、等级的数据结构
// @return true/false
virtual bool isLearnedSpecifiGradeSkill(const SkillAndGradeStru & skillAndGradeStruct);
//
const HeroAttribute * getHeroAttribute()
{
return hero_.getHeroAttribute();
}
HeroType getHeroType()
{
return hero_.getHeroType();
}
// 重新设置部队数量
unsigned int resetSoldierNum(unsigned int soldierNum);
// 增加部队数量
unsigned int addSoldierNum(unsigned int soldierNum);
unsigned int getTotalHp() const;
protected:
int processHurt(const IArmy* army, int& hurt, unsigned int landformDefAtt, bool isHurt2AddHp = false);
// 计算总的攻击力:士兵武器攻击力x人数x种族命中率
int computeAtk(bool isShowPower = false) const;
// 通知部队army释放了技能
void notifyReleaseSkill(const SKILL_TYPE& skillId) const;
// 处理攻击所有的
HarmInfos processAttackAll(const NothingingDefendStru ¬hingDefStru, const BreakOutStru &breakoutStru, Armys& armys, int atk, unsigned int landformAffAtt);
// 处理第一个部队
HarmInfo processAttackOne(const NothingingDefendStru ¬hingDefStru, const BreakOutStru &breakoutStru, IArmy* beAttacker, int atk, unsigned int landformAffAtt);
// 增加经验值
unsigned int addExp(const IArmy* enemy, int deaths, int hurt);
// 直接处理伤害,无视防御
HarmInfo processHurtStraight( int power, const IArmy* attacker, unsigned int landformDefAtt);
// 处理减少部队人数
HarmInfo processReduceMan(double reduceProba);
int processReduce(double reduceProba, int& hurt);
HarmInfo processSelfBlastAttackOne(IArmy *beAttacker, int atk);
// 处理自爆卡攻击所有的
HarmInfos processSelfBlastAttackAll(const Armys &armysCenter, const Armys &armysInOneCircle);
private:
ArmyHurt();
ArmyHurt(const ArmyHurt &armyHurt);
private:
Soldiers soldiers_;
Hero hero_;
const LandformInfoMap *landformInfoMapPtr_;
IArmy* selfArmy_;
};
COMPUTINGHURT_NAMESPACE_END
#endif // COMPUTINGHURT_ARMYHURT_H_
| [
"hanxiaohua85@163.com"
] | hanxiaohua85@163.com |
265068b115e948b196a7f1f2fd5421b7ca615088 | 35b184843b895637481960feb4925713494ad28c | /Student_Cuda/src/cpp/core/06_Histogramme/host/histogram.h | 3b8f04b013c88f4a93fdf08c4a5c6dbb7599d8b4 | [] | no_license | doytsujin/parallel-data-processing-class | 62076b46004cd00abb2fe02b22520fb87c47eff2 | f06fe961cd33d788beb7f29667a40e8f2f7674da | refs/heads/master | 2021-06-14T06:13:10.776883 | 2017-04-28T12:21:57 | 2017-04-28T12:21:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 442 | h | #pragma once
#include "cudaTools.h"
#include "DataCreator.h"
class Histogram
{
public:
Histogram(const Grid& grid, int tabSize);
virtual ~Histogram(void);
public:
int *run();
private:
// Tools
int tabSize;
DataCreator *dataCreator;
int *ptrTabResult;
int *ptrTabData;
int n;
dim3 dg, db;
int *ptrResultDev;
int *ptrDataDev;
size_t sizeOctetData;
size_t sizeOctetResult;
};
| [
"cyril.ruedin@he-arc.ch"
] | cyril.ruedin@he-arc.ch |
f10987297b5dc70e842c6aefcd8df889d05bcf89 | de4c6c24fdbc8c405d571260031101989f9d43ee | /dfs/andryusha_and_colored_balloons.cpp | b8eac0070a017df35405ebde64b537cae74e7ea8 | [] | no_license | weizesunsunweize/CodeforcesProblems | 8d99ca193220235b2a1b035df98c7c246dac135e | 590ef7e1450b786c059f463d6b0002ee7e080a6e | refs/heads/master | 2020-07-04T20:48:47.225262 | 2019-08-14T19:35:03 | 2019-08-14T19:35:03 | 202,412,612 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 707 | cpp | /**
* http://codeforces.com/contest/780/problem/C
*/
#include<bits/stdc++.h>
using namespace std;
int n;
vector<int> e[200007], c(200007, 0);
void dfs(int u, int f) {
int j = 1;
for (int i = 0; i < e[u].size(); i++) {
if (e[u][i] == f) continue;
while (j == c[u] || j == c[f]) j++;
c[e[u][i]] = j++;
dfs(e[u][i], u);
}
}
int main() {
scanf("%d", &n);
for (int i = 0; i < n - 1; i++) {
int x, y;
scanf("%d%d", &x, &y);
e[x].push_back(y);
e[y].push_back(x);
}
c[1] = 1;
dfs(1, 0);
int ans = 0;
for (int i = 1; i <= n; i++) ans = max(ans, c[i]);
printf("%d\n", ans);
for (int i = 1; i <= n; i++) printf("%d ", c[i]);
printf("\n");
return 0;
} | [
"weizes2@illinois.edu"
] | weizes2@illinois.edu |
8ee45265ee191ec75b88b61d2b475206f0de9188 | 04dc7cc05f9b33585228e649706dcb2fc1eb797b | /CODEFORCES/231/b.cpp | cfe21acb9f5ba29e6fb4060f678690c3974ca152 | [
"Apache-2.0"
] | permissive | henviso/contests | 4fc34cc86a42a3ff15e23e457a21bba10913f419 | aa8a5ce9ed4524e6c3130ee73af7640e5a86954c | refs/heads/master | 2016-09-14T19:14:29.266088 | 2016-05-12T00:02:59 | 2016-05-12T00:02:59 | 58,590,566 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,039 | cpp | #include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <cstdlib>
#include <stack>
#include <algorithm>
#include <cctype>
#include <vector>
#include <queue>
#include <tr1/unordered_map>
#include <cmath>
#include <map>
#include <bitset>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef vector<int> vi;
typedef pair<int,int> ii;
///////////////////////////////UTIL/////////////////////////////////
#define ALL(x) (x).begin(),x.end()
#define CLEAR0(v) memset(v, 0, sizeof(v))
#define CLEAR(v, x) memset(v, x, sizeof(v))
#define INRANGE0(x, n) ((x) > -1 && (x) < n)
#define INRANGE(x, a, b) ((x) >= a && (x) <= b)
#define COPY(a, b) memcpy(a, b, sizeof(a))
#define CMP(a, b) memcmp(a, b, sizeof(a))
#define REP(i,n) for(int i = 0; i<n; i++)
#define REPP(i,a,n) for(int i = a; i<n; i++)
#define REPD(i,n) for(int i = n-1; i>-1; i--)
#define REPDP(i,a,n) for(int i = n-1; i>=a; i--)
#define pb push_back
#define pf push_front
#define sz size()
#define mp make_pair
/////////////////////////////NUMERICAL//////////////////////////////
#define INCMOD(a,b,c) (((a)+b)%c)
#define DECMOD(a,b,c) (((a)+c-b)%c)
#define ROUNDINT(a) (int)((double)(a) + 0.5)
#define INF 0x3f3f3f3f
#define EPS 1e-9
/////////////////////////////BITWISE////////////////////////////////
#define CHECK(S, j) (S & (1 << j))
#define CHECKFIRST(S) (S & (-S)) //PRECISA DE UMA TABELA PARA TRANSFORMAR EM INDICE
#define SET(S, j) S |= (1 << j)
#define SETALL(S, j) S = (1 << j)-1 //J PRIMEIROS
#define UNSET(S, j) S &= ~(1 << j)
#define TOOGLE(S, j) S ^= (1 << j)
///////////////////////////////64 BITS//////////////////////////////
#define LCHECK(S, j) (S & (1ULL << j))
#define LSET(S, j) S |= (1ULL << j)
#define LSETALL(S, j) S = (1ULL << j)-1ULL //J PRIMEIROS
#define LUNSET(S, j) S &= ~(1ULL << j)
#define LTOOGLE(S, j) S ^= (1ULL << j)
//scanf(" %d ", &t);
ll t, n, l, r;
int main(){
cin >> t;
REP(i, t){
cin >> n >> l >> r;
ll k = n/l;
if(r * k >= n) cout << "Yes\n";
else cout << "No\n";
}
}
| [
"henviso@gmail.com"
] | henviso@gmail.com |
9b0defe5f1d4e2373e19dd18cada53e1b02ed013 | c3b28d5134ff2151f1f70609288079dc00223632 | /src/db/Database.hpp | 47dedac18e49688b3818a6997504b05ae65242c3 | [
"Apache-2.0"
] | permissive | rrajpaul/retail-brand-service-cpp | db043d6c29c98908a18538d2d6e1ce0624ec3339 | b075909c8cf9e5dcbfd8ceca3cf86e8ec589678d | refs/heads/master | 2022-07-22T21:30:40.533532 | 2020-05-18T06:53:49 | 2020-05-18T06:53:49 | 260,760,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,430 | hpp | #ifndef Database_hpp
#define Database_hpp
#include <mongocxx/client.hpp>
#include <mongocxx/uri.hpp>
#include <mongocxx/instance.hpp>
#include <bsoncxx/types.hpp>
#include <mongocxx/client.hpp>
#include <mongocxx/uri.hpp>
#include <mongocxx/instance.hpp>
#include <bsoncxx/builder/basic/kvp.hpp>
#include <boost/optional.hpp>
#include <string>
#include "oatpp/core/Types.hpp"
#include "oatpp-mongocxxmapper/ObjectMapper.hpp"
#include "dto/DTOs.hpp"
#include "MongoUrl.hpp"
#include <iostream>
#include <cstdlib>
using bsoncxx::builder::stream::document;
using bsoncxx::builder::stream::open_document;
using bsoncxx::builder::stream::close_document;
using bsoncxx::builder::stream::open_array;
using bsoncxx::builder::stream::close_array;
using bsoncxx::builder::stream::finalize;
using bsoncxx::builder::basic::kvp;
using bsoncxx::builder::basic::make_array;
using bsoncxx::builder::basic::make_document;
const std::string TAG = "retail-brand-service-cpp ";
const std::string DB_HOST = "localhost:27017";
const std::string DB_USER = "userAdmin";
const std::string DB_PASSWORD = "Khill-59!";
const std::string DB_NAME = "retail-brand";
const std::string COLLECTION_STYLE = "style";
const std::string COLLECTION_SKU = "sku";
//static std::string MONGO_URL;
class Database : public oatpp::base::Countable {
private:
std::shared_ptr<oatpp::parser::mongocxx::mapping::ObjectMapper> m_mongomapper;
mongocxx::client m_client_style;
mongocxx::client m_client_sku;
mongocxx::database m_db_style;
mongocxx::database m_db_sku;
mongocxx::collection m_coll_style;
mongocxx::collection m_coll_sku;
v_int32 getStyleMaxId();
v_int32 getSkuMaxId();
public:
Database() {
std::string connString;
MongoUrl url;
std::string mongo_url = url.getMongUrl();
if(mongo_url == "127.0.0.1" || mongo_url == "127.0.1.1") {
mongo_url = "localhost:27017";
}
OATPP_LOGD("Database", "Database mongoUrl %s...",mongo_url.c_str());
connString = "mongodb://" + mongo_url;
std::cout << mongo_url << std::endl;
m_client_style = mongocxx::client{mongocxx::uri{connString}};
m_client_sku= mongocxx::client{mongocxx::uri{connString}};
m_db_style = m_client_style[DB_NAME];
m_db_sku = m_client_sku[DB_NAME];
m_coll_style = m_db_style[COLLECTION_STYLE];
m_coll_sku = m_db_sku[COLLECTION_SKU];
m_mongomapper = oatpp::parser::mongocxx::mapping::ObjectMapper::createShared();
}
StyleDto::ObjectWrapper createStyle(const StyleDto::ObjectWrapper& style);
StyleDto::ObjectWrapper updateStyle(const StyleDto::ObjectWrapper& style);
StyleDto::ObjectWrapper getStyleById(v_int32 id);
oatpp::data::mapping::type::List<SkuDto::ObjectWrapper>::ObjectWrapper getSkuByStyleId(v_int32 id);
oatpp::data::mapping::type::List<StyleDto::ObjectWrapper>::ObjectWrapper getStyles(v_int32 pageNumber, v_int32 nPerPage);
oatpp::data::mapping::type::Int32 getTotalStylesCount();
bool deleteStyle(v_int32 id);
bool deleteSkuByStyleId(v_int32 id);
SkuDto::ObjectWrapper createSku(const SkuDto::ObjectWrapper& sku);
SkuDto::ObjectWrapper updateSku(const SkuDto::ObjectWrapper& sku);
SkuDto::ObjectWrapper getSkuById(v_int32 id);
oatpp::data::mapping::type::List<SkuDto::ObjectWrapper>::ObjectWrapper getSkus();
bool deleteSku(v_int32 id);
};
#endif | [
"rrajpaul@hotmail.com"
] | rrajpaul@hotmail.com |
dd671a197be43f6523ccab312c1d8bba1663ff89 | ca7ea4ae2a8472e6e67a0d4534935eac4227215e | /App/Il2CppOutputProject/Source/il2cppOutput/GenericMethods4.cpp | 175d4db5095f2e7d0dddb02c77364bb35791b0e3 | [] | no_license | DBKKH/MRTK-test | e892e65ee5ed72500d3ff783559965ce36500faa | 2a4e39c97ed5345910649b6821b4a99bb40e0c44 | refs/heads/master | 2022-04-11T19:00:43.354072 | 2020-01-18T11:36:26 | 2020-01-18T11:36:26 | 198,066,624 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,039,290 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
// MS.Internal.Xml.Cache.XPathNodeInfoAtom
struct XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7;
// MS.Internal.Xml.Cache.XPathNode[]
struct XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B;
// Microsoft.MixedReality.Toolkit.BaseEventSystem/EventHandlerEntry[]
struct EventHandlerEntryU5BU5D_t7D3B422539E522484BD470A429D090B18C7A492E;
// Microsoft.MixedReality.Toolkit.BaseMixedRealityProfile
struct BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B;
// Microsoft.MixedReality.Toolkit.Boundary.Edge[]
struct EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84;
// Microsoft.MixedReality.Toolkit.CameraSystem.BaseCameraSettingsProfile
struct BaseCameraSettingsProfile_t52C0D5096C9A8F11F116C3B16FA7A33CE2D02070;
// Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointer
struct IMixedRealityPointer_tA369D6CB41A54D397C9505B232F5CA1F2DE02DC9;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction[]
struct MixedRealityInputActionU5BU5D_t4FDC16B5B905261A6B1A4DDF75D4EF0296DD55E7;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInteractionMapping[]
struct MixedRealityInteractionMappingU5BU5D_tB16E9C2700709844772AAA99C5971C70CA9F2C69;
// Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo[]
struct SceneInfoU5BU5D_t53B51DB3A2A4B576992AFD774092D1A6010EC417;
// Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialAwarenessObserverProfile
struct BaseSpatialAwarenessObserverProfile_tD7E20AD61D6B6DD53CF2AD3877DCF2A4B8892B35;
// Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme/BlocksAndRenderer[]
struct BlocksAndRendererU5BU5D_t121D8370D0807540C909B58C3122EDDA9DA622E1;
// Microsoft.MixedReality.Toolkit.UI.ShaderProperties[]
struct ShaderPropertiesU5BU5D_t14DC9156D548ED23B85310557E2F9BC6AF312E69;
// Microsoft.MixedReality.Toolkit.UI.ThemeDefinition[]
struct ThemeDefinitionU5BU5D_t2F4682E8423138C6516DD064FC40EBB907755A97;
// Microsoft.MixedReality.Toolkit.Utilities.Easing
struct Easing_tEB161440B9E6629D955313E558F5DF45AF8DC2E3;
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting[]
struct InspectorPropertySettingU5BU5D_tAED0D945613EDA515065B5517B8062DF00981FF1;
// Microsoft.MixedReality.Toolkit.Utilities.SystemType
struct SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34;
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA;
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[]
struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F;
// System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Vector3>[]
struct KeyValuePair_2U5BU5D_t2056CEA4067E5A5D956F384D695B7295B83254B0;
// System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeProperty>
struct List_1_t0546ACEE880E08F2EBEA286DD05FCA524B3953FB;
// System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeStateProperty>
struct List_1_t2186A9C985B0FC9B1A18B31A45FBE433E9B2D55C;
// System.Collections.Generic.List`1<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>
struct List_1_t539EC6FA9B0346406B6F89DAED4E2BA45FE380E5;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.IO.Stream
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7;
// System.IO.TextReader
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A;
// System.Int32Enum[]
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventRegistrationTokenListWithCount>
struct ConditionalWeakTable_2_t29A94EE935DB16A7FA33761A8766881A513B3CAF;
// System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/TokenListCount
struct TokenListCount_t86E03CD21D37F3526546F9A171228599EE74AE73;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
// System.Single[]
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.Text.Decoder
struct Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26;
// System.Text.Encoding
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4;
// System.Threading.CancellationCallbackInfo
struct CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36;
// System.Threading.ManualResetEvent
struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408;
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01;
// System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7;
// System.Threading.Tasks.Shared`1<System.Int64>
struct Shared_1_t413E7EECDF9A42C4D2F6175BE1988CC4A455B164;
// System.Type
struct Type_t;
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
// System.Uri
struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// System.Xml.IDtdEntityInfo
struct IDtdEntityInfo_t4477A2221D64D9E3DB7F89E82E963BB4858A38D2;
// System.Xml.Schema.BitSet
struct BitSet_t0E4C53EC600670A4B74C5671553596978880138C;
// System.Xml.Schema.SequenceNode
struct SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608;
// System.Xml.Schema.SequenceNode/SequenceConstructPosContext[]
struct SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0;
// TMPro.MaterialReference[]
struct MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B;
// TMPro.TMP_CharacterInfo[]
struct TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604;
// TMPro.TMP_FontAsset
struct TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C;
// TMPro.TMP_LinkInfo[]
struct TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D;
// TMPro.TMP_MeshInfo[]
struct TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9;
// TMPro.TMP_PageInfo[]
struct TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847;
// TMPro.TMP_SpriteAsset
struct TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487;
// TMPro.TMP_Text
struct TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7;
// TMPro.TMP_Text/UnicodeChar[]
struct UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505;
// TMPro.TMP_TextElement
struct TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344;
// TMPro.TMP_WordInfo[]
struct TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09;
// UnityEngine.AnimationCurve
struct AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C;
// UnityEngine.AudioClip
struct AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051;
// UnityEngine.Camera
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34;
// UnityEngine.Color32[]
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966;
// UnityEngine.EventSystems.IEventSystemHandler
struct IEventSystemHandler_t52B469CDB1B62F8D57357398F8B6A32C8B190F99;
// UnityEngine.Events.UnityAction
struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4;
// UnityEngine.Events.UnityEvent
struct UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem/UpdateFunction
struct UpdateFunction_tE0936D5A5B8C3367F0E6E464162E1FB1E9F304A8;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem[]
struct PlayerLoopSystemU5BU5D_t97939DCF6160BDDB681EB4155D9D1BEB1CB659A2;
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F;
// UnityEngine.Material
struct Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598;
// UnityEngine.MaterialPropertyBlock
struct MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13;
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C;
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0;
// UnityEngine.Playables.PlayableBinding/CreateOutputMethod
struct CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3;
// UnityEngine.Playables.PlayableBinding[]
struct PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB;
// UnityEngine.Renderer
struct Renderer_t0556D67DD582620D1F495627EDE30D03284151F4;
// UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734;
// UnityEngine.Sprite
struct Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198;
// UnityEngine.Texture
struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4;
// UnityEngine.UI.Selectable
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
// UnityEngine.Vector4[]
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66;
extern RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
extern RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
extern RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var;
extern RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
extern RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
extern String_t* _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A;
extern String_t* _stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA;
extern String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25;
extern String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D;
extern String_t* _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
extern String_t* _stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90;
extern String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
extern const RuntimeMethod* Array_InternalArray__Insert_TisAnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B_mC30C59E4DB7E3316FD6B1D17F9230D77A645FAC3_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD8C12E9537ADB27575F599896B3D15D5BBA75D9B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_m8EB4CF7355F8E43BFD8595BEE92C30F8887A73A8_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_mE8A5FB4AA5D2DB10483FB652B675D5CEBC300B2A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisBoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1_m1D025D9015A8EADB44F77F010EC2FE585B21F02D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE9F6E0D310E603EA96A953EF1DD6C68F39730C9C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_m4AFED5E146200A6855FA67408DE761A45116DEF5_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m7F6A6780F368FE04054FC52535DA7A65F71EEAA9_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39C0E1BB2E4639B675A0B24E8F7C369E05F25685_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m306EA880334E146139F06691FA435F36589DDB63_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2E9DF91734F88A23FAB1941B8BEB5A251046DF63_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m6DA9330FD631DC94510393402C2F75A6CA557E00_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m750BF7E84A41DDD54D6C89E22CB616187405A81C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mF502555E1F2540AED54DA5ACF2EFF7A2605E86AC_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisCombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28_mE633650608F60D8C4D2D4EB57C7A5B49297D67DA_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m1F2E7E0302C817DECFA7BB2827614250B76DA075_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_mBD2212C6C5C4AE60EA0795979993BA2A26CE4E8B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mD4885C4B8D8E8E3097D1765E6A92ECF8F94AE5C7_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m07D073239E468F11F0A92423F8C45E08E1B6D21E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m5B1BFF4BD07F7DE1A1F0AA346CAB42D57B22D1F2_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC1A470EC548C3EECA307AB7491C7C03ACBEB6295_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisDateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_mE5952C9504F7CA2EC544180B976850ECB6D58550_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m506AB5C14FB35E185FF78BED19CFF4B12D2D79E2_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mC3AAD833A34DF3BF2CD9916A94EEBF85F84571D8_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m1F8E0FD15BFA1B3337DB17BB8862E5E7FDE3E7BE_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m80D0262056AB6132787D162EC685AC57C2ABBF51_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m04DE7DE6F8761B7C1A649CB503F3FB80435FAF53_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m366CB0ADB17FEC25A6773D3155FF562FC4554B3D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t266C0028DBD75C5E784224261B95300BB5315207_m9A0162CB40F27A97A135D483C9A2BAF3379410EC_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688_m80DE9C7640F0776B75568F662A120994A93848A1_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m640B87319C6D2DFCC1A5FB7DBD24015FD4EEB1A4_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t3A99E3574F89658F38564648536BBF4389E095FC_m861CDF7DB362DD2CD2F061CE9015A9289F0E6CC5_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mBC990E523C5FAC4D18228EE959A605F31DE2DBA9_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD_mF8870E87C412CBE073CEE17DEE66C6CCD50E41D6_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m5DD9AC37E36287E7452B482A18D7BB198974274A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m59785DEDD32E06384722D716EB1122FA165DC164_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF_mDDBCD0A8E3093C871FCAB7C9BC2C0AD12FAF1B60_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mBF0F64B2BA1CEA72F9E93BF8D1CE8B760D30FE6E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mFC47BD3B041BC417842362A130A22922CA9D5210_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m27402EA336921B905B28D9D5C41AC7DF1C599BCB_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mC746C2502A46D02D0916861AFD6E010266505986_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488_mB0FCD430D1AC8C3D90667F16572398C52EF49A25_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC_m8A50C95722718B77C3D5FAC7DBBB544423839A1E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E_m936E9A10E648C9A9DC21B213BFF3AB6ACC932417_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m0E2EF8F3992A2D2193DA91A85BA4EB37ECE69F36_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m23A4919E880F5BC6B4A8E4E947CFC6865CE7BD54_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E_mE9ECF8FE382D6EAC560C9F4601EC9894B7C2D7DC_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m3700CDFD6D670C936C8F6CBEF92A9D1D1EB8F2C2_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m795F453B39D52A9A0CDFA4849B8EAB8B432A46C5_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_m884D02C12BDFF597EE9D9EBA4176EFDFB4C231A0_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_mEFD58605BD0E1293E1FF5BB462A7A2C8C594BFD6_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBFA6837DC3148B8268BBDC819CC2B30C9B98D344_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m658F98B159EDE3EB39E0C386903E16BA2002FF44_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6_m09A50E4F048BC03BA21D121C808206319F3DBA03_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A_m9C3BE935E6B070C35DB0E96BF270D856327FB50E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_m0E4979F0AF86A1D91A92AD0002DA6071E8BF4349_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_m1B4EB755BEFF4B018B3BB4D11655BD5CB55A69D8_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisEventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7_m48A14FC6614A61DFABB1114898D296698713FDFE_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisFileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_mC7DDA5D55D98FD5FB2EE123D42400F5B231B2455_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mC0FD985A43489A501E702CA511A3859032A6CE9A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisFoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_m2CD453F38CA167C631847FDCCEFA78B4DAE53D45_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisFrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC_mB3F8892B8FBC3C798668A4F727C59A991554DBB5_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m2256A0CF02F23CF41324F1D4CE6212928B4CAD7A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m31EED9C8136B7BF065A07E548F83E3142FF324C8_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_mFCE80587C2394A8FEDD0A53D7AFB37F8A258C58C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_mC67856AB0B5F4907AFDBDFB5A1C21F6017A117BB_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisGradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_m184988B0186FD32114AFFE0FFA6D1A52F75B39D1_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisGuid_t_m9FD816450B7080391B67F48C9E123DB561466EF2_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisHResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_m3C156AE08D59858A0283BEEF262A8749D5D8914C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisHandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_m68031079D408D08ADF4AF87B3C03655EAC7C645E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mAF811887FDC7242E77CBC4B52D8BCB59C50603F4_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_mB217196A981DF20A78F821A5676196C3E1EB852B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisIndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251_m97803224AAFDEE1D4ABE86AF963C8D370BE7F5B0_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m2A1567A4D9745A9504F2AEC669BFD142769D8B63_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF074234522318193EE734BC9138E605CD9622EB5_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mAF387A609B4339D2D5B2A4E8863A5D517599D7B1_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m87666E66010673C970F94E1C303DE5E8FAE0C8C3_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4A9A88250BBA3249C36F53140B0F15D826777325_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisIntPtr_t_mEF1B13612BA6200225FA42B47519FD25D74B81B1_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisInteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_mE9D9D785677750CB2DA1C0D198ECF6BD26C6F2C2_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01B1B14297575D96EE9191074E5632BC0B51A914_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mF0B68FA4FB992EB82E6A755613ED52A537C1D7D7_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisJointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_mAD10C1CDA876833A05DE67042DF13294A8D5E997_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m01AE1836246A090293461E55415D13408A161066_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4_m59694BF544A142468E435385C14EE9784CF88E02_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mC6F9F51E5F4362482BD5714FA3D66C3022DB4A44_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26_m982908B8D1321B92E6706BA118232673F1FCB2CD_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m5AAE842F1F6C7FAE42D1DBE719201D49C6205C8A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m0D2B5DDB8A92DC3C243626688F7C70607526A03D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187_m0F74212D98315E1A363AD383E491301670DDD0AA_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m0AA4311C56D9888BBA00A9F3E6FE48C48E62C104_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_mF3E52E6B89CC10EED23F76C275DEEB462FB1BFE5_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_mAC671FDB5325B51248B56AC79F51CA059A5EC445_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_m35D547D9DE08BF517B74BF9C691B5E36B6B0CE21_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mFF6322E2EE3565369974ADC72D6091611498CEFB_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_m65D8913E3C1D28DD0A041C608E7AA6A292F183A7_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m8117EAB836397B8746CE03DC38BDBE3688F41A5A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7_m768FB8BFF448EE65058A948794AFA9DE706019A2_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mE0E3F1583DBA4DAF18CC3300DE3C6916ED13EA65_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3_m0D57123466BA771F272D2C76D5FCD8F230E353A0_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46_mB6D8F83BF370324FE434040068C17E32E8244DCA_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2_m1D64FB5CD56942B749C26B7B39A2897A9AFB0467_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m3FECC49D66B6A51DACC6BD52FDD25846EFDAD881_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822_m0DC2FA2B3D58A1BB4D95E7F70CEB5CE98B2EE584_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27_mC1C99E3AE87AC84E2085EC562DE7A9F22F628C4F_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238_mE7710DF6E5823547D7DA6FFF63A58193A69DFD0B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF_mE9E59CD0B33D6B243F118DE8C75CC5575C785B22_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1DC1D2CE7F27B6861D32667F792056810F14E6A2_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B_mB9B24A70CAF3D84C6DD5C9FA58B7E6030B256E62_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA0B4CB939AEBF8A592DA52B197572428F43EB20B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_mD83E61B5572BB7E8087280B15BE4F7C9A2C21C98_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mCE8A2D462A033FB0B3BEC9AC0EA8A1AE4F880E8C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m814415ACE0DDA6F9C3599F01F4BCCFF52739BEDF_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m43590D8BDBACC116DB476E0B9BEAB3AB720A40AF_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mA2AA8A2A95A3FEF70897324987502AD1FE53E6F0_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m080E94A7C7205907F8F346A15616AE2DF9FF433B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m73B391F1899670C483DE38BB50FF2E693835DB1A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisMatrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_m35628AE6A7530CF5E67752613BBB16AB2F0BD045_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisMatrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_m194AC3D772CAAAE60DE2D96CF32453D8629FE362_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisMixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88_m367632F4549B94B34ED771721FA1F1C2BCA32B80_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisMixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_mCC0C7E15A55D35636FB7B4C1AFB4ED1B57F4541C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisMixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D_mBDFB09AF52AFFD2D5966DC5F8CF8F35B71652D4F_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisMixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3_m49C0216E65C8510757D1C9C8E17931F3F7A9D9D8_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_mE3564ADC7AFC168B70B3AEEBBDB30F1C791D4712_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m96A7775C85D62573DF6DE140C929E9CA0CA2F34C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE_mD833B193AAFF79216D599A5BF0EB5BBD7420178C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m88C1919D27F6B04E25EE64B03245DB35B5211870_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m71900E28A11269D320A0F0CBFBD9355A0451531C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mC7B4F06520A4EEAFF045AF217D29F9A4AC243ED3_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mA9D5F62A1A9186A23DE150EDB18117D53D3742CC_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m194B92BDF48E9D276C6442C3C1BF073C821DBBC4_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m84D093DCACA5ECE7F072D319DD1210DFE9800023_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF5D0703796BCE5A44665238F9AB08E5BB84A4AC6_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisPoint_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC_m91D87ECA71D8932F37A51611F3627F17DFF19EBF_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisPoint_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_m8DD5E07A116C2DE3ED1FFB55C6B714ECAAE4AC56_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisPointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4_mDCB97B0826A4C2A766091E37BEB955B33DC1A194_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisPointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7_m3A4D75C8C42ED2091BE1FC3739138890A9CAD5A5_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_m1948E7097EB6B4EA248736E3FC2C196542E09CED_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisQuaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A_m55DC483C759E7EA51CC47DC89D8D1C485FDDEAF0_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisQuaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_m37EBBBAB3721A607752BD7DB64B166FDB6AC3DAC_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisRayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_m10BFC1DD54BB62E88E529FF8211A1906469C5BE9_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_mE4AFCA29808B499F97910F7FDC966BE5D9551C18_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m308D20824E0EEE9179C05DCA5121423EDB625B14_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m047B94B06ED6514328636242E434382F92CDFE70_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m7E00C777837180B0E0E0E7E2E008D0239C31BBB5_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m0EA2E0CEAB796505E0618FD2931EEE5BFF7E5507_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisRect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_mBDAC8697C665E2F56EE66F4249A1656C43890C23_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisRect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0_m5A6A9924A5E66E67AACE5E684C882976B3FDB463_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m8957E8B1D262157330910E34C749D6A0FBF12005_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mFD51B3BE1ADDD9FD4C1B2EB187FC778A6208CD2E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisRuntimeObject_m2621683E821AC4AE9C55CD7C1DA21EBCC57807D1_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m0FA77EEA9554B1BFC19FF42D1F5855E48A0D0576_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_m9684F21459B486374A9EDC147072EE89BA784625_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_m4DE8DD68662123D5464249FD974871C0A7C2DB83_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_mEEACCCF9FB82D93E9A44A791D94EE07786AC3D79_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m59902BE357936A7D2C61F26C3E99E9FFB4515D8A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_m74E18C2F6DF0494CD9FB51E854E4F00C9E7F6D2A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mAB37BBB9EF7D4C308D99207D279EC86DA722CA7C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSize_t4766FF009097CE547F699B69250246058DA664D9_m78388965EF938E8AD7C2FD0F2D69C76CAFE387AE_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSize_tBE9F75FCA10276DC3998237A8906733B64FB75A2_m58738072DC6A9F50C7B358FFAD9B698F92CE7E3B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mA7BC4F9F207588AB3833593BCEAAA3AF827EC496_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m19FA73D72D42E6AC04D0BE3ED2E272046A792E49_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_m8B9456345FBFC805FC8504CA72DB6ED8531D49CA_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_m83C3C32ED09DC632A2DBCC70161ABF8C902D2ECD_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11_mB448B899E0CC7A592F28EF2DD14B3077DCB6B016_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790_mDF08CEB9248B49B110F476D6DF2B8CA23F75CB13_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m8A62CF16FEBC3BDA1D36E4B4FBE4BC40A55DCF83_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisSurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_mF80B437879D375253A37A95DD1E03BAE1BD556AD_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB8D59B73D2EA88BECEF52DEF1FD5F3460E460150_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mB4ED3B109F5C7884C62CDBBF1F5C44786BF5D8AC_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_mFE26E8EA4C9671C4DFB9DBFB8A3CE928D66CC46D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mC0137D127933CE8BD34F125A7DBE998123F98EB3_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mAAF13F4BC51D9C58DD9B74284E6269389937092F_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m3A2AB3FB93CFE99A986CFDA6D00F37E044A8C573_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_mCAFFB20C76EFFF6819170E1124DAB998D50387DB_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m267C106765C42662477BE62A7981DEF7141F8BEC_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_mE08EC7AEEBFE083BA46ED3F087D36695FDB3B9B2_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m98D7653CFEB82E7CF33FFD863491C990BE846302_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mF4A9D9A3E13AE916760E1657B1D4660B6A07AEBB_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisTimeSpan_tD18885B289077804D4E82931E68E84181C072755_m67950908F11BD50C2FDF345075A01E85F921EC53_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisTouch_t806752C775BA713A91B6588A07CA98417CABC003_m4252D084ADE5907EFD1EFDA867679C687B2D4CEE_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisTypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_m836C90C786D993728CE05DDD980F21AFC2626946_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m67D7F1E3AF7644990858C7427636DFF846CEF0B3_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m2C25B046CAD3442CA5EB374C6FF6A77DDB905901_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m799069358A4B82CF630AF60AC897C6780872B1B3_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mD3EC6C124E65BE8F0737D39BC922938073D5BDC6_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mA151CCECC244AE62A4B8B19078AEDE5BFD0717DC_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mA2F7CF78455B07E081841B7C94161A3ABA89817B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m18E5BCFA5461B75371A4DB4699F58B1475EA38FF_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mA37D54F63F446397EF7403D2E47F9E498D2F845D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m48AEC387203A69552324E975B93C9AD12682A2F0_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisUniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_mEC93B1104225E1F169D30DCB92728D5B566C8306_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m1505D6B8C208CF150CCE48EBFCEB48455326175C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m90788E74415998C6339BE4925AFEC633123F3D3E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisVector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_mFC8283B175483A285DD50219680D3D407866131B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisVector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65_mC32E8C028DB1FC2E3E7F3F8F3189956CE2ABE370_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m4D3A633FA6A0EB506015A5739DF97EC8AB45D707_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m8FF6DB071540907741521B310F9665D58F16D683_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m33154784D5C9F542C931B2806494AD1443E8757B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mBEBE18F36496F5A8B9D865FB0B5AEE286734BE33_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_mC34C7EE0C657A7A2ECD59A49D3C4119D7B351C8E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__Insert_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mEE93EA250C3399D4F5A3779DB444AF83C9A2BB11_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisAnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA_m4A2AB39A47EED417B333C00BA23EEE40DDE7B0B7_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisAnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B_m088DA3C871A7B097F083ECD772CDA3024AE3980C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m81CC827C340D0C5C16F52071A5919E9E17A430C4_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_mE6EC1B2A8B3B1DFE4123CC2F8EE7CEED70EB3FBA_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisAudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21_mFD1168404FCCA86916CFD0BE959BD0FACF9E53E6_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_m843A34C763A5BF86E4EBC175C268B026659938FE_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisBoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1_mE23A3B18E5D65CEFE592563C6396D0B8D5B34ECB_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mB9E04DFA60220793747B0BADE85AE771411DE6DE_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_m31637056BEDD0A417EDA2B6EA51736A65990D0F4_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mBD0AEC628B67C57DAEA5BE0B927BBCC23D681BD7_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m2315763EAE562CFBE6768B790ACAB530EFED59DD_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_mDA777866F7C2C3DF5607C5E02203D0E4AD21F84C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m46A5FA0AE653560A66BD34B6645630720A80A1B4_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mF5EE60F1E53920FB056A472DA6DC917BCC631C3C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m1D8E51DA9EBE89279822E57495AAE0073B4624A4_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_m2BA86015892099D1C8AE441DEA6A5425188B848A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisCombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28_mD5A5BEC8636BF02D9C0FDD1EEFB018219EE9C585_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m83B902932E700A236743247F4F26F845510703A8_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_mB01967007BCD5ABE2F2E984A4A24F3A06D83971D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAC4F4CA3698520D49EE6BB44ABE2BBC0A37EE067_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mC9140CDF26AC80354547CC651B0E757E367A6F38_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m7C8FB45D060CA50EDD5B5C225EE4509E3F742D42_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA2EF7A58C4ACCA4433B7332867EB6A62C14C2819_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisDateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_mCD3930303417707F27BDFAD31BD924A5F15D4EDE_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m8E583065C3CD257589C4429EE98FE2B50D545FAC_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mCA9729A1813FE31DF596F39E419B8010BBEEB973_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mF5A23A42B5B90A3C220801FA122C97860E711C3D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEdge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_mE92E1E4C0F77069369E8297E9CD1C5E9C25D426E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m083A2C255147C4C62B2DB027B133172B9879D882_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m5814A5A9E71DE6ED93768D79458CA91590D61472_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m0837BCD6CAF72AE7C028EF64660DDF9B904DA1BC_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t266C0028DBD75C5E784224261B95300BB5315207_mDC34C5BDB1122109C1FEC52834EC470F6E4A8755_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688_mEAA797F07A1E914768AA64141564877EE2BD0856_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m0B16743AF30852F60FF04A33A7E1702385BEE2DF_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t3A99E3574F89658F38564648536BBF4389E095FC_m4B6866562E86766D6C3D5CEE8A1B2DFBA6F4A365_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mB455BAB142D1A043E32226158D446F3BAA7036CF_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD_mC1A1C9359CC9BE9BD90B3A6BC280D90AD4718069_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_mAD22F37B82FD1D452C75E5215CB763638B1181FE_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m6DF14DE5D43B6F6727D18E4B97B84159A32F2F0F_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF_mB571E505C950D4DF151D9156947E2D9E6F78FB95_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mA4F36AD2B0748741888E3AB54E767EF770459EFF_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m7488CF10C54CA7604BCB1CCB55DED55EA17257A6_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m2DDC1110EC7C8F311D3FE0E3106C65C08C64A279_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mCA5AB22A63514B3676E0227DB836648B041CBE3A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488_m9C387E8FB0DDE80F3629A389B68CFE1750DAACDD_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC_m2B4B1EA9A24C7F756C5C645847C83C5A5E537E6D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E_m589994B566785C7D70B3E9EEAB05C64D436D4495_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_mB7FDEA01B4C02F09A464645621C84CA612ECEBA6_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m61D547E71DB2B8DB94B8C060A09809419C801944_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E_m665EDA33D09B1CBA6A0E78F083E3D6F39E292C5C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m0BAC1876D618DFB2773F1E71CB53AAC94A56C288_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m1C35A2606967D2362CC7CED53B57950E9D9F5D97_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_m2559E1C80DFE45B9628CED45B38F83F0F7579DA8_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m073AE4694020E9D6EF25031F1B5A03F1CBD26492_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE6457E2A2BE2EE3F14218AE6531C96F30356C5E0_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mFCD14858BB3985147E82A080074A3C6A4D66D81B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6_mDD7D9664BB71A52579C384AC5777CA4669CDD902_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A_m00AC4F2D4C30FBBFAE4C5247D7EBBFDC1F61C3D6_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_mBF8B8C343DABC0A72786A6D9FB854C194B5D6ADF_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_mD6850227157197D715212668191BF67E55942C58_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_m499613758498F5CCB4589CE822038E64B1FA39D7_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisEventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7_m17B71394E52F701C4D5D337D63A69963105223D1_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisFileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_m761065A46D8299009424B135C281AD54E8897180_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m5965B9608DC4898C968E4E05ABF2796E3490AC38_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisFoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_mD83EB0BF32C5AB77ADDEE3828797A10A13942985_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisFrameRateColor_t12534EF70F7B693ED9FA0166B31144F5CD48AFBD_m531C9987041346E252D0B9A6A9A3FCBD075CD242_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisFrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC_m5F7556610813CC43030119F48A253E3CA5B1E5C2_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mAD2875DFFF3C67D3752B6E49D8E9B0E78F4787E3_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mD8DCAB2332A9BAF1ABE6176BF46254FB23E52662_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m5126FE9D06C758DADD2092A59A687FF91C8ED973_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m7359C5010E5CAF53A2AABB426A0B0AE4AD39CE70_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisGradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_mD482DA45D0355495FB8DAE26FD09146805EC7885_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisGuid_t_m9FDD0AC842503D6E29C8E53FB550982C2230CF0F_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisHResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_m8FE8D06CBD136E7D7A6911E551F0C1726EE53D27_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisHandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_mAD6D46418DF3CEB5FB573C9284C30D9069C5A683_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mFDA0A9185276BCF79A0A695E6E458771496533FD_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m49F0BDE5938059294C1227B99C92773DEEA415D0_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisIndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251_mB111F59E216F229B6FBE3E0B18B2EA5BBE55BE5B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39_m8C0DCA5DE23B46836722507D1EC044BCC02918B8_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47_mD1D7688ED465893401587F51C6E86E6B0807411E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB_m422C87A1088E46B8DAB8371E279DAE596A39C480_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6_mD8ED31FFD16F92D91FE94FD97F8CA173F9289504_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661_m0267C40A2A6B7E2F1E71B6B6D8EF1FC6D10968BC_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67_m222628D7583C15430363A7BC97657EDCDC7F0210_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m2FC551D5E554E22F790C6D8FBCE0916B20316832_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mA74AF4E123BCFF15EEA312570636C08F5880316D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m7FCC674B564F0B8C20DC59A4B5EE9CBD9F2C02AB_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7FE5131FCEEB55A0429D246C4AC726EE85232F71_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4FC592A9C1479783C221F1A0CCC037BB73E1F056_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisIntPtr_t_m7BAFE0B0F88A620FF81E179BCE3A57BACD0ED0E7_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_m71C4F489BB428187DA197516A4F2D39371F1B351_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01421A3FB2F89AEC3CF2DF7FBC708921953DEB81_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m51EDD22D64367274BA4B0ED594BB6D34508E90D7_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisJointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_m921BF123A19237A9BEA15BA0CFC08663228C1E2A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_mF890B24E4759F3926B7936494DA4765BB842EB8D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4_mC9C25653860E15CDCEBEEE894602812060556962_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mCD6433FDA32B9B1574DD1A04C556C577666F8A72_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26_mBA59CD16C7B776DB1D433ADB02059F0C03F5BE2E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mCDA3FBE262877EEF5D0FABB97F1834EF45F01E9C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m469D5CF79A08F150A62943BED71A8E21B25BE679_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187_mE3A1B2F85253F7D17D46B4DC86A95B5FB58BC019_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m5A46A4E4EF23FD4ADFB21D892EEE6ABF9B7CBC6B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m23E2930F9BDFFDD16DED991033268DBCE9DD3331_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_m35F5904F9D21684740EB028BEF63609986C5F4F4_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_mB06017A2BBD21EFB94EDFD0F5BEF3C3B1B274441_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mF2E103D39EC274030BB69C6CFFED255712EB5332_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_m2F551BA3C8BF8F9DD496C45B62F5E0F6717359FD_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m18D3FDD2AC51D4E5865CA5B88707340A6B8C098D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7_m4851FB9248F2F27CEC7956385CF623374ECC1ECD_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mD577753A217FC6AF0F89478404C301E523C6251A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3_mE01CD575F98FBF0D3F5083D6CB4AFA0B3B2105CF_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46_m623CAB301D07FE8AE992698D5291394039A31AB2_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2_m75E317A71B7AAF1E9C25599E9450278CFB105C40_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mF3864DDA726E3CE194601BDF91769AA45373C657_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822_mEEC63FFB620FBE9220BCD3AB8141C8A797B5A52F_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27_m3316A7E44209472FB8895A6F9908AECAD9B81846_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238_m493531D87F5883F39C20CF503BDEC18126429CBF_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF_mE826FA9E3FAEFCF04DE46975D80252CC87B97837_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mAEDCD5F9CDC7238903F102934677BB6694BBD9D4_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B_m09ED0EEFEE1201A26BCDFD88D5467B6E01B16F6D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m237ED9EAC7D04AB2E8255AA5747DD19C2EE98F80_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_m4C47CD2F47D5B2EB44B7E91F475100C8DA829DA4_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m657785C7F9593EC322747AD1567BA87494FF4410_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m647D9E49C5279A4E2EFF764FC1B3B787E97ECC12_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisKeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962_mCF49042570AD5E7E18F3D6758E018CE6E17513C6_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m1A723EBA2595AE3DD25A5258C8F01B93994FF381_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m88D31F15A9828B472A8FBD06CE6499A4B9AA5095_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_mA74E21A64605C11D5E0338AA796110A547859E34_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m860C1A2E5DF86D94436E5D41DAE951EC2AE4DCDD_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMatrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_m9520DD4CE65D2CCC5B24E072FE25B351AB9533D3_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMatrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_mC9F0FCB8EC8A50CDB09342140CD03E8AD242259C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE_m276A04DA59EA6081EB36E296CC48AD1042DD68C2_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F_mC390F048FD6434EADE2C2D785A34FE831AB9792E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C_m835F4CD404793FDA722480F5506294637DA28C5C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38_m39341CE378484FAB0C001D0802C23A8719765C9C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D_m4430AB7A66F2E2D90A71965C81616322D0672C42_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_m347F8027CCCB02BD89CF91F339D32B2CC1B56D95_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88_mC3425D9A2DE73ABF02641386FF9086965FD82125_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_m97F66EE771D491AB817653B7AD475525C02B276A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D_m94DA721AA1DBC1F16AB9CCAD0ABCB74D028917D6_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisMixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3_m86189513A9239CCD556E45888D8B1B70A3EC549F_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m041818B062D2A9874641ACC96D97BBDDFC518C52_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m54EAED961047BB74BC79DA8D9E4E89B367B387BD_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE_m39AE1B0F0E20E37B18003693B2FB7C1D94C9135E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mF8D46CC13EFBC4D2AE93483CCDD2E6B01CC689F9_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m14F79BE795265B3A064C920941AB20EF80837C55_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mE9F2B59D6000F54B4632CAA735F1A2A34139E037_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mD37AF2C226215331F3F2727C5BE0631695BB1AEF_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mD758990DE7C36C2680EC805CEBC1CBDED4286471_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mAF5BFF3E5EF25739091384771958CE9F7B36E8F5_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m6A076451AA3F77754FFF77EF535DEA8A9128740C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisPoint_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC_m90FCAE66322CBF401BBF8E49EDCD946121B0287E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisPoint_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_m5403D03C15ECAE0A20AAE6CBB5FC67A945A76CDA_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisPointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4_mA5D5CD246276E313BF408D26B0352EBD1958303C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisPointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7_m7DA5735D9694060DE34BEE85736120E45935B84B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_m674CA2107B9B9B0F6EA9CDFEC44180264A05458B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisQuaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A_m2F52A9294AE6DB74DC04287D639E4389407810DD_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisQuaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_mC4F1131F7BE20DB76860A9DAA5ACD54146A2C667_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisRayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_mB22D08523A5781BAE12A72EE3BD2CC1A3C3C0FB9_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_mA56650FF92BDAF14F5AF3CA26CF17FC893DF591B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m75CEE3863FA9C89E0277D0A6CBBCB4B78421F623_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m9C01ECC56E5FE6E9D33831551E5C34D6CA259B4D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m43976339EB0637792536F612CE3B0770985F072B_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m6ECC7721B4496EEDC51766A22FFE1135262E601D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisRect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_mB0FF1DB0D188E6FB99A48624774C0191DDEFDB16_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisRect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0_mE5014AB2DBC9A227BC42D7B9E77A41F93A5828E4_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m4FFDCA3412C2992784DBE5BF1803BAF71928C129_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mA7EB6B1CDAFE02C9A6FF3BB5BE4E2DE79C1E09A4_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisRuntimeObject_m84D4DC68A1BAC27655D58180AE6E26C0544F3D2A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mBAC38A7C35E4854032C95707A505B884BB39E874_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_m69D96BD6513828B7C0D73653D7D5F3E723998F25_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_m7449434ED8781E13C4A15A1E73672344C4A79A71_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_m44C8D392D13ADD197811FA20DE898E5C7F1C940C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m8A8858F5E13DEB3C5B2A24037554624E8E8B720C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_mD109D1A97E5233346D492F2EFD3BC84CDDFA32C3_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8C9703F6B9F64F8CD5706B3540D7F9A800AEC130_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSize_t4766FF009097CE547F699B69250246058DA664D9_mB9943ABCFEB353BD4D837D422D10EBB0BDDAD27E_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSize_tBE9F75FCA10276DC3998237A8906733B64FB75A2_m12542C4DEB17A36AD25C1F56ADCDF452A699D46C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mF77C146C40073AD87671021AC3432399B456D83F_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m6FCA1E20E280AC35D092ED564C8FBE90446DAB2D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_mB1972EC11FBE32288139D07072648D51CFAE4961_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_m8C79896BB464D7545504B3E3676004BF8FCDA0C3_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11_m270A4A3E498D6E5FDFAE36E233D0D21F959A6EB5_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790_m7182C2DC8460815645BE1645293F85648C7E7793_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m227A789F6D097430A3B9DABEE6D98494E27D12B3_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisSurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_mEC1CBCD13ECBBAD18B1CB5BB5A92F1DD52B94C44_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_m897215EDD442D0CC6A1B9DD97B6C5CEEE580F0E6_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mDB2D952C17AE03A662E161A05A975AFFD34B1D0A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m377AEF5F67BABFFD15D04DD9A60F517CA9BEF12F_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mCB1715609E2FC590C977E4E40386776AF7A4CF51_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mABAAD0D14AFB4DEE7DB6EB26D6CA8FEE08F78E03_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m4748D7A1229D7885D86E3C0289956634CD1918DD_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m1ECCF2C4515968D2AD52EEEBC15B91F14A3211D0_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1E3FB931A3C3E10DD605E8840C2EAA72C76E7B93_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_m10BE16A7486494F7151D0D2F4F821A022FF79319_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m851D07F28D87FFE49B60FD952C28F6ACD701253C_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mDA3BD26CE863007EBB9125B0B5F01EF95A47FCC2_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisTimeSpan_tD18885B289077804D4E82931E68E84181C072755_m4DBFC479A4084B5C3DD76EE2DC501AC207239C51_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisTouch_t806752C775BA713A91B6588A07CA98417CABC003_m96544F55E60FF0F0157C3409A86B26B57837E1EF_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisTypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_m6692FDE97C8032F715846B304791F7EF44C584C7_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mACE9035B6C95670543780D796FB5D07C68F9C668_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m99FFD7AB9C46DC02E029EB99C3DF21C1748C9983_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mA3238E6A75A95DB9649C765FBBF67509B30C8F34_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m914235EFA3494019D9B603F7DDF34C27FBC41C00_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m1B9EF7FC63165E4C71551F5CEE2D365C782B76D7_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m60DE3B4B58501B91F9E6E51B5696412405C7303D_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mE83E8853FB0AA3C1C84FB6D5F188A7DFBF7B58E0_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2BEE0E74F5ACF236586C3154499DA4DF4B764AD2_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mE3BE69A5C3B447CED0EE2C2C9DE34F3CB66C83F6_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisUniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_m91F0FE3757901389308EBB0200A9280E7308A2DC_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m8C08AA8A5C06DC5CC2E158EFD21864B76434F119_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_mF595E748911BE008D7D01AA58CCE9F05791C1C31_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisVector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_mDDDA69BF81C30883FB6F72735CA3A1BD08B586DF_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisVector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65_m2434C4F08DC7CB890508EFF8E10B818E69D9E986_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mA9E4A2694D9DADDC275D936C21AF6A0675659405_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mC1CCB9CFB1469B417A3C818CEBC21492089E2E7A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m9DCFFB6848DF1AA9BC6E62F9018AD5245E27A703_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m191595B96A5B85F3248B0C78DA9A1B0E37F24CAD_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m76BCDEC0C6DD3F60200FE513484FF5A10A9BC18A_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_mA19E1C4BB875ED58BB61451E5B0EB428F7A93576_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mFE35EEA664F4AFF1B9DA92B5656485E9655C4DCA_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__set_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m74A70583E6C9B4212D199F1B1E5FF06158C913BE_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m6FA62EF3B297F704B173C29EB9C7291923C7305F_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mEDDB6AD0455D2FE7629767F694EB858C9B47419E_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m59A6399E5C225A177C1BFE9D14C7CA7B8E8C6AD1_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m363F319E4B71656FF703E45FE2ED18785D4845BB_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisRuntimeObject_mB0DBA075A9D1EE03ADE844755C17088FDC73B1EF_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m3A6E3BB1A813660FBAC90C9449EB01DD71F2D723_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mBC3B07A056F903F7E4BB99FA2B49CF40F99620BC_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_m67A46DBACBE5D9CB5439A5DCBB29419AF19C1427_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mFAD4FE8AA0B35EBEBF30F9A6238D5B61B23C2570_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mAE525CA296A0754611697297083DF5AEC5B57EE3_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_mE70FB4DB92EB9ED9F676A2918F7E73F5102F9CD2_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m033E60DA563FE103067AD18F01568D21F240E342_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m646C34E93D397C6589F59F2976E362A2A10577E7_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m58E4E63CB9CF024CDBE7EBCDC6FBCD8615A48397_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m221DE39D3DB763C0993F6B3C819ADBB3034FAF6E_RuntimeMethod_var;
extern const RuntimeMethod* Array_Resize_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m87BCC22A024C8AA921401DE15731058BB09CA2F3_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_mE977E8184FACB199FAA1680EDC81FA03E0EFD79C_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mDE435F1812BCE8C047D40D94A7D2F31186E277F7_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisEdge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_m2A20CDFECF1CC8C59E9FF935357E82C075D823DB_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisEventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_mC2789C8811B94E69BC35B37B507F5A0A2F705B28_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m3C296B5213C6119826B0728824DA0AF1D7E92D67_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_m896036FFE9BA40DF1BD45035597939DC5C5454BD_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisMixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_m0ECE7C8BA0206390632822FBD4EED72FBE5A7FD8_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_mE964A6AD0CC6BC61353CDE1CEA0200EC30E524A1_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_m0EB276708BBB3E342D94176E7A91497E7FE8417A_RuntimeMethod_var;
extern const RuntimeMethod* Array_Reverse_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_mFC8F97354A2CC6D0C8C4EC8B4B0F3E27088D518C_RuntimeMethod_var;
extern const uint32_t Array_InternalArray__Insert_TisAnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B_mC30C59E4DB7E3316FD6B1D17F9230D77A645FAC3_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD8C12E9537ADB27575F599896B3D15D5BBA75D9B_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_m8EB4CF7355F8E43BFD8595BEE92C30F8887A73A8_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_mE8A5FB4AA5D2DB10483FB652B675D5CEBC300B2A_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisBoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1_m1D025D9015A8EADB44F77F010EC2FE585B21F02D_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE9F6E0D310E603EA96A953EF1DD6C68F39730C9C_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_m4AFED5E146200A6855FA67408DE761A45116DEF5_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m7F6A6780F368FE04054FC52535DA7A65F71EEAA9_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39C0E1BB2E4639B675A0B24E8F7C369E05F25685_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m306EA880334E146139F06691FA435F36589DDB63_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2E9DF91734F88A23FAB1941B8BEB5A251046DF63_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m6DA9330FD631DC94510393402C2F75A6CA557E00_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m750BF7E84A41DDD54D6C89E22CB616187405A81C_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mF502555E1F2540AED54DA5ACF2EFF7A2605E86AC_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisCombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28_mE633650608F60D8C4D2D4EB57C7A5B49297D67DA_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m1F2E7E0302C817DECFA7BB2827614250B76DA075_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_mBD2212C6C5C4AE60EA0795979993BA2A26CE4E8B_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mD4885C4B8D8E8E3097D1765E6A92ECF8F94AE5C7_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m07D073239E468F11F0A92423F8C45E08E1B6D21E_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m5B1BFF4BD07F7DE1A1F0AA346CAB42D57B22D1F2_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC1A470EC548C3EECA307AB7491C7C03ACBEB6295_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisDateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_mE5952C9504F7CA2EC544180B976850ECB6D58550_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m506AB5C14FB35E185FF78BED19CFF4B12D2D79E2_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mC3AAD833A34DF3BF2CD9916A94EEBF85F84571D8_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m1F8E0FD15BFA1B3337DB17BB8862E5E7FDE3E7BE_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m80D0262056AB6132787D162EC685AC57C2ABBF51_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m04DE7DE6F8761B7C1A649CB503F3FB80435FAF53_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m366CB0ADB17FEC25A6773D3155FF562FC4554B3D_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t266C0028DBD75C5E784224261B95300BB5315207_m9A0162CB40F27A97A135D483C9A2BAF3379410EC_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688_m80DE9C7640F0776B75568F662A120994A93848A1_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m640B87319C6D2DFCC1A5FB7DBD24015FD4EEB1A4_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t3A99E3574F89658F38564648536BBF4389E095FC_m861CDF7DB362DD2CD2F061CE9015A9289F0E6CC5_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mBC990E523C5FAC4D18228EE959A605F31DE2DBA9_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD_mF8870E87C412CBE073CEE17DEE66C6CCD50E41D6_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m5DD9AC37E36287E7452B482A18D7BB198974274A_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m59785DEDD32E06384722D716EB1122FA165DC164_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF_mDDBCD0A8E3093C871FCAB7C9BC2C0AD12FAF1B60_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mBF0F64B2BA1CEA72F9E93BF8D1CE8B760D30FE6E_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mFC47BD3B041BC417842362A130A22922CA9D5210_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m27402EA336921B905B28D9D5C41AC7DF1C599BCB_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mC746C2502A46D02D0916861AFD6E010266505986_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488_mB0FCD430D1AC8C3D90667F16572398C52EF49A25_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC_m8A50C95722718B77C3D5FAC7DBBB544423839A1E_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E_m936E9A10E648C9A9DC21B213BFF3AB6ACC932417_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m0E2EF8F3992A2D2193DA91A85BA4EB37ECE69F36_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m23A4919E880F5BC6B4A8E4E947CFC6865CE7BD54_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E_mE9ECF8FE382D6EAC560C9F4601EC9894B7C2D7DC_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m3700CDFD6D670C936C8F6CBEF92A9D1D1EB8F2C2_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m795F453B39D52A9A0CDFA4849B8EAB8B432A46C5_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_m884D02C12BDFF597EE9D9EBA4176EFDFB4C231A0_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_mEFD58605BD0E1293E1FF5BB462A7A2C8C594BFD6_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBFA6837DC3148B8268BBDC819CC2B30C9B98D344_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m658F98B159EDE3EB39E0C386903E16BA2002FF44_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6_m09A50E4F048BC03BA21D121C808206319F3DBA03_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A_m9C3BE935E6B070C35DB0E96BF270D856327FB50E_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_m0E4979F0AF86A1D91A92AD0002DA6071E8BF4349_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_m1B4EB755BEFF4B018B3BB4D11655BD5CB55A69D8_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisEventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7_m48A14FC6614A61DFABB1114898D296698713FDFE_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisFileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_mC7DDA5D55D98FD5FB2EE123D42400F5B231B2455_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mC0FD985A43489A501E702CA511A3859032A6CE9A_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisFoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_m2CD453F38CA167C631847FDCCEFA78B4DAE53D45_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisFrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC_mB3F8892B8FBC3C798668A4F727C59A991554DBB5_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m2256A0CF02F23CF41324F1D4CE6212928B4CAD7A_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m31EED9C8136B7BF065A07E548F83E3142FF324C8_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_mFCE80587C2394A8FEDD0A53D7AFB37F8A258C58C_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_mC67856AB0B5F4907AFDBDFB5A1C21F6017A117BB_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisGradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_m184988B0186FD32114AFFE0FFA6D1A52F75B39D1_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisGuid_t_m9FD816450B7080391B67F48C9E123DB561466EF2_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisHResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_m3C156AE08D59858A0283BEEF262A8749D5D8914C_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisHandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_m68031079D408D08ADF4AF87B3C03655EAC7C645E_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mAF811887FDC7242E77CBC4B52D8BCB59C50603F4_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_mB217196A981DF20A78F821A5676196C3E1EB852B_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisIndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251_m97803224AAFDEE1D4ABE86AF963C8D370BE7F5B0_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m2A1567A4D9745A9504F2AEC669BFD142769D8B63_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF074234522318193EE734BC9138E605CD9622EB5_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mAF387A609B4339D2D5B2A4E8863A5D517599D7B1_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m87666E66010673C970F94E1C303DE5E8FAE0C8C3_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4A9A88250BBA3249C36F53140B0F15D826777325_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisIntPtr_t_mEF1B13612BA6200225FA42B47519FD25D74B81B1_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisInteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_mE9D9D785677750CB2DA1C0D198ECF6BD26C6F2C2_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01B1B14297575D96EE9191074E5632BC0B51A914_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mF0B68FA4FB992EB82E6A755613ED52A537C1D7D7_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisJointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_mAD10C1CDA876833A05DE67042DF13294A8D5E997_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m01AE1836246A090293461E55415D13408A161066_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4_m59694BF544A142468E435385C14EE9784CF88E02_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mC6F9F51E5F4362482BD5714FA3D66C3022DB4A44_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26_m982908B8D1321B92E6706BA118232673F1FCB2CD_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m5AAE842F1F6C7FAE42D1DBE719201D49C6205C8A_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m0D2B5DDB8A92DC3C243626688F7C70607526A03D_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187_m0F74212D98315E1A363AD383E491301670DDD0AA_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m0AA4311C56D9888BBA00A9F3E6FE48C48E62C104_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_mF3E52E6B89CC10EED23F76C275DEEB462FB1BFE5_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_mAC671FDB5325B51248B56AC79F51CA059A5EC445_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_m35D547D9DE08BF517B74BF9C691B5E36B6B0CE21_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mFF6322E2EE3565369974ADC72D6091611498CEFB_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_m65D8913E3C1D28DD0A041C608E7AA6A292F183A7_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m8117EAB836397B8746CE03DC38BDBE3688F41A5A_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7_m768FB8BFF448EE65058A948794AFA9DE706019A2_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mE0E3F1583DBA4DAF18CC3300DE3C6916ED13EA65_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3_m0D57123466BA771F272D2C76D5FCD8F230E353A0_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46_mB6D8F83BF370324FE434040068C17E32E8244DCA_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2_m1D64FB5CD56942B749C26B7B39A2897A9AFB0467_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m3FECC49D66B6A51DACC6BD52FDD25846EFDAD881_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822_m0DC2FA2B3D58A1BB4D95E7F70CEB5CE98B2EE584_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27_mC1C99E3AE87AC84E2085EC562DE7A9F22F628C4F_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238_mE7710DF6E5823547D7DA6FFF63A58193A69DFD0B_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF_mE9E59CD0B33D6B243F118DE8C75CC5575C785B22_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1DC1D2CE7F27B6861D32667F792056810F14E6A2_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B_mB9B24A70CAF3D84C6DD5C9FA58B7E6030B256E62_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA0B4CB939AEBF8A592DA52B197572428F43EB20B_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_mD83E61B5572BB7E8087280B15BE4F7C9A2C21C98_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mCE8A2D462A033FB0B3BEC9AC0EA8A1AE4F880E8C_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m814415ACE0DDA6F9C3599F01F4BCCFF52739BEDF_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m43590D8BDBACC116DB476E0B9BEAB3AB720A40AF_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mA2AA8A2A95A3FEF70897324987502AD1FE53E6F0_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m080E94A7C7205907F8F346A15616AE2DF9FF433B_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m73B391F1899670C483DE38BB50FF2E693835DB1A_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisMatrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_m35628AE6A7530CF5E67752613BBB16AB2F0BD045_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisMatrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_m194AC3D772CAAAE60DE2D96CF32453D8629FE362_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisMixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88_m367632F4549B94B34ED771721FA1F1C2BCA32B80_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisMixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_mCC0C7E15A55D35636FB7B4C1AFB4ED1B57F4541C_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisMixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D_mBDFB09AF52AFFD2D5966DC5F8CF8F35B71652D4F_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisMixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3_m49C0216E65C8510757D1C9C8E17931F3F7A9D9D8_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_mE3564ADC7AFC168B70B3AEEBBDB30F1C791D4712_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m96A7775C85D62573DF6DE140C929E9CA0CA2F34C_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE_mD833B193AAFF79216D599A5BF0EB5BBD7420178C_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m88C1919D27F6B04E25EE64B03245DB35B5211870_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m71900E28A11269D320A0F0CBFBD9355A0451531C_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mC7B4F06520A4EEAFF045AF217D29F9A4AC243ED3_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mA9D5F62A1A9186A23DE150EDB18117D53D3742CC_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m194B92BDF48E9D276C6442C3C1BF073C821DBBC4_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m84D093DCACA5ECE7F072D319DD1210DFE9800023_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF5D0703796BCE5A44665238F9AB08E5BB84A4AC6_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisPoint_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC_m91D87ECA71D8932F37A51611F3627F17DFF19EBF_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisPoint_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_m8DD5E07A116C2DE3ED1FFB55C6B714ECAAE4AC56_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisPointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4_mDCB97B0826A4C2A766091E37BEB955B33DC1A194_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisPointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7_m3A4D75C8C42ED2091BE1FC3739138890A9CAD5A5_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_m1948E7097EB6B4EA248736E3FC2C196542E09CED_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisQuaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A_m55DC483C759E7EA51CC47DC89D8D1C485FDDEAF0_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisQuaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_m37EBBBAB3721A607752BD7DB64B166FDB6AC3DAC_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisRayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_m10BFC1DD54BB62E88E529FF8211A1906469C5BE9_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_mE4AFCA29808B499F97910F7FDC966BE5D9551C18_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m308D20824E0EEE9179C05DCA5121423EDB625B14_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m047B94B06ED6514328636242E434382F92CDFE70_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m7E00C777837180B0E0E0E7E2E008D0239C31BBB5_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m0EA2E0CEAB796505E0618FD2931EEE5BFF7E5507_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisRect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_mBDAC8697C665E2F56EE66F4249A1656C43890C23_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisRect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0_m5A6A9924A5E66E67AACE5E684C882976B3FDB463_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m8957E8B1D262157330910E34C749D6A0FBF12005_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mFD51B3BE1ADDD9FD4C1B2EB187FC778A6208CD2E_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisRuntimeObject_m2621683E821AC4AE9C55CD7C1DA21EBCC57807D1_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m0FA77EEA9554B1BFC19FF42D1F5855E48A0D0576_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_m9684F21459B486374A9EDC147072EE89BA784625_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_m4DE8DD68662123D5464249FD974871C0A7C2DB83_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_mEEACCCF9FB82D93E9A44A791D94EE07786AC3D79_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m59902BE357936A7D2C61F26C3E99E9FFB4515D8A_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_m74E18C2F6DF0494CD9FB51E854E4F00C9E7F6D2A_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mAB37BBB9EF7D4C308D99207D279EC86DA722CA7C_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSize_t4766FF009097CE547F699B69250246058DA664D9_m78388965EF938E8AD7C2FD0F2D69C76CAFE387AE_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSize_tBE9F75FCA10276DC3998237A8906733B64FB75A2_m58738072DC6A9F50C7B358FFAD9B698F92CE7E3B_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mA7BC4F9F207588AB3833593BCEAAA3AF827EC496_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m19FA73D72D42E6AC04D0BE3ED2E272046A792E49_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_m8B9456345FBFC805FC8504CA72DB6ED8531D49CA_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_m83C3C32ED09DC632A2DBCC70161ABF8C902D2ECD_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11_mB448B899E0CC7A592F28EF2DD14B3077DCB6B016_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790_mDF08CEB9248B49B110F476D6DF2B8CA23F75CB13_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m8A62CF16FEBC3BDA1D36E4B4FBE4BC40A55DCF83_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisSurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_mF80B437879D375253A37A95DD1E03BAE1BD556AD_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB8D59B73D2EA88BECEF52DEF1FD5F3460E460150_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mB4ED3B109F5C7884C62CDBBF1F5C44786BF5D8AC_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_mFE26E8EA4C9671C4DFB9DBFB8A3CE928D66CC46D_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mC0137D127933CE8BD34F125A7DBE998123F98EB3_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mAAF13F4BC51D9C58DD9B74284E6269389937092F_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m3A2AB3FB93CFE99A986CFDA6D00F37E044A8C573_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_mCAFFB20C76EFFF6819170E1124DAB998D50387DB_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m267C106765C42662477BE62A7981DEF7141F8BEC_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_mE08EC7AEEBFE083BA46ED3F087D36695FDB3B9B2_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m98D7653CFEB82E7CF33FFD863491C990BE846302_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mF4A9D9A3E13AE916760E1657B1D4660B6A07AEBB_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisTimeSpan_tD18885B289077804D4E82931E68E84181C072755_m67950908F11BD50C2FDF345075A01E85F921EC53_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisTouch_t806752C775BA713A91B6588A07CA98417CABC003_m4252D084ADE5907EFD1EFDA867679C687B2D4CEE_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisTypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_m836C90C786D993728CE05DDD980F21AFC2626946_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m67D7F1E3AF7644990858C7427636DFF846CEF0B3_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m2C25B046CAD3442CA5EB374C6FF6A77DDB905901_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m799069358A4B82CF630AF60AC897C6780872B1B3_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mD3EC6C124E65BE8F0737D39BC922938073D5BDC6_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mA151CCECC244AE62A4B8B19078AEDE5BFD0717DC_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mA2F7CF78455B07E081841B7C94161A3ABA89817B_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m18E5BCFA5461B75371A4DB4699F58B1475EA38FF_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mA37D54F63F446397EF7403D2E47F9E498D2F845D_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m48AEC387203A69552324E975B93C9AD12682A2F0_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisUniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_mEC93B1104225E1F169D30DCB92728D5B566C8306_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m1505D6B8C208CF150CCE48EBFCEB48455326175C_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m90788E74415998C6339BE4925AFEC633123F3D3E_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisVector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_mFC8283B175483A285DD50219680D3D407866131B_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisVector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65_mC32E8C028DB1FC2E3E7F3F8F3189956CE2ABE370_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m4D3A633FA6A0EB506015A5739DF97EC8AB45D707_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m8FF6DB071540907741521B310F9665D58F16D683_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m33154784D5C9F542C931B2806494AD1443E8757B_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mBEBE18F36496F5A8B9D865FB0B5AEE286734BE33_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_mC34C7EE0C657A7A2ECD59A49D3C4119D7B351C8E_MetadataUsageId;
extern const uint32_t Array_InternalArray__Insert_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mEE93EA250C3399D4F5A3779DB444AF83C9A2BB11_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisAnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA_m4A2AB39A47EED417B333C00BA23EEE40DDE7B0B7_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisAnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B_m088DA3C871A7B097F083ECD772CDA3024AE3980C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m81CC827C340D0C5C16F52071A5919E9E17A430C4_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_mE6EC1B2A8B3B1DFE4123CC2F8EE7CEED70EB3FBA_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisAudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21_mFD1168404FCCA86916CFD0BE959BD0FACF9E53E6_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_m843A34C763A5BF86E4EBC175C268B026659938FE_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisBoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1_mE23A3B18E5D65CEFE592563C6396D0B8D5B34ECB_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mB9E04DFA60220793747B0BADE85AE771411DE6DE_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_m31637056BEDD0A417EDA2B6EA51736A65990D0F4_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mBD0AEC628B67C57DAEA5BE0B927BBCC23D681BD7_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m2315763EAE562CFBE6768B790ACAB530EFED59DD_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_mDA777866F7C2C3DF5607C5E02203D0E4AD21F84C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m46A5FA0AE653560A66BD34B6645630720A80A1B4_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mF5EE60F1E53920FB056A472DA6DC917BCC631C3C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m1D8E51DA9EBE89279822E57495AAE0073B4624A4_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_m2BA86015892099D1C8AE441DEA6A5425188B848A_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisCombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28_mD5A5BEC8636BF02D9C0FDD1EEFB018219EE9C585_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m83B902932E700A236743247F4F26F845510703A8_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_mB01967007BCD5ABE2F2E984A4A24F3A06D83971D_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAC4F4CA3698520D49EE6BB44ABE2BBC0A37EE067_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mC9140CDF26AC80354547CC651B0E757E367A6F38_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m7C8FB45D060CA50EDD5B5C225EE4509E3F742D42_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA2EF7A58C4ACCA4433B7332867EB6A62C14C2819_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisDateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_mCD3930303417707F27BDFAD31BD924A5F15D4EDE_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m8E583065C3CD257589C4429EE98FE2B50D545FAC_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mCA9729A1813FE31DF596F39E419B8010BBEEB973_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mF5A23A42B5B90A3C220801FA122C97860E711C3D_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEdge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_mE92E1E4C0F77069369E8297E9CD1C5E9C25D426E_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m083A2C255147C4C62B2DB027B133172B9879D882_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m5814A5A9E71DE6ED93768D79458CA91590D61472_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m0837BCD6CAF72AE7C028EF64660DDF9B904DA1BC_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t266C0028DBD75C5E784224261B95300BB5315207_mDC34C5BDB1122109C1FEC52834EC470F6E4A8755_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688_mEAA797F07A1E914768AA64141564877EE2BD0856_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m0B16743AF30852F60FF04A33A7E1702385BEE2DF_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t3A99E3574F89658F38564648536BBF4389E095FC_m4B6866562E86766D6C3D5CEE8A1B2DFBA6F4A365_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mB455BAB142D1A043E32226158D446F3BAA7036CF_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD_mC1A1C9359CC9BE9BD90B3A6BC280D90AD4718069_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_mAD22F37B82FD1D452C75E5215CB763638B1181FE_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m6DF14DE5D43B6F6727D18E4B97B84159A32F2F0F_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF_mB571E505C950D4DF151D9156947E2D9E6F78FB95_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mA4F36AD2B0748741888E3AB54E767EF770459EFF_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m7488CF10C54CA7604BCB1CCB55DED55EA17257A6_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m2DDC1110EC7C8F311D3FE0E3106C65C08C64A279_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mCA5AB22A63514B3676E0227DB836648B041CBE3A_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488_m9C387E8FB0DDE80F3629A389B68CFE1750DAACDD_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC_m2B4B1EA9A24C7F756C5C645847C83C5A5E537E6D_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E_m589994B566785C7D70B3E9EEAB05C64D436D4495_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_mB7FDEA01B4C02F09A464645621C84CA612ECEBA6_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m61D547E71DB2B8DB94B8C060A09809419C801944_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E_m665EDA33D09B1CBA6A0E78F083E3D6F39E292C5C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m0BAC1876D618DFB2773F1E71CB53AAC94A56C288_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m1C35A2606967D2362CC7CED53B57950E9D9F5D97_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_m2559E1C80DFE45B9628CED45B38F83F0F7579DA8_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m073AE4694020E9D6EF25031F1B5A03F1CBD26492_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE6457E2A2BE2EE3F14218AE6531C96F30356C5E0_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mFCD14858BB3985147E82A080074A3C6A4D66D81B_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6_mDD7D9664BB71A52579C384AC5777CA4669CDD902_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A_m00AC4F2D4C30FBBFAE4C5247D7EBBFDC1F61C3D6_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_mBF8B8C343DABC0A72786A6D9FB854C194B5D6ADF_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_mD6850227157197D715212668191BF67E55942C58_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_m499613758498F5CCB4589CE822038E64B1FA39D7_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisEventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7_m17B71394E52F701C4D5D337D63A69963105223D1_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisFileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_m761065A46D8299009424B135C281AD54E8897180_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m5965B9608DC4898C968E4E05ABF2796E3490AC38_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisFoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_mD83EB0BF32C5AB77ADDEE3828797A10A13942985_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisFrameRateColor_t12534EF70F7B693ED9FA0166B31144F5CD48AFBD_m531C9987041346E252D0B9A6A9A3FCBD075CD242_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisFrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC_m5F7556610813CC43030119F48A253E3CA5B1E5C2_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mAD2875DFFF3C67D3752B6E49D8E9B0E78F4787E3_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mD8DCAB2332A9BAF1ABE6176BF46254FB23E52662_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m5126FE9D06C758DADD2092A59A687FF91C8ED973_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m7359C5010E5CAF53A2AABB426A0B0AE4AD39CE70_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisGradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_mD482DA45D0355495FB8DAE26FD09146805EC7885_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisGuid_t_m9FDD0AC842503D6E29C8E53FB550982C2230CF0F_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisHResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_m8FE8D06CBD136E7D7A6911E551F0C1726EE53D27_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisHandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_mAD6D46418DF3CEB5FB573C9284C30D9069C5A683_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mFDA0A9185276BCF79A0A695E6E458771496533FD_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m49F0BDE5938059294C1227B99C92773DEEA415D0_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisIndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251_mB111F59E216F229B6FBE3E0B18B2EA5BBE55BE5B_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39_m8C0DCA5DE23B46836722507D1EC044BCC02918B8_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47_mD1D7688ED465893401587F51C6E86E6B0807411E_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB_m422C87A1088E46B8DAB8371E279DAE596A39C480_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6_mD8ED31FFD16F92D91FE94FD97F8CA173F9289504_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661_m0267C40A2A6B7E2F1E71B6B6D8EF1FC6D10968BC_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67_m222628D7583C15430363A7BC97657EDCDC7F0210_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m2FC551D5E554E22F790C6D8FBCE0916B20316832_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mA74AF4E123BCFF15EEA312570636C08F5880316D_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m7FCC674B564F0B8C20DC59A4B5EE9CBD9F2C02AB_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7FE5131FCEEB55A0429D246C4AC726EE85232F71_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4FC592A9C1479783C221F1A0CCC037BB73E1F056_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisIntPtr_t_m7BAFE0B0F88A620FF81E179BCE3A57BACD0ED0E7_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_m71C4F489BB428187DA197516A4F2D39371F1B351_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01421A3FB2F89AEC3CF2DF7FBC708921953DEB81_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m51EDD22D64367274BA4B0ED594BB6D34508E90D7_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisJointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_m921BF123A19237A9BEA15BA0CFC08663228C1E2A_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_mF890B24E4759F3926B7936494DA4765BB842EB8D_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4_mC9C25653860E15CDCEBEEE894602812060556962_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mCD6433FDA32B9B1574DD1A04C556C577666F8A72_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26_mBA59CD16C7B776DB1D433ADB02059F0C03F5BE2E_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mCDA3FBE262877EEF5D0FABB97F1834EF45F01E9C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m469D5CF79A08F150A62943BED71A8E21B25BE679_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187_mE3A1B2F85253F7D17D46B4DC86A95B5FB58BC019_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m5A46A4E4EF23FD4ADFB21D892EEE6ABF9B7CBC6B_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m23E2930F9BDFFDD16DED991033268DBCE9DD3331_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_m35F5904F9D21684740EB028BEF63609986C5F4F4_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_mB06017A2BBD21EFB94EDFD0F5BEF3C3B1B274441_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mF2E103D39EC274030BB69C6CFFED255712EB5332_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_m2F551BA3C8BF8F9DD496C45B62F5E0F6717359FD_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m18D3FDD2AC51D4E5865CA5B88707340A6B8C098D_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7_m4851FB9248F2F27CEC7956385CF623374ECC1ECD_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mD577753A217FC6AF0F89478404C301E523C6251A_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3_mE01CD575F98FBF0D3F5083D6CB4AFA0B3B2105CF_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46_m623CAB301D07FE8AE992698D5291394039A31AB2_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2_m75E317A71B7AAF1E9C25599E9450278CFB105C40_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mF3864DDA726E3CE194601BDF91769AA45373C657_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822_mEEC63FFB620FBE9220BCD3AB8141C8A797B5A52F_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27_m3316A7E44209472FB8895A6F9908AECAD9B81846_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238_m493531D87F5883F39C20CF503BDEC18126429CBF_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF_mE826FA9E3FAEFCF04DE46975D80252CC87B97837_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mAEDCD5F9CDC7238903F102934677BB6694BBD9D4_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B_m09ED0EEFEE1201A26BCDFD88D5467B6E01B16F6D_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m237ED9EAC7D04AB2E8255AA5747DD19C2EE98F80_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_m4C47CD2F47D5B2EB44B7E91F475100C8DA829DA4_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m657785C7F9593EC322747AD1567BA87494FF4410_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m647D9E49C5279A4E2EFF764FC1B3B787E97ECC12_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisKeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962_mCF49042570AD5E7E18F3D6758E018CE6E17513C6_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m1A723EBA2595AE3DD25A5258C8F01B93994FF381_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m88D31F15A9828B472A8FBD06CE6499A4B9AA5095_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_mA74E21A64605C11D5E0338AA796110A547859E34_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m860C1A2E5DF86D94436E5D41DAE951EC2AE4DCDD_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMatrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_m9520DD4CE65D2CCC5B24E072FE25B351AB9533D3_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMatrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_mC9F0FCB8EC8A50CDB09342140CD03E8AD242259C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE_m276A04DA59EA6081EB36E296CC48AD1042DD68C2_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F_mC390F048FD6434EADE2C2D785A34FE831AB9792E_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C_m835F4CD404793FDA722480F5506294637DA28C5C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38_m39341CE378484FAB0C001D0802C23A8719765C9C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D_m4430AB7A66F2E2D90A71965C81616322D0672C42_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_m347F8027CCCB02BD89CF91F339D32B2CC1B56D95_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88_mC3425D9A2DE73ABF02641386FF9086965FD82125_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_m97F66EE771D491AB817653B7AD475525C02B276A_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D_m94DA721AA1DBC1F16AB9CCAD0ABCB74D028917D6_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisMixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3_m86189513A9239CCD556E45888D8B1B70A3EC549F_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m041818B062D2A9874641ACC96D97BBDDFC518C52_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m54EAED961047BB74BC79DA8D9E4E89B367B387BD_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE_m39AE1B0F0E20E37B18003693B2FB7C1D94C9135E_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mF8D46CC13EFBC4D2AE93483CCDD2E6B01CC689F9_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m14F79BE795265B3A064C920941AB20EF80837C55_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mE9F2B59D6000F54B4632CAA735F1A2A34139E037_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mD37AF2C226215331F3F2727C5BE0631695BB1AEF_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mD758990DE7C36C2680EC805CEBC1CBDED4286471_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mAF5BFF3E5EF25739091384771958CE9F7B36E8F5_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m6A076451AA3F77754FFF77EF535DEA8A9128740C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisPoint_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC_m90FCAE66322CBF401BBF8E49EDCD946121B0287E_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisPoint_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_m5403D03C15ECAE0A20AAE6CBB5FC67A945A76CDA_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisPointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4_mA5D5CD246276E313BF408D26B0352EBD1958303C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisPointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7_m7DA5735D9694060DE34BEE85736120E45935B84B_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_m674CA2107B9B9B0F6EA9CDFEC44180264A05458B_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisQuaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A_m2F52A9294AE6DB74DC04287D639E4389407810DD_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisQuaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_mC4F1131F7BE20DB76860A9DAA5ACD54146A2C667_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisRayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_mB22D08523A5781BAE12A72EE3BD2CC1A3C3C0FB9_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_mA56650FF92BDAF14F5AF3CA26CF17FC893DF591B_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m75CEE3863FA9C89E0277D0A6CBBCB4B78421F623_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m9C01ECC56E5FE6E9D33831551E5C34D6CA259B4D_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m43976339EB0637792536F612CE3B0770985F072B_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m6ECC7721B4496EEDC51766A22FFE1135262E601D_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisRect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_mB0FF1DB0D188E6FB99A48624774C0191DDEFDB16_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisRect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0_mE5014AB2DBC9A227BC42D7B9E77A41F93A5828E4_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m4FFDCA3412C2992784DBE5BF1803BAF71928C129_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mA7EB6B1CDAFE02C9A6FF3BB5BE4E2DE79C1E09A4_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisRuntimeObject_m84D4DC68A1BAC27655D58180AE6E26C0544F3D2A_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mBAC38A7C35E4854032C95707A505B884BB39E874_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_m69D96BD6513828B7C0D73653D7D5F3E723998F25_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_m7449434ED8781E13C4A15A1E73672344C4A79A71_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_m44C8D392D13ADD197811FA20DE898E5C7F1C940C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m8A8858F5E13DEB3C5B2A24037554624E8E8B720C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_mD109D1A97E5233346D492F2EFD3BC84CDDFA32C3_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8C9703F6B9F64F8CD5706B3540D7F9A800AEC130_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSize_t4766FF009097CE547F699B69250246058DA664D9_mB9943ABCFEB353BD4D837D422D10EBB0BDDAD27E_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSize_tBE9F75FCA10276DC3998237A8906733B64FB75A2_m12542C4DEB17A36AD25C1F56ADCDF452A699D46C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mF77C146C40073AD87671021AC3432399B456D83F_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m6FCA1E20E280AC35D092ED564C8FBE90446DAB2D_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_mB1972EC11FBE32288139D07072648D51CFAE4961_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_m8C79896BB464D7545504B3E3676004BF8FCDA0C3_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11_m270A4A3E498D6E5FDFAE36E233D0D21F959A6EB5_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790_m7182C2DC8460815645BE1645293F85648C7E7793_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m227A789F6D097430A3B9DABEE6D98494E27D12B3_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisSurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_mEC1CBCD13ECBBAD18B1CB5BB5A92F1DD52B94C44_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_m897215EDD442D0CC6A1B9DD97B6C5CEEE580F0E6_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mDB2D952C17AE03A662E161A05A975AFFD34B1D0A_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m377AEF5F67BABFFD15D04DD9A60F517CA9BEF12F_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mCB1715609E2FC590C977E4E40386776AF7A4CF51_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mABAAD0D14AFB4DEE7DB6EB26D6CA8FEE08F78E03_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m4748D7A1229D7885D86E3C0289956634CD1918DD_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m1ECCF2C4515968D2AD52EEEBC15B91F14A3211D0_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1E3FB931A3C3E10DD605E8840C2EAA72C76E7B93_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_m10BE16A7486494F7151D0D2F4F821A022FF79319_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m851D07F28D87FFE49B60FD952C28F6ACD701253C_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mDA3BD26CE863007EBB9125B0B5F01EF95A47FCC2_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisTimeSpan_tD18885B289077804D4E82931E68E84181C072755_m4DBFC479A4084B5C3DD76EE2DC501AC207239C51_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisTouch_t806752C775BA713A91B6588A07CA98417CABC003_m96544F55E60FF0F0157C3409A86B26B57837E1EF_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisTypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_m6692FDE97C8032F715846B304791F7EF44C584C7_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mACE9035B6C95670543780D796FB5D07C68F9C668_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m99FFD7AB9C46DC02E029EB99C3DF21C1748C9983_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mA3238E6A75A95DB9649C765FBBF67509B30C8F34_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m914235EFA3494019D9B603F7DDF34C27FBC41C00_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m1B9EF7FC63165E4C71551F5CEE2D365C782B76D7_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m60DE3B4B58501B91F9E6E51B5696412405C7303D_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mE83E8853FB0AA3C1C84FB6D5F188A7DFBF7B58E0_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2BEE0E74F5ACF236586C3154499DA4DF4B764AD2_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mE3BE69A5C3B447CED0EE2C2C9DE34F3CB66C83F6_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisUniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_m91F0FE3757901389308EBB0200A9280E7308A2DC_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m8C08AA8A5C06DC5CC2E158EFD21864B76434F119_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_mF595E748911BE008D7D01AA58CCE9F05791C1C31_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisVector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_mDDDA69BF81C30883FB6F72735CA3A1BD08B586DF_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisVector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65_m2434C4F08DC7CB890508EFF8E10B818E69D9E986_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mA9E4A2694D9DADDC275D936C21AF6A0675659405_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mC1CCB9CFB1469B417A3C818CEBC21492089E2E7A_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m9DCFFB6848DF1AA9BC6E62F9018AD5245E27A703_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m191595B96A5B85F3248B0C78DA9A1B0E37F24CAD_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m76BCDEC0C6DD3F60200FE513484FF5A10A9BC18A_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_mA19E1C4BB875ED58BB61451E5B0EB428F7A93576_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mFE35EEA664F4AFF1B9DA92B5656485E9655C4DCA_MetadataUsageId;
extern const uint32_t Array_InternalArray__set_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m74A70583E6C9B4212D199F1B1E5FF06158C913BE_MetadataUsageId;
extern const uint32_t Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_MetadataUsageId;
extern const uint32_t Array_Resize_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m6FA62EF3B297F704B173C29EB9C7291923C7305F_MetadataUsageId;
extern const uint32_t Array_Resize_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mEDDB6AD0455D2FE7629767F694EB858C9B47419E_MetadataUsageId;
extern const uint32_t Array_Resize_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m59A6399E5C225A177C1BFE9D14C7CA7B8E8C6AD1_MetadataUsageId;
extern const uint32_t Array_Resize_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m363F319E4B71656FF703E45FE2ED18785D4845BB_MetadataUsageId;
extern const uint32_t Array_Resize_TisRuntimeObject_mB0DBA075A9D1EE03ADE844755C17088FDC73B1EF_MetadataUsageId;
extern const uint32_t Array_Resize_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m3A6E3BB1A813660FBAC90C9449EB01DD71F2D723_MetadataUsageId;
extern const uint32_t Array_Resize_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mBC3B07A056F903F7E4BB99FA2B49CF40F99620BC_MetadataUsageId;
extern const uint32_t Array_Resize_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_m67A46DBACBE5D9CB5439A5DCBB29419AF19C1427_MetadataUsageId;
extern const uint32_t Array_Resize_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mFAD4FE8AA0B35EBEBF30F9A6238D5B61B23C2570_MetadataUsageId;
extern const uint32_t Array_Resize_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mAE525CA296A0754611697297083DF5AEC5B57EE3_MetadataUsageId;
extern const uint32_t Array_Resize_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_mE70FB4DB92EB9ED9F676A2918F7E73F5102F9CD2_MetadataUsageId;
extern const uint32_t Array_Resize_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m033E60DA563FE103067AD18F01568D21F240E342_MetadataUsageId;
extern const uint32_t Array_Resize_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m646C34E93D397C6589F59F2976E362A2A10577E7_MetadataUsageId;
extern const uint32_t Array_Resize_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m58E4E63CB9CF024CDBE7EBCDC6FBCD8615A48397_MetadataUsageId;
extern const uint32_t Array_Resize_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m221DE39D3DB763C0993F6B3C819ADBB3034FAF6E_MetadataUsageId;
extern const uint32_t Array_Resize_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m87BCC22A024C8AA921401DE15731058BB09CA2F3_MetadataUsageId;
extern const uint32_t Array_Reverse_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_mE977E8184FACB199FAA1680EDC81FA03E0EFD79C_MetadataUsageId;
extern const uint32_t Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_MetadataUsageId;
extern const uint32_t Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_MetadataUsageId;
extern const uint32_t Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_MetadataUsageId;
extern const uint32_t Array_Reverse_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mDE435F1812BCE8C047D40D94A7D2F31186E277F7_MetadataUsageId;
extern const uint32_t Array_Reverse_TisEdge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_m2A20CDFECF1CC8C59E9FF935357E82C075D823DB_MetadataUsageId;
extern const uint32_t Array_Reverse_TisEventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_mC2789C8811B94E69BC35B37B507F5A0A2F705B28_MetadataUsageId;
extern const uint32_t Array_Reverse_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m3C296B5213C6119826B0728824DA0AF1D7E92D67_MetadataUsageId;
extern const uint32_t Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_MetadataUsageId;
extern const uint32_t Array_Reverse_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_m896036FFE9BA40DF1BD45035597939DC5C5454BD_MetadataUsageId;
extern const uint32_t Array_Reverse_TisMixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_m0ECE7C8BA0206390632822FBD4EED72FBE5A7FD8_MetadataUsageId;
extern const uint32_t Array_Reverse_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_mE964A6AD0CC6BC61353CDE1CEA0200EC30E524A1_MetadataUsageId;
extern const uint32_t Array_Reverse_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_m0EB276708BBB3E342D94176E7A91497E7FE8417A_MetadataUsageId;
extern const uint32_t Array_Reverse_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_mFC8F97354A2CC6D0C8C4EC8B4B0F3E27088D518C_MetadataUsageId;
struct AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C_marshaled_com;
struct Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com;
struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_com;
struct PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_marshaled_pinvoke;
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_com;
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ;
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ;
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ;
struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_com;
struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_pinvoke;
struct EventHandlerEntryU5BU5D_t7D3B422539E522484BD470A429D090B18C7A492E;
struct EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84;
struct MixedRealityInputActionU5BU5D_t4FDC16B5B905261A6B1A4DDF75D4EF0296DD55E7;
struct SceneInfoU5BU5D_t53B51DB3A2A4B576992AFD774092D1A6010EC417;
struct BlocksAndRendererU5BU5D_t121D8370D0807540C909B58C3122EDDA9DA622E1;
struct ShaderPropertiesU5BU5D_t14DC9156D548ED23B85310557E2F9BC6AF312E69;
struct ThemeDefinitionU5BU5D_t2F4682E8423138C6516DD064FC40EBB907755A97;
struct InspectorPropertySettingU5BU5D_tAED0D945613EDA515065B5517B8062DF00981FF1;
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F;
struct KeyValuePair_2U5BU5D_t2056CEA4067E5A5D956F384D695B7295B83254B0;
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A;
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
struct SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0;
struct MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B;
struct TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604;
struct TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D;
struct TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9;
struct TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847;
struct UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505;
struct TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09;
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983;
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6;
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66;
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
struct Il2CppArrayBounds;
#ifndef RUNTIMEARRAY_H
#define RUNTIMEARRAY_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Array
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEARRAY_H
#ifndef EXCEPTION_T_H
#define EXCEPTION_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((&____className_1), value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((&____message_2), value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((&____data_3), value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((&____innerException_4), value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((&____helpURL_5), value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((&____stackTrace_6), value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((&____stackTraceString_7), value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_8), value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((&____dynamicMethods_10), value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((&____source_12), value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((&____safeSerializationManager_13), value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((&___captured_traces_14), value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((&___native_trace_ips_15), value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((&___s_EDILock_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
intptr_t* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
intptr_t* ___native_trace_ips_15;
};
#endif // EXCEPTION_T_H
#ifndef STRING_T_H
#define STRING_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((&___Empty_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRING_T_H
#ifndef VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H
#define VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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
{
};
#endif // VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H
#ifndef XPATHNODE_TC207ED6C653E80055FE6C5ECD3E6137A326659A0_H
#define XPATHNODE_TC207ED6C653E80055FE6C5ECD3E6137A326659A0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// MS.Internal.Xml.Cache.XPathNode
struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0
{
public:
// MS.Internal.Xml.Cache.XPathNodeInfoAtom MS.Internal.Xml.Cache.XPathNode::info
XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * ___info_0;
// System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxSibling
uint16_t ___idxSibling_1;
// System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxParent
uint16_t ___idxParent_2;
// System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxSimilar
uint16_t ___idxSimilar_3;
// System.UInt16 MS.Internal.Xml.Cache.XPathNode::posOffset
uint16_t ___posOffset_4;
// System.UInt32 MS.Internal.Xml.Cache.XPathNode::props
uint32_t ___props_5;
// System.String MS.Internal.Xml.Cache.XPathNode::value
String_t* ___value_6;
public:
inline static int32_t get_offset_of_info_0() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___info_0)); }
inline XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * get_info_0() const { return ___info_0; }
inline XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 ** get_address_of_info_0() { return &___info_0; }
inline void set_info_0(XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * value)
{
___info_0 = value;
Il2CppCodeGenWriteBarrier((&___info_0), value);
}
inline static int32_t get_offset_of_idxSibling_1() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___idxSibling_1)); }
inline uint16_t get_idxSibling_1() const { return ___idxSibling_1; }
inline uint16_t* get_address_of_idxSibling_1() { return &___idxSibling_1; }
inline void set_idxSibling_1(uint16_t value)
{
___idxSibling_1 = value;
}
inline static int32_t get_offset_of_idxParent_2() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___idxParent_2)); }
inline uint16_t get_idxParent_2() const { return ___idxParent_2; }
inline uint16_t* get_address_of_idxParent_2() { return &___idxParent_2; }
inline void set_idxParent_2(uint16_t value)
{
___idxParent_2 = value;
}
inline static int32_t get_offset_of_idxSimilar_3() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___idxSimilar_3)); }
inline uint16_t get_idxSimilar_3() const { return ___idxSimilar_3; }
inline uint16_t* get_address_of_idxSimilar_3() { return &___idxSimilar_3; }
inline void set_idxSimilar_3(uint16_t value)
{
___idxSimilar_3 = value;
}
inline static int32_t get_offset_of_posOffset_4() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___posOffset_4)); }
inline uint16_t get_posOffset_4() const { return ___posOffset_4; }
inline uint16_t* get_address_of_posOffset_4() { return &___posOffset_4; }
inline void set_posOffset_4(uint16_t value)
{
___posOffset_4 = value;
}
inline static int32_t get_offset_of_props_5() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___props_5)); }
inline uint32_t get_props_5() const { return ___props_5; }
inline uint32_t* get_address_of_props_5() { return &___props_5; }
inline void set_props_5(uint32_t value)
{
___props_5 = value;
}
inline static int32_t get_offset_of_value_6() { return static_cast<int32_t>(offsetof(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0, ___value_6)); }
inline String_t* get_value_6() const { return ___value_6; }
inline String_t** get_address_of_value_6() { return &___value_6; }
inline void set_value_6(String_t* value)
{
___value_6 = value;
Il2CppCodeGenWriteBarrier((&___value_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNode
struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_pinvoke
{
XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * ___info_0;
uint16_t ___idxSibling_1;
uint16_t ___idxParent_2;
uint16_t ___idxSimilar_3;
uint16_t ___posOffset_4;
uint32_t ___props_5;
char* ___value_6;
};
// Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNode
struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_com
{
XPathNodeInfoAtom_t6FF2C2B2096901C0BB3988616FBA285A67947AC7 * ___info_0;
uint16_t ___idxSibling_1;
uint16_t ___idxParent_2;
uint16_t ___idxSimilar_3;
uint16_t ___posOffset_4;
uint32_t ___props_5;
Il2CppChar* ___value_6;
};
#endif // XPATHNODE_TC207ED6C653E80055FE6C5ECD3E6137A326659A0_H
#ifndef XPATHNODEREF_T6F631244BF7B58CE7DB9239662B4EE745CD54E14_H
#define XPATHNODEREF_T6F631244BF7B58CE7DB9239662B4EE745CD54E14_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// MS.Internal.Xml.Cache.XPathNodeRef
struct XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14
{
public:
// MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeRef::page
XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* ___page_0;
// System.Int32 MS.Internal.Xml.Cache.XPathNodeRef::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_page_0() { return static_cast<int32_t>(offsetof(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14, ___page_0)); }
inline XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* get_page_0() const { return ___page_0; }
inline XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B** get_address_of_page_0() { return &___page_0; }
inline void set_page_0(XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* value)
{
___page_0 = value;
Il2CppCodeGenWriteBarrier((&___page_0), value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNodeRef
struct XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_marshaled_pinvoke
{
XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_pinvoke* ___page_0;
int32_t ___idx_1;
};
// Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNodeRef
struct XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_marshaled_com
{
XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_com* ___page_0;
int32_t ___idx_1;
};
#endif // XPATHNODEREF_T6F631244BF7B58CE7DB9239662B4EE745CD54E14_H
#ifndef AUDIOLOFIFILTERSETTINGS_T0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21_H
#define AUDIOLOFIFILTERSETTINGS_T0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings
struct AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21
{
public:
// System.Single Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings::<LowPassCutoff>k__BackingField
float ___U3CLowPassCutoffU3Ek__BackingField_0;
// System.Single Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings::<HighPassCutoff>k__BackingField
float ___U3CHighPassCutoffU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CLowPassCutoffU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21, ___U3CLowPassCutoffU3Ek__BackingField_0)); }
inline float get_U3CLowPassCutoffU3Ek__BackingField_0() const { return ___U3CLowPassCutoffU3Ek__BackingField_0; }
inline float* get_address_of_U3CLowPassCutoffU3Ek__BackingField_0() { return &___U3CLowPassCutoffU3Ek__BackingField_0; }
inline void set_U3CLowPassCutoffU3Ek__BackingField_0(float value)
{
___U3CLowPassCutoffU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CHighPassCutoffU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21, ___U3CHighPassCutoffU3Ek__BackingField_1)); }
inline float get_U3CHighPassCutoffU3Ek__BackingField_1() const { return ___U3CHighPassCutoffU3Ek__BackingField_1; }
inline float* get_address_of_U3CHighPassCutoffU3Ek__BackingField_1() { return &___U3CHighPassCutoffU3Ek__BackingField_1; }
inline void set_U3CHighPassCutoffU3Ek__BackingField_1(float value)
{
___U3CHighPassCutoffU3Ek__BackingField_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // AUDIOLOFIFILTERSETTINGS_T0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21_H
#ifndef EVENTHANDLERENTRY_T6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_H
#define EVENTHANDLERENTRY_T6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.BaseEventSystem_EventHandlerEntry
struct EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7
{
public:
// UnityEngine.EventSystems.IEventSystemHandler Microsoft.MixedReality.Toolkit.BaseEventSystem_EventHandlerEntry::handler
RuntimeObject* ___handler_0;
// System.Boolean Microsoft.MixedReality.Toolkit.BaseEventSystem_EventHandlerEntry::parentObjectIsInObjectCollection
bool ___parentObjectIsInObjectCollection_1;
public:
inline static int32_t get_offset_of_handler_0() { return static_cast<int32_t>(offsetof(EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7, ___handler_0)); }
inline RuntimeObject* get_handler_0() const { return ___handler_0; }
inline RuntimeObject** get_address_of_handler_0() { return &___handler_0; }
inline void set_handler_0(RuntimeObject* value)
{
___handler_0 = value;
Il2CppCodeGenWriteBarrier((&___handler_0), value);
}
inline static int32_t get_offset_of_parentObjectIsInObjectCollection_1() { return static_cast<int32_t>(offsetof(EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7, ___parentObjectIsInObjectCollection_1)); }
inline bool get_parentObjectIsInObjectCollection_1() const { return ___parentObjectIsInObjectCollection_1; }
inline bool* get_address_of_parentObjectIsInObjectCollection_1() { return &___parentObjectIsInObjectCollection_1; }
inline void set_parentObjectIsInObjectCollection_1(bool value)
{
___parentObjectIsInObjectCollection_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.BaseEventSystem/EventHandlerEntry
struct EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_marshaled_pinvoke
{
RuntimeObject* ___handler_0;
int32_t ___parentObjectIsInObjectCollection_1;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.BaseEventSystem/EventHandlerEntry
struct EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_marshaled_com
{
RuntimeObject* ___handler_0;
int32_t ___parentObjectIsInObjectCollection_1;
};
#endif // EVENTHANDLERENTRY_T6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_H
#ifndef KEYWORDANDRESPONSE_T52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962_H
#define KEYWORDANDRESPONSE_T52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.KeywordAndResponse
struct KeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.KeywordAndResponse::keyword
String_t* ___keyword_0;
// UnityEngine.Events.UnityEvent Microsoft.MixedReality.Toolkit.Input.KeywordAndResponse::response
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___response_1;
public:
inline static int32_t get_offset_of_keyword_0() { return static_cast<int32_t>(offsetof(KeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962, ___keyword_0)); }
inline String_t* get_keyword_0() const { return ___keyword_0; }
inline String_t** get_address_of_keyword_0() { return &___keyword_0; }
inline void set_keyword_0(String_t* value)
{
___keyword_0 = value;
Il2CppCodeGenWriteBarrier((&___keyword_0), value);
}
inline static int32_t get_offset_of_response_1() { return static_cast<int32_t>(offsetof(KeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962, ___response_1)); }
inline UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * get_response_1() const { return ___response_1; }
inline UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F ** get_address_of_response_1() { return &___response_1; }
inline void set_response_1(UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * value)
{
___response_1 = value;
Il2CppCodeGenWriteBarrier((&___response_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.KeywordAndResponse
struct KeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962_marshaled_pinvoke
{
char* ___keyword_0;
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___response_1;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.KeywordAndResponse
struct KeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962_marshaled_com
{
Il2CppChar* ___keyword_0;
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___response_1;
};
#endif // KEYWORDANDRESPONSE_T52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962_H
#ifndef BLOCKSANDRENDERER_TA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_H
#define BLOCKSANDRENDERER_TA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer
struct BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64
{
public:
// UnityEngine.MaterialPropertyBlock Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer::Block
MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 * ___Block_0;
// UnityEngine.Renderer Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer::Renderer
Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * ___Renderer_1;
public:
inline static int32_t get_offset_of_Block_0() { return static_cast<int32_t>(offsetof(BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64, ___Block_0)); }
inline MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 * get_Block_0() const { return ___Block_0; }
inline MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 ** get_address_of_Block_0() { return &___Block_0; }
inline void set_Block_0(MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 * value)
{
___Block_0 = value;
Il2CppCodeGenWriteBarrier((&___Block_0), value);
}
inline static int32_t get_offset_of_Renderer_1() { return static_cast<int32_t>(offsetof(BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64, ___Renderer_1)); }
inline Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * get_Renderer_1() const { return ___Renderer_1; }
inline Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 ** get_address_of_Renderer_1() { return &___Renderer_1; }
inline void set_Renderer_1(Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * value)
{
___Renderer_1 = value;
Il2CppCodeGenWriteBarrier((&___Renderer_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme/BlocksAndRenderer
struct BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_marshaled_pinvoke
{
MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 * ___Block_0;
Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * ___Renderer_1;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme/BlocksAndRenderer
struct BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_marshaled_com
{
MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 * ___Block_0;
Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * ___Renderer_1;
};
#endif // BLOCKSANDRENDERER_TA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_H
#ifndef THEMEDEFINITION_T10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_H
#define THEMEDEFINITION_T10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.UI.ThemeDefinition
struct ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A
{
public:
// System.Type Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::Type
Type_t * ___Type_0;
// System.String Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::ClassName
String_t* ___ClassName_1;
// System.String Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::AssemblyQualifiedName
String_t* ___AssemblyQualifiedName_2;
// System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeStateProperty> Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::stateProperties
List_1_t2186A9C985B0FC9B1A18B31A45FBE433E9B2D55C * ___stateProperties_3;
// System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeProperty> Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::customProperties
List_1_t0546ACEE880E08F2EBEA286DD05FCA524B3953FB * ___customProperties_4;
// Microsoft.MixedReality.Toolkit.Utilities.Easing Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::easing
Easing_tEB161440B9E6629D955313E558F5DF45AF8DC2E3 * ___easing_5;
public:
inline static int32_t get_offset_of_Type_0() { return static_cast<int32_t>(offsetof(ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A, ___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((&___Type_0), value);
}
inline static int32_t get_offset_of_ClassName_1() { return static_cast<int32_t>(offsetof(ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A, ___ClassName_1)); }
inline String_t* get_ClassName_1() const { return ___ClassName_1; }
inline String_t** get_address_of_ClassName_1() { return &___ClassName_1; }
inline void set_ClassName_1(String_t* value)
{
___ClassName_1 = value;
Il2CppCodeGenWriteBarrier((&___ClassName_1), value);
}
inline static int32_t get_offset_of_AssemblyQualifiedName_2() { return static_cast<int32_t>(offsetof(ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A, ___AssemblyQualifiedName_2)); }
inline String_t* get_AssemblyQualifiedName_2() const { return ___AssemblyQualifiedName_2; }
inline String_t** get_address_of_AssemblyQualifiedName_2() { return &___AssemblyQualifiedName_2; }
inline void set_AssemblyQualifiedName_2(String_t* value)
{
___AssemblyQualifiedName_2 = value;
Il2CppCodeGenWriteBarrier((&___AssemblyQualifiedName_2), value);
}
inline static int32_t get_offset_of_stateProperties_3() { return static_cast<int32_t>(offsetof(ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A, ___stateProperties_3)); }
inline List_1_t2186A9C985B0FC9B1A18B31A45FBE433E9B2D55C * get_stateProperties_3() const { return ___stateProperties_3; }
inline List_1_t2186A9C985B0FC9B1A18B31A45FBE433E9B2D55C ** get_address_of_stateProperties_3() { return &___stateProperties_3; }
inline void set_stateProperties_3(List_1_t2186A9C985B0FC9B1A18B31A45FBE433E9B2D55C * value)
{
___stateProperties_3 = value;
Il2CppCodeGenWriteBarrier((&___stateProperties_3), value);
}
inline static int32_t get_offset_of_customProperties_4() { return static_cast<int32_t>(offsetof(ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A, ___customProperties_4)); }
inline List_1_t0546ACEE880E08F2EBEA286DD05FCA524B3953FB * get_customProperties_4() const { return ___customProperties_4; }
inline List_1_t0546ACEE880E08F2EBEA286DD05FCA524B3953FB ** get_address_of_customProperties_4() { return &___customProperties_4; }
inline void set_customProperties_4(List_1_t0546ACEE880E08F2EBEA286DD05FCA524B3953FB * value)
{
___customProperties_4 = value;
Il2CppCodeGenWriteBarrier((&___customProperties_4), value);
}
inline static int32_t get_offset_of_easing_5() { return static_cast<int32_t>(offsetof(ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A, ___easing_5)); }
inline Easing_tEB161440B9E6629D955313E558F5DF45AF8DC2E3 * get_easing_5() const { return ___easing_5; }
inline Easing_tEB161440B9E6629D955313E558F5DF45AF8DC2E3 ** get_address_of_easing_5() { return &___easing_5; }
inline void set_easing_5(Easing_tEB161440B9E6629D955313E558F5DF45AF8DC2E3 * value)
{
___easing_5 = value;
Il2CppCodeGenWriteBarrier((&___easing_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.UI.ThemeDefinition
struct ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_marshaled_pinvoke
{
Type_t * ___Type_0;
char* ___ClassName_1;
char* ___AssemblyQualifiedName_2;
List_1_t2186A9C985B0FC9B1A18B31A45FBE433E9B2D55C * ___stateProperties_3;
List_1_t0546ACEE880E08F2EBEA286DD05FCA524B3953FB * ___customProperties_4;
Easing_tEB161440B9E6629D955313E558F5DF45AF8DC2E3 * ___easing_5;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.UI.ThemeDefinition
struct ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_marshaled_com
{
Type_t * ___Type_0;
Il2CppChar* ___ClassName_1;
Il2CppChar* ___AssemblyQualifiedName_2;
List_1_t2186A9C985B0FC9B1A18B31A45FBE433E9B2D55C * ___stateProperties_3;
List_1_t0546ACEE880E08F2EBEA286DD05FCA524B3953FB * ___customProperties_4;
Easing_tEB161440B9E6629D955313E558F5DF45AF8DC2E3 * ___easing_5;
};
#endif // THEMEDEFINITION_T10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_H
#ifndef FILEINFO_TE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_H
#define FILEINFO_TE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo
struct FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6
{
public:
// System.String Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::CurrentDir
String_t* ___CurrentDir_0;
// System.Int32 Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::DateCreated
int32_t ___DateCreated_1;
// System.Int32 Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::FileSize
int32_t ___FileSize_2;
// System.String Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::Id
String_t* ___Id_3;
// System.String Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::Name
String_t* ___Name_4;
// System.String Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::SubPath
String_t* ___SubPath_5;
// System.Int32 Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo::Type
int32_t ___Type_6;
public:
inline static int32_t get_offset_of_CurrentDir_0() { return static_cast<int32_t>(offsetof(FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6, ___CurrentDir_0)); }
inline String_t* get_CurrentDir_0() const { return ___CurrentDir_0; }
inline String_t** get_address_of_CurrentDir_0() { return &___CurrentDir_0; }
inline void set_CurrentDir_0(String_t* value)
{
___CurrentDir_0 = value;
Il2CppCodeGenWriteBarrier((&___CurrentDir_0), value);
}
inline static int32_t get_offset_of_DateCreated_1() { return static_cast<int32_t>(offsetof(FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6, ___DateCreated_1)); }
inline int32_t get_DateCreated_1() const { return ___DateCreated_1; }
inline int32_t* get_address_of_DateCreated_1() { return &___DateCreated_1; }
inline void set_DateCreated_1(int32_t value)
{
___DateCreated_1 = value;
}
inline static int32_t get_offset_of_FileSize_2() { return static_cast<int32_t>(offsetof(FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6, ___FileSize_2)); }
inline int32_t get_FileSize_2() const { return ___FileSize_2; }
inline int32_t* get_address_of_FileSize_2() { return &___FileSize_2; }
inline void set_FileSize_2(int32_t value)
{
___FileSize_2 = value;
}
inline static int32_t get_offset_of_Id_3() { return static_cast<int32_t>(offsetof(FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6, ___Id_3)); }
inline String_t* get_Id_3() const { return ___Id_3; }
inline String_t** get_address_of_Id_3() { return &___Id_3; }
inline void set_Id_3(String_t* value)
{
___Id_3 = value;
Il2CppCodeGenWriteBarrier((&___Id_3), value);
}
inline static int32_t get_offset_of_Name_4() { return static_cast<int32_t>(offsetof(FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6, ___Name_4)); }
inline String_t* get_Name_4() const { return ___Name_4; }
inline String_t** get_address_of_Name_4() { return &___Name_4; }
inline void set_Name_4(String_t* value)
{
___Name_4 = value;
Il2CppCodeGenWriteBarrier((&___Name_4), value);
}
inline static int32_t get_offset_of_SubPath_5() { return static_cast<int32_t>(offsetof(FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6, ___SubPath_5)); }
inline String_t* get_SubPath_5() const { return ___SubPath_5; }
inline String_t** get_address_of_SubPath_5() { return &___SubPath_5; }
inline void set_SubPath_5(String_t* value)
{
___SubPath_5 = value;
Il2CppCodeGenWriteBarrier((&___SubPath_5), value);
}
inline static int32_t get_offset_of_Type_6() { return static_cast<int32_t>(offsetof(FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6, ___Type_6)); }
inline int32_t get_Type_6() const { return ___Type_6; }
inline int32_t* get_address_of_Type_6() { return &___Type_6; }
inline void set_Type_6(int32_t value)
{
___Type_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo
struct FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_marshaled_pinvoke
{
char* ___CurrentDir_0;
int32_t ___DateCreated_1;
int32_t ___FileSize_2;
char* ___Id_3;
char* ___Name_4;
char* ___SubPath_5;
int32_t ___Type_6;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo
struct FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_marshaled_com
{
Il2CppChar* ___CurrentDir_0;
int32_t ___DateCreated_1;
int32_t ___FileSize_2;
Il2CppChar* ___Id_3;
Il2CppChar* ___Name_4;
Il2CppChar* ___SubPath_5;
int32_t ___Type_6;
};
#endif // FILEINFO_TE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_H
#ifndef TABLERANGE_T485CF0807771CC05023466CFCB0AE25C46648100_H
#define TABLERANGE_T485CF0807771CC05023466CFCB0AE25C46648100_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TABLERANGE_T485CF0807771CC05023466CFCB0AE25C46648100_H
#ifndef URISCHEME_TD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_H
#define URISCHEME_TD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___scheme_0), 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((&___delimiter_1), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // URISCHEME_TD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_H
#ifndef ARRAYSEGMENT_1_T5B17204266E698CC035E2A7F6435A4F78286D0FA_H
#define ARRAYSEGMENT_1_T5B17204266E698CC035E2A7F6435A4F78286D0FA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArraySegment`1<System.Byte>
struct ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA
{
public:
// T[] System.ArraySegment`1::_array
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____array_0;
// System.Int32 System.ArraySegment`1::_offset
int32_t ____offset_1;
// System.Int32 System.ArraySegment`1::_count
int32_t ____count_2;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____array_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__array_0() const { return ____array_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((&____array_0), value);
}
inline static int32_t get_offset_of__offset_1() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____offset_1)); }
inline int32_t get__offset_1() const { return ____offset_1; }
inline int32_t* get_address_of__offset_1() { return &____offset_1; }
inline void set__offset_1(int32_t value)
{
____offset_1 = value;
}
inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA, ____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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYSEGMENT_1_T5B17204266E698CC035E2A7F6435A4F78286D0FA_H
#ifndef BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H
#define BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___TrueString_5), 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((&___FalseString_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H
#ifndef BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H
#define BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); }
inline uint8_t get_m_value_0() const { return ___m_value_0; }
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint8_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H
#ifndef CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H
#define CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); }
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(Il2CppChar value)
{
___m_value_0 = value;
}
};
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((&___categoryForLatin1_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H
#ifndef DICTIONARYENTRY_TB5348A26B94274FCC1DD77185BD5946E283B11A4_H
#define DICTIONARYENTRY_TB5348A26B94274FCC1DD77185BD5946E283B11A4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&____key_0), 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((&____value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // DICTIONARYENTRY_TB5348A26B94274FCC1DD77185BD5946E283B11A4_H
#ifndef ENTRY_TB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_H
#define ENTRY_TB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Boolean>
struct Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
bool ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61, ___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_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61, ___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_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61, ___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_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_TB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_H
#ifndef ENTRY_T650EC46021B48AB1D80CD2D34D2B0EAC3165926A_H
#define ENTRY_T650EC46021B48AB1D80CD2D34D2B0EAC3165926A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Char>
struct Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A
{
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
Il2CppChar ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A, ___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_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A, ___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_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A, ___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_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A, ___value_3)); }
inline Il2CppChar get_value_3() const { return ___value_3; }
inline Il2CppChar* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(Il2CppChar value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T650EC46021B48AB1D80CD2D34D2B0EAC3165926A_H
#ifndef ENTRY_T35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_H
#define ENTRY_T35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32>
struct Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
int32_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27, ___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_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27, ___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_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27, ___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_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_H
#ifndef ENTRY_TEF57BE8378C384B7B525EA94DA5797623AB1B44A_H
#define ENTRY_TEF57BE8378C384B7B525EA94DA5797623AB1B44A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int64>
struct Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A
{
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
int64_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A, ___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_tEF57BE8378C384B7B525EA94DA5797623AB1B44A, ___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_tEF57BE8378C384B7B525EA94DA5797623AB1B44A, ___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_tEF57BE8378C384B7B525EA94DA5797623AB1B44A, ___value_3)); }
inline int64_t get_value_3() const { return ___value_3; }
inline int64_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int64_t value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_TEF57BE8378C384B7B525EA94DA5797623AB1B44A_H
#ifndef ENTRY_T7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_H
#define ENTRY_T7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_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((&___value_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_H
#ifndef ENTRY_TD950BFD70D1287D3DE34B8019C16932D6867ACD4_H
#define ENTRY_TD950BFD70D1287D3DE34B8019C16932D6867ACD4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object>
struct Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4
{
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
int64_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_tD950BFD70D1287D3DE34B8019C16932D6867ACD4, ___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_tD950BFD70D1287D3DE34B8019C16932D6867ACD4, ___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_tD950BFD70D1287D3DE34B8019C16932D6867ACD4, ___key_2)); }
inline int64_t get_key_2() const { return ___key_2; }
inline int64_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int64_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4, ___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((&___value_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_TD950BFD70D1287D3DE34B8019C16932D6867ACD4_H
#ifndef ENTRY_T495C47A91D5A1899AF832D603308B663495EC5A8_H
#define ENTRY_T495C47A91D5A1899AF832D603308B663495EC5A8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_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((&___key_2), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T495C47A91D5A1899AF832D603308B663495EC5A8_H
#ifndef ENTRY_T06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_H
#define ENTRY_T06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_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((&___key_2), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_H
#ifndef ENTRY_T03898C03E4E291FD6780D28D81A25E3CACF2BADA_H
#define ENTRY_T03898C03E4E291FD6780D28D81A25E3CACF2BADA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_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((&___key_2), 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((&___value_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T03898C03E4E291FD6780D28D81A25E3CACF2BADA_H
#ifndef ENTRY_T1248B1345CDA796FEA6F632C5E6F2BD9463754D2_H
#define ENTRY_T1248B1345CDA796FEA6F632C5E6F2BD9463754D2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Boolean>
struct Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
uint32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
bool ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2, ___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_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2, ___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_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2, ___key_2)); }
inline uint32_t get_key_2() const { return ___key_2; }
inline uint32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T1248B1345CDA796FEA6F632C5E6F2BD9463754D2_H
#ifndef ENTRY_T93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_H
#define ENTRY_T93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32>
struct Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
uint32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
int32_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117, ___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_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117, ___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_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117, ___key_2)); }
inline uint32_t get_key_2() const { return ___key_2; }
inline uint32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_H
#ifndef ENTRY_TD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_H
#define ENTRY_TD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object>
struct Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
uint32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A, ___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_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A, ___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_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A, ___key_2)); }
inline uint32_t get_key_2() const { return ___key_2; }
inline uint32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A, ___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((&___value_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_TD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_H
#ifndef SLOT_TA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_H
#define SLOT_TA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.HashSet`1_Slot<System.Int32>
struct Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7
{
public:
// System.Int32 System.Collections.Generic.HashSet`1_Slot::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.HashSet`1_Slot::next
int32_t ___next_1;
// T System.Collections.Generic.HashSet`1_Slot::value
int32_t ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7, ___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_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7, ___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_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SLOT_TA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_H
#ifndef SLOT_T394A01CC2CDB2C0780E7D536D7851E87E9B85279_H
#define SLOT_T394A01CC2CDB2C0780E7D536D7851E87E9B85279_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___value_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SLOT_T394A01CC2CDB2C0780E7D536D7851E87E9B85279_H
#ifndef KEYVALUEPAIR_2_T411E4248A20D0FDB15190B13EA12EBCB69500C82_H
#define KEYVALUEPAIR_2_T411E4248A20D0FDB15190B13EA12EBCB69500C82_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>
struct KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___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_t411E4248A20D0FDB15190B13EA12EBCB69500C82, ___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_t411E4248A20D0FDB15190B13EA12EBCB69500C82, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T411E4248A20D0FDB15190B13EA12EBCB69500C82_H
#ifndef KEYVALUEPAIR_2_T13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_H
#define KEYVALUEPAIR_2_T13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>
struct KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
Il2CppChar ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F, ___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_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F, ___value_1)); }
inline Il2CppChar get_value_1() const { return ___value_1; }
inline Il2CppChar* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(Il2CppChar value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_H
#ifndef KEYVALUEPAIR_2_TA9AFBC865B07606ED8F020A8E3AF8E27491AF809_H
#define KEYVALUEPAIR_2_TA9AFBC865B07606ED8F020A8E3AF8E27491AF809_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_TA9AFBC865B07606ED8F020A8E3AF8E27491AF809_H
#ifndef KEYVALUEPAIR_2_T7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_H
#define KEYVALUEPAIR_2_T7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>
struct KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int64_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5, ___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_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5, ___value_1)); }
inline int64_t get_value_1() const { return ___value_1; }
inline int64_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int64_t value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_H
#ifndef KEYVALUEPAIR_2_T142B50DAD5164EBD2E1495FD821B1A4C3233FA26_H
#define KEYVALUEPAIR_2_T142B50DAD5164EBD2E1495FD821B1A4C3233FA26_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T142B50DAD5164EBD2E1495FD821B1A4C3233FA26_H
#ifndef KEYVALUEPAIR_2_T01369E536C15A7A1AF58F260AD740C479FBFC4EA_H
#define KEYVALUEPAIR_2_T01369E536C15A7A1AF58F260AD740C479FBFC4EA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>
struct KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int64_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_t01369E536C15A7A1AF58F260AD740C479FBFC4EA, ___key_0)); }
inline int64_t get_key_0() const { return ___key_0; }
inline int64_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int64_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA, ___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((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T01369E536C15A7A1AF58F260AD740C479FBFC4EA_H
#ifndef KEYVALUEPAIR_2_TF975BF5238F06AC9CCA19111DD41484E071258C1_H
#define KEYVALUEPAIR_2_TF975BF5238F06AC9CCA19111DD41484E071258C1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___key_0), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_TF975BF5238F06AC9CCA19111DD41484E071258C1_H
#ifndef KEYVALUEPAIR_2_T3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_H
#define KEYVALUEPAIR_2_T3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___key_0), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_H
#ifndef KEYVALUEPAIR_2_T23481547E419E16E3B96A303578C1EB685C99EEE_H
#define KEYVALUEPAIR_2_T23481547E419E16E3B96A303578C1EB685C99EEE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___key_0), 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((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T23481547E419E16E3B96A303578C1EB685C99EEE_H
#ifndef KEYVALUEPAIR_2_T4924C8EC65AAF8D242A28DB259AE14F25055A7EE_H
#define KEYVALUEPAIR_2_T4924C8EC65AAF8D242A28DB259AE14F25055A7EE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>
struct KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint32_t ___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_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE, ___key_0)); }
inline uint32_t get_key_0() const { return ___key_0; }
inline uint32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T4924C8EC65AAF8D242A28DB259AE14F25055A7EE_H
#ifndef KEYVALUEPAIR_2_TE6C1358EE7D1267190A395EAC9AEA64A81377D2C_H
#define KEYVALUEPAIR_2_TE6C1358EE7D1267190A395EAC9AEA64A81377D2C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>
struct KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint32_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_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C, ___key_0)); }
inline uint32_t get_key_0() const { return ___key_0; }
inline uint32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_TE6C1358EE7D1267190A395EAC9AEA64A81377D2C_H
#ifndef KEYVALUEPAIR_2_T471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_H
#define KEYVALUEPAIR_2_T471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>
struct KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA, ___key_0)); }
inline uint32_t get_key_0() const { return ___key_0; }
inline uint32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA, ___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((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_H
#ifndef BUCKET_T1C848488DF65838689F7773D46F9E7E8C881B083_H
#define BUCKET_T1C848488DF65838689F7773D46F9E7E8C881B083_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___key_0), 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((&___val_1), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // BUCKET_T1C848488DF65838689F7773D46F9E7E8C881B083_H
#ifndef DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H
#define DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___DaysToMonth365_29), 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((&___DaysToMonth366_30), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H
#ifndef DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H
#define DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___Powers10_6), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H
#ifndef DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H
#define DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H
#ifndef ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H
#define ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___enumSeperatorCharArray_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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
{
};
#endif // ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H
#ifndef INTERNALCODEPAGEDATAITEM_T34EE39DE4A481B875348BB9BC6751E2A109AD0D4_H
#define INTERNALCODEPAGEDATAITEM_T34EE39DE4A481B875348BB9BC6751E2A109AD0D4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___Names_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // INTERNALCODEPAGEDATAITEM_T34EE39DE4A481B875348BB9BC6751E2A109AD0D4_H
#ifndef INTERNALENCODINGDATAITEM_T34BEF550D56496035752E8E0607127CD43378211_H
#define INTERNALENCODINGDATAITEM_T34BEF550D56496035752E8E0607127CD43378211_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___webName_0), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // INTERNALENCODINGDATAITEM_T34BEF550D56496035752E8E0607127CD43378211_H
#ifndef GUID_T_H
#define GUID_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____fastRng_14;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((&____rngAccess_12), 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((&____rng_13), value);
}
inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__fastRng_14() const { return ____fastRng_14; }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__fastRng_14() { return &____fastRng_14; }
inline void set__fastRng_14(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
{
____fastRng_14 = value;
Il2CppCodeGenWriteBarrier((&____fastRng_14), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GUID_T_H
#ifndef INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H
#define INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H
#ifndef INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H
#define INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H
#ifndef INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H
#define INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H
#ifndef INTPTR_T_H
#define INTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTPTR_T_H
#ifndef SLOT_TCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_H
#define SLOT_TCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Set`1_Slot<System.Object>
struct Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55
{
public:
// System.Int32 System.Linq.Set`1_Slot::hashCode
int32_t ___hashCode_0;
// TElement System.Linq.Set`1_Slot::value
RuntimeObject * ___value_1;
// System.Int32 System.Linq.Set`1_Slot::next
int32_t ___next_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55, ___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_value_1() { return static_cast<int32_t>(offsetof(Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55, ___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((&___value_1), value);
}
inline static int32_t get_offset_of_next_2() { return static_cast<int32_t>(offsetof(Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55, ___next_2)); }
inline int32_t get_next_2() const { return ___next_2; }
inline int32_t* get_address_of_next_2() { return &___next_2; }
inline void set_next_2(int32_t value)
{
___next_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SLOT_TCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_H
#ifndef NULLABLE_1_T0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_H
#define NULLABLE_1_T0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NULLABLE_1_T0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_H
#ifndef MATRIX4X4_T962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_H
#define MATRIX4X4_T962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Numerics.Matrix4x4
struct Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0
{
public:
// System.Single System.Numerics.Matrix4x4::M11
float ___M11_0;
// System.Single System.Numerics.Matrix4x4::M12
float ___M12_1;
// System.Single System.Numerics.Matrix4x4::M13
float ___M13_2;
// System.Single System.Numerics.Matrix4x4::M14
float ___M14_3;
// System.Single System.Numerics.Matrix4x4::M21
float ___M21_4;
// System.Single System.Numerics.Matrix4x4::M22
float ___M22_5;
// System.Single System.Numerics.Matrix4x4::M23
float ___M23_6;
// System.Single System.Numerics.Matrix4x4::M24
float ___M24_7;
// System.Single System.Numerics.Matrix4x4::M31
float ___M31_8;
// System.Single System.Numerics.Matrix4x4::M32
float ___M32_9;
// System.Single System.Numerics.Matrix4x4::M33
float ___M33_10;
// System.Single System.Numerics.Matrix4x4::M34
float ___M34_11;
// System.Single System.Numerics.Matrix4x4::M41
float ___M41_12;
// System.Single System.Numerics.Matrix4x4::M42
float ___M42_13;
// System.Single System.Numerics.Matrix4x4::M43
float ___M43_14;
// System.Single System.Numerics.Matrix4x4::M44
float ___M44_15;
public:
inline static int32_t get_offset_of_M11_0() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M11_0)); }
inline float get_M11_0() const { return ___M11_0; }
inline float* get_address_of_M11_0() { return &___M11_0; }
inline void set_M11_0(float value)
{
___M11_0 = value;
}
inline static int32_t get_offset_of_M12_1() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M12_1)); }
inline float get_M12_1() const { return ___M12_1; }
inline float* get_address_of_M12_1() { return &___M12_1; }
inline void set_M12_1(float value)
{
___M12_1 = value;
}
inline static int32_t get_offset_of_M13_2() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M13_2)); }
inline float get_M13_2() const { return ___M13_2; }
inline float* get_address_of_M13_2() { return &___M13_2; }
inline void set_M13_2(float value)
{
___M13_2 = value;
}
inline static int32_t get_offset_of_M14_3() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M14_3)); }
inline float get_M14_3() const { return ___M14_3; }
inline float* get_address_of_M14_3() { return &___M14_3; }
inline void set_M14_3(float value)
{
___M14_3 = value;
}
inline static int32_t get_offset_of_M21_4() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M21_4)); }
inline float get_M21_4() const { return ___M21_4; }
inline float* get_address_of_M21_4() { return &___M21_4; }
inline void set_M21_4(float value)
{
___M21_4 = value;
}
inline static int32_t get_offset_of_M22_5() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M22_5)); }
inline float get_M22_5() const { return ___M22_5; }
inline float* get_address_of_M22_5() { return &___M22_5; }
inline void set_M22_5(float value)
{
___M22_5 = value;
}
inline static int32_t get_offset_of_M23_6() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M23_6)); }
inline float get_M23_6() const { return ___M23_6; }
inline float* get_address_of_M23_6() { return &___M23_6; }
inline void set_M23_6(float value)
{
___M23_6 = value;
}
inline static int32_t get_offset_of_M24_7() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M24_7)); }
inline float get_M24_7() const { return ___M24_7; }
inline float* get_address_of_M24_7() { return &___M24_7; }
inline void set_M24_7(float value)
{
___M24_7 = value;
}
inline static int32_t get_offset_of_M31_8() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M31_8)); }
inline float get_M31_8() const { return ___M31_8; }
inline float* get_address_of_M31_8() { return &___M31_8; }
inline void set_M31_8(float value)
{
___M31_8 = value;
}
inline static int32_t get_offset_of_M32_9() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M32_9)); }
inline float get_M32_9() const { return ___M32_9; }
inline float* get_address_of_M32_9() { return &___M32_9; }
inline void set_M32_9(float value)
{
___M32_9 = value;
}
inline static int32_t get_offset_of_M33_10() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M33_10)); }
inline float get_M33_10() const { return ___M33_10; }
inline float* get_address_of_M33_10() { return &___M33_10; }
inline void set_M33_10(float value)
{
___M33_10 = value;
}
inline static int32_t get_offset_of_M34_11() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M34_11)); }
inline float get_M34_11() const { return ___M34_11; }
inline float* get_address_of_M34_11() { return &___M34_11; }
inline void set_M34_11(float value)
{
___M34_11 = value;
}
inline static int32_t get_offset_of_M41_12() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M41_12)); }
inline float get_M41_12() const { return ___M41_12; }
inline float* get_address_of_M41_12() { return &___M41_12; }
inline void set_M41_12(float value)
{
___M41_12 = value;
}
inline static int32_t get_offset_of_M42_13() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M42_13)); }
inline float get_M42_13() const { return ___M42_13; }
inline float* get_address_of_M42_13() { return &___M42_13; }
inline void set_M42_13(float value)
{
___M42_13 = value;
}
inline static int32_t get_offset_of_M43_14() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M43_14)); }
inline float get_M43_14() const { return ___M43_14; }
inline float* get_address_of_M43_14() { return &___M43_14; }
inline void set_M43_14(float value)
{
___M43_14 = value;
}
inline static int32_t get_offset_of_M44_15() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0, ___M44_15)); }
inline float get_M44_15() const { return ___M44_15; }
inline float* get_address_of_M44_15() { return &___M44_15; }
inline void set_M44_15(float value)
{
___M44_15 = value;
}
};
struct Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_StaticFields
{
public:
// System.Numerics.Matrix4x4 System.Numerics.Matrix4x4::_identity
Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0 ____identity_16;
public:
inline static int32_t get_offset_of__identity_16() { return static_cast<int32_t>(offsetof(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_StaticFields, ____identity_16)); }
inline Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0 get__identity_16() const { return ____identity_16; }
inline Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0 * get_address_of__identity_16() { return &____identity_16; }
inline void set__identity_16(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0 value)
{
____identity_16 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MATRIX4X4_T962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_H
#ifndef QUATERNION_T67580554B28ABC8A5384F3B4FF4E679FC6D38D4A_H
#define QUATERNION_T67580554B28ABC8A5384F3B4FF4E679FC6D38D4A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Numerics.Quaternion
struct Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A
{
public:
// System.Single System.Numerics.Quaternion::X
float ___X_0;
// System.Single System.Numerics.Quaternion::Y
float ___Y_1;
// System.Single System.Numerics.Quaternion::Z
float ___Z_2;
// System.Single System.Numerics.Quaternion::W
float ___W_3;
public:
inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A, ___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_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A, ___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_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A, ___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_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // QUATERNION_T67580554B28ABC8A5384F3B4FF4E679FC6D38D4A_H
#ifndef VECTOR3_TA1B8517EED04F753987922C4361B51A4F3AE8C65_H
#define VECTOR3_TA1B8517EED04F753987922C4361B51A4F3AE8C65_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Numerics.Vector3
struct Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65
{
public:
// System.Single System.Numerics.Vector3::X
float ___X_0;
// System.Single System.Numerics.Vector3::Y
float ___Y_1;
// System.Single System.Numerics.Vector3::Z
float ___Z_2;
public:
inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65, ___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(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65, ___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(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR3_TA1B8517EED04F753987922C4361B51A4F3AE8C65_H
#ifndef FORMATPARAM_T1901DD0E7CD1B3A17B09040A6E2FCA5307328800_H
#define FORMATPARAM_T1901DD0E7CD1B3A17B09040A6E2FCA5307328800_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&____string_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // FORMATPARAM_T1901DD0E7CD1B3A17B09040A6E2FCA5307328800_H
#ifndef CUSTOMATTRIBUTETYPEDARGUMENT_T238ACCB3A438CB5EDE4A924C637B288CCEC958E8_H
#define CUSTOMATTRIBUTETYPEDARGUMENT_T238ACCB3A438CB5EDE4A924C637B288CCEC958E8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___argumentType_0), 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((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // CUSTOMATTRIBUTETYPEDARGUMENT_T238ACCB3A438CB5EDE4A924C637B288CCEC958E8_H
#ifndef PARAMETERMODIFIER_T7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_H
#define PARAMETERMODIFIER_T7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&____byRef_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // PARAMETERMODIFIER_T7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_H
#ifndef RESOURCELOCATOR_T1783916E271C27CB09DF57E7E5ED08ECA4B3275C_H
#define RESOURCELOCATOR_T1783916E271C27CB09DF57E7E5ED08ECA4B3275C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&____value_0), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // RESOURCELOCATOR_T1783916E271C27CB09DF57E7E5ED08ECA4B3275C_H
#ifndef EPHEMERON_T6F0B12401657FF132AB44052E5BCD06D358FF1BA_H
#define EPHEMERON_T6F0B12401657FF132AB44052E5BCD06D358FF1BA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___key_0), 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((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // EPHEMERON_T6F0B12401657FF132AB44052E5BCD06D358FF1BA_H
#ifndef GCHANDLE_T39FAEE3EA592432C93B574A31DD83B87F1847DE3_H
#define GCHANDLE_T39FAEE3EA592432C93B574A31DD83B87F1847DE3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GCHANDLE_T39FAEE3EA592432C93B574A31DD83B87F1847DE3_H
#ifndef EVENTREGISTRATIONTOKEN_TE1F3FD8339DB10082B4291DE47C45A352DCB08A7_H
#define EVENTREGISTRATIONTOKEN_TE1F3FD8339DB10082B4291DE47C45A352DCB08A7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken
struct EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7
{
public:
// System.UInt64 System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EVENTREGISTRATIONTOKEN_TE1F3FD8339DB10082B4291DE47C45A352DCB08A7_H
#ifndef EVENTCACHEENTRY_TAF077295F4A679ADA9C1442FCD4110C841FE47E6_H
#define EVENTCACHEENTRY_TAF077295F4A679ADA9C1442FCD4110C841FE47E6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheEntry
struct EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6
{
public:
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventRegistrationTokenListWithCount> System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheEntry::registrationTable
ConditionalWeakTable_2_t29A94EE935DB16A7FA33761A8766881A513B3CAF * ___registrationTable_0;
// System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_TokenListCount System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheEntry::tokenListCount
TokenListCount_t86E03CD21D37F3526546F9A171228599EE74AE73 * ___tokenListCount_1;
public:
inline static int32_t get_offset_of_registrationTable_0() { return static_cast<int32_t>(offsetof(EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6, ___registrationTable_0)); }
inline ConditionalWeakTable_2_t29A94EE935DB16A7FA33761A8766881A513B3CAF * get_registrationTable_0() const { return ___registrationTable_0; }
inline ConditionalWeakTable_2_t29A94EE935DB16A7FA33761A8766881A513B3CAF ** get_address_of_registrationTable_0() { return &___registrationTable_0; }
inline void set_registrationTable_0(ConditionalWeakTable_2_t29A94EE935DB16A7FA33761A8766881A513B3CAF * value)
{
___registrationTable_0 = value;
Il2CppCodeGenWriteBarrier((&___registrationTable_0), value);
}
inline static int32_t get_offset_of_tokenListCount_1() { return static_cast<int32_t>(offsetof(EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6, ___tokenListCount_1)); }
inline TokenListCount_t86E03CD21D37F3526546F9A171228599EE74AE73 * get_tokenListCount_1() const { return ___tokenListCount_1; }
inline TokenListCount_t86E03CD21D37F3526546F9A171228599EE74AE73 ** get_address_of_tokenListCount_1() { return &___tokenListCount_1; }
inline void set_tokenListCount_1(TokenListCount_t86E03CD21D37F3526546F9A171228599EE74AE73 * value)
{
___tokenListCount_1 = value;
Il2CppCodeGenWriteBarrier((&___tokenListCount_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry
struct EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6_marshaled_pinvoke
{
ConditionalWeakTable_2_t29A94EE935DB16A7FA33761A8766881A513B3CAF * ___registrationTable_0;
TokenListCount_t86E03CD21D37F3526546F9A171228599EE74AE73 * ___tokenListCount_1;
};
// Native definition for COM marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheEntry
struct EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6_marshaled_com
{
ConditionalWeakTable_2_t29A94EE935DB16A7FA33761A8766881A513B3CAF * ___registrationTable_0;
TokenListCount_t86E03CD21D37F3526546F9A171228599EE74AE73 * ___tokenListCount_1;
};
#endif // EVENTCACHEENTRY_TAF077295F4A679ADA9C1442FCD4110C841FE47E6_H
#ifndef EVENTCACHEKEY_T049C851B67DA89C466CF3B568E2BB3C3BE7C854A_H
#define EVENTCACHEKEY_T049C851B67DA89C466CF3B568E2BB3C3BE7C854A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheKey
struct EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A
{
public:
// System.Object System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheKey::target
RuntimeObject * ___target_0;
// System.Reflection.MethodInfo System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheKey::method
MethodInfo_t * ___method_1;
public:
inline static int32_t get_offset_of_target_0() { return static_cast<int32_t>(offsetof(EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A, ___target_0)); }
inline RuntimeObject * get_target_0() const { return ___target_0; }
inline RuntimeObject ** get_address_of_target_0() { return &___target_0; }
inline void set_target_0(RuntimeObject * value)
{
___target_0 = value;
Il2CppCodeGenWriteBarrier((&___target_0), value);
}
inline static int32_t get_offset_of_method_1() { return static_cast<int32_t>(offsetof(EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A, ___method_1)); }
inline MethodInfo_t * get_method_1() const { return ___method_1; }
inline MethodInfo_t ** get_address_of_method_1() { return &___method_1; }
inline void set_method_1(MethodInfo_t * value)
{
___method_1 = value;
Il2CppCodeGenWriteBarrier((&___method_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey
struct EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A_marshaled_pinvoke
{
Il2CppIUnknown* ___target_0;
MethodInfo_t * ___method_1;
};
// Native definition for COM marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/NativeOrStaticEventRegistrationImpl/EventCacheKey
struct EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A_marshaled_com
{
Il2CppIUnknown* ___target_0;
MethodInfo_t * ___method_1;
};
#endif // EVENTCACHEKEY_T049C851B67DA89C466CF3B568E2BB3C3BE7C854A_H
#ifndef SBYTE_T9070AEA2966184235653CB9B4D33B149CDA831DF_H
#define SBYTE_T9070AEA2966184235653CB9B4D33B149CDA831DF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SBYTE_T9070AEA2966184235653CB9B4D33B149CDA831DF_H
#ifndef SINGLE_TDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_H
#define SINGLE_TDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SINGLE_TDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_H
#ifndef SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H
#define SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H
#ifndef LOWERCASEMAPPING_T3F087D71A4D7A309FD5492CE33501FD4F4709D7B_H
#define LOWERCASEMAPPING_T3F087D71A4D7A309FD5492CE33501FD4F4709D7B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // LOWERCASEMAPPING_T3F087D71A4D7A309FD5492CE33501FD4F4709D7B_H
#ifndef SPARSELYPOPULATEDARRAYADDINFO_1_T0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE_H
#define SPARSELYPOPULATEDARRAYADDINFO_1_T0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___m_source_0), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SPARSELYPOPULATEDARRAYADDINFO_1_T0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE_H
#ifndef INDEXRANGE_TF93C5B850DC728C38488CD590D3810F2B2F84251_H
#define INDEXRANGE_TF93C5B850DC728C38488CD590D3810F2B2F84251_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.IndexRange
struct IndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251
{
public:
// System.Int64 System.Threading.Tasks.IndexRange::m_nFromInclusive
int64_t ___m_nFromInclusive_0;
// System.Int64 System.Threading.Tasks.IndexRange::m_nToExclusive
int64_t ___m_nToExclusive_1;
// System.Threading.Tasks.Shared`1<System.Int64> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.IndexRange::m_nSharedCurrentIndexOffset
Shared_1_t413E7EECDF9A42C4D2F6175BE1988CC4A455B164 * ___m_nSharedCurrentIndexOffset_2;
// System.Int32 System.Threading.Tasks.IndexRange::m_bRangeFinished
int32_t ___m_bRangeFinished_3;
public:
inline static int32_t get_offset_of_m_nFromInclusive_0() { return static_cast<int32_t>(offsetof(IndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251, ___m_nFromInclusive_0)); }
inline int64_t get_m_nFromInclusive_0() const { return ___m_nFromInclusive_0; }
inline int64_t* get_address_of_m_nFromInclusive_0() { return &___m_nFromInclusive_0; }
inline void set_m_nFromInclusive_0(int64_t value)
{
___m_nFromInclusive_0 = value;
}
inline static int32_t get_offset_of_m_nToExclusive_1() { return static_cast<int32_t>(offsetof(IndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251, ___m_nToExclusive_1)); }
inline int64_t get_m_nToExclusive_1() const { return ___m_nToExclusive_1; }
inline int64_t* get_address_of_m_nToExclusive_1() { return &___m_nToExclusive_1; }
inline void set_m_nToExclusive_1(int64_t value)
{
___m_nToExclusive_1 = value;
}
inline static int32_t get_offset_of_m_nSharedCurrentIndexOffset_2() { return static_cast<int32_t>(offsetof(IndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251, ___m_nSharedCurrentIndexOffset_2)); }
inline Shared_1_t413E7EECDF9A42C4D2F6175BE1988CC4A455B164 * get_m_nSharedCurrentIndexOffset_2() const { return ___m_nSharedCurrentIndexOffset_2; }
inline Shared_1_t413E7EECDF9A42C4D2F6175BE1988CC4A455B164 ** get_address_of_m_nSharedCurrentIndexOffset_2() { return &___m_nSharedCurrentIndexOffset_2; }
inline void set_m_nSharedCurrentIndexOffset_2(Shared_1_t413E7EECDF9A42C4D2F6175BE1988CC4A455B164 * value)
{
___m_nSharedCurrentIndexOffset_2 = value;
Il2CppCodeGenWriteBarrier((&___m_nSharedCurrentIndexOffset_2), value);
}
inline static int32_t get_offset_of_m_bRangeFinished_3() { return static_cast<int32_t>(offsetof(IndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251, ___m_bRangeFinished_3)); }
inline int32_t get_m_bRangeFinished_3() const { return ___m_bRangeFinished_3; }
inline int32_t* get_address_of_m_bRangeFinished_3() { return &___m_bRangeFinished_3; }
inline void set_m_bRangeFinished_3(int32_t value)
{
___m_bRangeFinished_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INDEXRANGE_TF93C5B850DC728C38488CD590D3810F2B2F84251_H
#ifndef UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H
#define UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt16
struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E
{
public:
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); }
inline uint16_t get_m_value_0() const { return ___m_value_0; }
inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint16_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H
#ifndef UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H
#define UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt32
struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H
#ifndef UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H
#define UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt64
struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E
{
public:
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H
#ifndef VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H
#define VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H
#ifndef SEQUENCECONSTRUCTPOSCONTEXT_T72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_H
#define SEQUENCECONSTRUCTPOSCONTEXT_T72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.Schema.SequenceNode_SequenceConstructPosContext
struct SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1
{
public:
// System.Xml.Schema.SequenceNode System.Xml.Schema.SequenceNode_SequenceConstructPosContext::this_
SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608 * ___this__0;
// System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode_SequenceConstructPosContext::firstpos
BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___firstpos_1;
// System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode_SequenceConstructPosContext::lastpos
BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___lastpos_2;
// System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode_SequenceConstructPosContext::lastposLeft
BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___lastposLeft_3;
// System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode_SequenceConstructPosContext::firstposRight
BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___firstposRight_4;
public:
inline static int32_t get_offset_of_this__0() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1, ___this__0)); }
inline SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608 * get_this__0() const { return ___this__0; }
inline SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608 ** get_address_of_this__0() { return &___this__0; }
inline void set_this__0(SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608 * value)
{
___this__0 = value;
Il2CppCodeGenWriteBarrier((&___this__0), value);
}
inline static int32_t get_offset_of_firstpos_1() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1, ___firstpos_1)); }
inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C * get_firstpos_1() const { return ___firstpos_1; }
inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C ** get_address_of_firstpos_1() { return &___firstpos_1; }
inline void set_firstpos_1(BitSet_t0E4C53EC600670A4B74C5671553596978880138C * value)
{
___firstpos_1 = value;
Il2CppCodeGenWriteBarrier((&___firstpos_1), value);
}
inline static int32_t get_offset_of_lastpos_2() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1, ___lastpos_2)); }
inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C * get_lastpos_2() const { return ___lastpos_2; }
inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C ** get_address_of_lastpos_2() { return &___lastpos_2; }
inline void set_lastpos_2(BitSet_t0E4C53EC600670A4B74C5671553596978880138C * value)
{
___lastpos_2 = value;
Il2CppCodeGenWriteBarrier((&___lastpos_2), value);
}
inline static int32_t get_offset_of_lastposLeft_3() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1, ___lastposLeft_3)); }
inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C * get_lastposLeft_3() const { return ___lastposLeft_3; }
inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C ** get_address_of_lastposLeft_3() { return &___lastposLeft_3; }
inline void set_lastposLeft_3(BitSet_t0E4C53EC600670A4B74C5671553596978880138C * value)
{
___lastposLeft_3 = value;
Il2CppCodeGenWriteBarrier((&___lastposLeft_3), value);
}
inline static int32_t get_offset_of_firstposRight_4() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1, ___firstposRight_4)); }
inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C * get_firstposRight_4() const { return ___firstposRight_4; }
inline BitSet_t0E4C53EC600670A4B74C5671553596978880138C ** get_address_of_firstposRight_4() { return &___firstposRight_4; }
inline void set_firstposRight_4(BitSet_t0E4C53EC600670A4B74C5671553596978880138C * value)
{
___firstposRight_4 = value;
Il2CppCodeGenWriteBarrier((&___firstposRight_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext
struct SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_marshaled_pinvoke
{
SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608 * ___this__0;
BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___firstpos_1;
BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___lastpos_2;
BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___lastposLeft_3;
BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___firstposRight_4;
};
// Native definition for COM marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext
struct SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_marshaled_com
{
SequenceNode_tAB18F790CB1B5BCD1D984EECC17C841B00881608 * ___this__0;
BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___firstpos_1;
BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___lastpos_2;
BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___lastposLeft_3;
BitSet_t0E4C53EC600670A4B74C5671553596978880138C * ___firstposRight_4;
};
#endif // SEQUENCECONSTRUCTPOSCONTEXT_T72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_H
#ifndef NAMESPACEDECLARATION_TFD9A771E0585F887CE869FA7D0FAD365A40D436A_H
#define NAMESPACEDECLARATION_TFD9A771E0585F887CE869FA7D0FAD365A40D436A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlNamespaceManager_NamespaceDeclaration
struct NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A
{
public:
// System.String System.Xml.XmlNamespaceManager_NamespaceDeclaration::prefix
String_t* ___prefix_0;
// System.String System.Xml.XmlNamespaceManager_NamespaceDeclaration::uri
String_t* ___uri_1;
// System.Int32 System.Xml.XmlNamespaceManager_NamespaceDeclaration::scopeId
int32_t ___scopeId_2;
// System.Int32 System.Xml.XmlNamespaceManager_NamespaceDeclaration::previousNsIndex
int32_t ___previousNsIndex_3;
public:
inline static int32_t get_offset_of_prefix_0() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A, ___prefix_0)); }
inline String_t* get_prefix_0() const { return ___prefix_0; }
inline String_t** get_address_of_prefix_0() { return &___prefix_0; }
inline void set_prefix_0(String_t* value)
{
___prefix_0 = value;
Il2CppCodeGenWriteBarrier((&___prefix_0), value);
}
inline static int32_t get_offset_of_uri_1() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A, ___uri_1)); }
inline String_t* get_uri_1() const { return ___uri_1; }
inline String_t** get_address_of_uri_1() { return &___uri_1; }
inline void set_uri_1(String_t* value)
{
___uri_1 = value;
Il2CppCodeGenWriteBarrier((&___uri_1), value);
}
inline static int32_t get_offset_of_scopeId_2() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A, ___scopeId_2)); }
inline int32_t get_scopeId_2() const { return ___scopeId_2; }
inline int32_t* get_address_of_scopeId_2() { return &___scopeId_2; }
inline void set_scopeId_2(int32_t value)
{
___scopeId_2 = value;
}
inline static int32_t get_offset_of_previousNsIndex_3() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A, ___previousNsIndex_3)); }
inline int32_t get_previousNsIndex_3() const { return ___previousNsIndex_3; }
inline int32_t* get_address_of_previousNsIndex_3() { return &___previousNsIndex_3; }
inline void set_previousNsIndex_3(int32_t value)
{
___previousNsIndex_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.XmlNamespaceManager/NamespaceDeclaration
struct NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_marshaled_pinvoke
{
char* ___prefix_0;
char* ___uri_1;
int32_t ___scopeId_2;
int32_t ___previousNsIndex_3;
};
// Native definition for COM marshalling of System.Xml.XmlNamespaceManager/NamespaceDeclaration
struct NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_marshaled_com
{
Il2CppChar* ___prefix_0;
Il2CppChar* ___uri_1;
int32_t ___scopeId_2;
int32_t ___previousNsIndex_3;
};
#endif // NAMESPACEDECLARATION_TFD9A771E0585F887CE869FA7D0FAD365A40D436A_H
#ifndef PARSINGSTATE_TE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_H
#define PARSINGSTATE_TE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlTextReaderImpl_ParsingState
struct ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2
{
public:
// System.Char[] System.Xml.XmlTextReaderImpl_ParsingState::chars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars_0;
// System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::charPos
int32_t ___charPos_1;
// System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::charsUsed
int32_t ___charsUsed_2;
// System.Text.Encoding System.Xml.XmlTextReaderImpl_ParsingState::encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_3;
// System.Boolean System.Xml.XmlTextReaderImpl_ParsingState::appendMode
bool ___appendMode_4;
// System.IO.Stream System.Xml.XmlTextReaderImpl_ParsingState::stream
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_5;
// System.Text.Decoder System.Xml.XmlTextReaderImpl_ParsingState::decoder
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ___decoder_6;
// System.Byte[] System.Xml.XmlTextReaderImpl_ParsingState::bytes
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes_7;
// System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::bytePos
int32_t ___bytePos_8;
// System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::bytesUsed
int32_t ___bytesUsed_9;
// System.IO.TextReader System.Xml.XmlTextReaderImpl_ParsingState::textReader
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___textReader_10;
// System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::lineNo
int32_t ___lineNo_11;
// System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::lineStartPos
int32_t ___lineStartPos_12;
// System.String System.Xml.XmlTextReaderImpl_ParsingState::baseUriStr
String_t* ___baseUriStr_13;
// System.Uri System.Xml.XmlTextReaderImpl_ParsingState::baseUri
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___baseUri_14;
// System.Boolean System.Xml.XmlTextReaderImpl_ParsingState::isEof
bool ___isEof_15;
// System.Boolean System.Xml.XmlTextReaderImpl_ParsingState::isStreamEof
bool ___isStreamEof_16;
// System.Xml.IDtdEntityInfo System.Xml.XmlTextReaderImpl_ParsingState::entity
RuntimeObject* ___entity_17;
// System.Int32 System.Xml.XmlTextReaderImpl_ParsingState::entityId
int32_t ___entityId_18;
// System.Boolean System.Xml.XmlTextReaderImpl_ParsingState::eolNormalized
bool ___eolNormalized_19;
// System.Boolean System.Xml.XmlTextReaderImpl_ParsingState::entityResolvedManually
bool ___entityResolvedManually_20;
public:
inline static int32_t get_offset_of_chars_0() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___chars_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_chars_0() const { return ___chars_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_chars_0() { return &___chars_0; }
inline void set_chars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___chars_0 = value;
Il2CppCodeGenWriteBarrier((&___chars_0), value);
}
inline static int32_t get_offset_of_charPos_1() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___charPos_1)); }
inline int32_t get_charPos_1() const { return ___charPos_1; }
inline int32_t* get_address_of_charPos_1() { return &___charPos_1; }
inline void set_charPos_1(int32_t value)
{
___charPos_1 = value;
}
inline static int32_t get_offset_of_charsUsed_2() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___charsUsed_2)); }
inline int32_t get_charsUsed_2() const { return ___charsUsed_2; }
inline int32_t* get_address_of_charsUsed_2() { return &___charsUsed_2; }
inline void set_charsUsed_2(int32_t value)
{
___charsUsed_2 = value;
}
inline static int32_t get_offset_of_encoding_3() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___encoding_3)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_3() const { return ___encoding_3; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_3() { return &___encoding_3; }
inline void set_encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___encoding_3 = value;
Il2CppCodeGenWriteBarrier((&___encoding_3), value);
}
inline static int32_t get_offset_of_appendMode_4() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___appendMode_4)); }
inline bool get_appendMode_4() const { return ___appendMode_4; }
inline bool* get_address_of_appendMode_4() { return &___appendMode_4; }
inline void set_appendMode_4(bool value)
{
___appendMode_4 = value;
}
inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___stream_5)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_5() const { return ___stream_5; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_5() { return &___stream_5; }
inline void set_stream_5(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
___stream_5 = value;
Il2CppCodeGenWriteBarrier((&___stream_5), value);
}
inline static int32_t get_offset_of_decoder_6() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___decoder_6)); }
inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * get_decoder_6() const { return ___decoder_6; }
inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 ** get_address_of_decoder_6() { return &___decoder_6; }
inline void set_decoder_6(Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * value)
{
___decoder_6 = value;
Il2CppCodeGenWriteBarrier((&___decoder_6), value);
}
inline static int32_t get_offset_of_bytes_7() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___bytes_7)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_bytes_7() const { return ___bytes_7; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_bytes_7() { return &___bytes_7; }
inline void set_bytes_7(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___bytes_7 = value;
Il2CppCodeGenWriteBarrier((&___bytes_7), value);
}
inline static int32_t get_offset_of_bytePos_8() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___bytePos_8)); }
inline int32_t get_bytePos_8() const { return ___bytePos_8; }
inline int32_t* get_address_of_bytePos_8() { return &___bytePos_8; }
inline void set_bytePos_8(int32_t value)
{
___bytePos_8 = value;
}
inline static int32_t get_offset_of_bytesUsed_9() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___bytesUsed_9)); }
inline int32_t get_bytesUsed_9() const { return ___bytesUsed_9; }
inline int32_t* get_address_of_bytesUsed_9() { return &___bytesUsed_9; }
inline void set_bytesUsed_9(int32_t value)
{
___bytesUsed_9 = value;
}
inline static int32_t get_offset_of_textReader_10() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___textReader_10)); }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_textReader_10() const { return ___textReader_10; }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_textReader_10() { return &___textReader_10; }
inline void set_textReader_10(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
{
___textReader_10 = value;
Il2CppCodeGenWriteBarrier((&___textReader_10), value);
}
inline static int32_t get_offset_of_lineNo_11() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___lineNo_11)); }
inline int32_t get_lineNo_11() const { return ___lineNo_11; }
inline int32_t* get_address_of_lineNo_11() { return &___lineNo_11; }
inline void set_lineNo_11(int32_t value)
{
___lineNo_11 = value;
}
inline static int32_t get_offset_of_lineStartPos_12() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___lineStartPos_12)); }
inline int32_t get_lineStartPos_12() const { return ___lineStartPos_12; }
inline int32_t* get_address_of_lineStartPos_12() { return &___lineStartPos_12; }
inline void set_lineStartPos_12(int32_t value)
{
___lineStartPos_12 = value;
}
inline static int32_t get_offset_of_baseUriStr_13() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___baseUriStr_13)); }
inline String_t* get_baseUriStr_13() const { return ___baseUriStr_13; }
inline String_t** get_address_of_baseUriStr_13() { return &___baseUriStr_13; }
inline void set_baseUriStr_13(String_t* value)
{
___baseUriStr_13 = value;
Il2CppCodeGenWriteBarrier((&___baseUriStr_13), value);
}
inline static int32_t get_offset_of_baseUri_14() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___baseUri_14)); }
inline Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * get_baseUri_14() const { return ___baseUri_14; }
inline Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E ** get_address_of_baseUri_14() { return &___baseUri_14; }
inline void set_baseUri_14(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * value)
{
___baseUri_14 = value;
Il2CppCodeGenWriteBarrier((&___baseUri_14), value);
}
inline static int32_t get_offset_of_isEof_15() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___isEof_15)); }
inline bool get_isEof_15() const { return ___isEof_15; }
inline bool* get_address_of_isEof_15() { return &___isEof_15; }
inline void set_isEof_15(bool value)
{
___isEof_15 = value;
}
inline static int32_t get_offset_of_isStreamEof_16() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___isStreamEof_16)); }
inline bool get_isStreamEof_16() const { return ___isStreamEof_16; }
inline bool* get_address_of_isStreamEof_16() { return &___isStreamEof_16; }
inline void set_isStreamEof_16(bool value)
{
___isStreamEof_16 = value;
}
inline static int32_t get_offset_of_entity_17() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___entity_17)); }
inline RuntimeObject* get_entity_17() const { return ___entity_17; }
inline RuntimeObject** get_address_of_entity_17() { return &___entity_17; }
inline void set_entity_17(RuntimeObject* value)
{
___entity_17 = value;
Il2CppCodeGenWriteBarrier((&___entity_17), value);
}
inline static int32_t get_offset_of_entityId_18() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___entityId_18)); }
inline int32_t get_entityId_18() const { return ___entityId_18; }
inline int32_t* get_address_of_entityId_18() { return &___entityId_18; }
inline void set_entityId_18(int32_t value)
{
___entityId_18 = value;
}
inline static int32_t get_offset_of_eolNormalized_19() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___eolNormalized_19)); }
inline bool get_eolNormalized_19() const { return ___eolNormalized_19; }
inline bool* get_address_of_eolNormalized_19() { return &___eolNormalized_19; }
inline void set_eolNormalized_19(bool value)
{
___eolNormalized_19 = value;
}
inline static int32_t get_offset_of_entityResolvedManually_20() { return static_cast<int32_t>(offsetof(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2, ___entityResolvedManually_20)); }
inline bool get_entityResolvedManually_20() const { return ___entityResolvedManually_20; }
inline bool* get_address_of_entityResolvedManually_20() { return &___entityResolvedManually_20; }
inline void set_entityResolvedManually_20(bool value)
{
___entityResolvedManually_20 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.XmlTextReaderImpl/ParsingState
struct ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_marshaled_pinvoke
{
uint8_t* ___chars_0;
int32_t ___charPos_1;
int32_t ___charsUsed_2;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_3;
int32_t ___appendMode_4;
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_5;
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ___decoder_6;
uint8_t* ___bytes_7;
int32_t ___bytePos_8;
int32_t ___bytesUsed_9;
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___textReader_10;
int32_t ___lineNo_11;
int32_t ___lineStartPos_12;
char* ___baseUriStr_13;
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___baseUri_14;
int32_t ___isEof_15;
int32_t ___isStreamEof_16;
RuntimeObject* ___entity_17;
int32_t ___entityId_18;
int32_t ___eolNormalized_19;
int32_t ___entityResolvedManually_20;
};
// Native definition for COM marshalling of System.Xml.XmlTextReaderImpl/ParsingState
struct ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_marshaled_com
{
uint8_t* ___chars_0;
int32_t ___charPos_1;
int32_t ___charsUsed_2;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_3;
int32_t ___appendMode_4;
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_5;
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ___decoder_6;
uint8_t* ___bytes_7;
int32_t ___bytePos_8;
int32_t ___bytesUsed_9;
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___textReader_10;
int32_t ___lineNo_11;
int32_t ___lineStartPos_12;
Il2CppChar* ___baseUriStr_13;
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___baseUri_14;
int32_t ___isEof_15;
int32_t ___isStreamEof_16;
RuntimeObject* ___entity_17;
int32_t ___entityId_18;
int32_t ___eolNormalized_19;
int32_t ___entityResolvedManually_20;
};
#endif // PARSINGSTATE_TE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_H
#ifndef MATERIALREFERENCE_TFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_H
#define MATERIALREFERENCE_TFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.MaterialReference
struct MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F
{
public:
// System.Int32 TMPro.MaterialReference::index
int32_t ___index_0;
// TMPro.TMP_FontAsset TMPro.MaterialReference::fontAsset
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_1;
// TMPro.TMP_SpriteAsset TMPro.MaterialReference::spriteAsset
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_2;
// UnityEngine.Material TMPro.MaterialReference::material
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_3;
// System.Boolean TMPro.MaterialReference::isDefaultMaterial
bool ___isDefaultMaterial_4;
// System.Boolean TMPro.MaterialReference::isFallbackMaterial
bool ___isFallbackMaterial_5;
// UnityEngine.Material TMPro.MaterialReference::fallbackMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___fallbackMaterial_6;
// System.Single TMPro.MaterialReference::padding
float ___padding_7;
// System.Int32 TMPro.MaterialReference::referenceCount
int32_t ___referenceCount_8;
public:
inline static int32_t get_offset_of_index_0() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___index_0)); }
inline int32_t get_index_0() const { return ___index_0; }
inline int32_t* get_address_of_index_0() { return &___index_0; }
inline void set_index_0(int32_t value)
{
___index_0 = value;
}
inline static int32_t get_offset_of_fontAsset_1() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___fontAsset_1)); }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * get_fontAsset_1() const { return ___fontAsset_1; }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C ** get_address_of_fontAsset_1() { return &___fontAsset_1; }
inline void set_fontAsset_1(TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * value)
{
___fontAsset_1 = value;
Il2CppCodeGenWriteBarrier((&___fontAsset_1), value);
}
inline static int32_t get_offset_of_spriteAsset_2() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___spriteAsset_2)); }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * get_spriteAsset_2() const { return ___spriteAsset_2; }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 ** get_address_of_spriteAsset_2() { return &___spriteAsset_2; }
inline void set_spriteAsset_2(TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * value)
{
___spriteAsset_2 = value;
Il2CppCodeGenWriteBarrier((&___spriteAsset_2), value);
}
inline static int32_t get_offset_of_material_3() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___material_3)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_material_3() const { return ___material_3; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_material_3() { return &___material_3; }
inline void set_material_3(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___material_3 = value;
Il2CppCodeGenWriteBarrier((&___material_3), value);
}
inline static int32_t get_offset_of_isDefaultMaterial_4() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___isDefaultMaterial_4)); }
inline bool get_isDefaultMaterial_4() const { return ___isDefaultMaterial_4; }
inline bool* get_address_of_isDefaultMaterial_4() { return &___isDefaultMaterial_4; }
inline void set_isDefaultMaterial_4(bool value)
{
___isDefaultMaterial_4 = value;
}
inline static int32_t get_offset_of_isFallbackMaterial_5() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___isFallbackMaterial_5)); }
inline bool get_isFallbackMaterial_5() const { return ___isFallbackMaterial_5; }
inline bool* get_address_of_isFallbackMaterial_5() { return &___isFallbackMaterial_5; }
inline void set_isFallbackMaterial_5(bool value)
{
___isFallbackMaterial_5 = value;
}
inline static int32_t get_offset_of_fallbackMaterial_6() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___fallbackMaterial_6)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_fallbackMaterial_6() const { return ___fallbackMaterial_6; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_fallbackMaterial_6() { return &___fallbackMaterial_6; }
inline void set_fallbackMaterial_6(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___fallbackMaterial_6 = value;
Il2CppCodeGenWriteBarrier((&___fallbackMaterial_6), value);
}
inline static int32_t get_offset_of_padding_7() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___padding_7)); }
inline float get_padding_7() const { return ___padding_7; }
inline float* get_address_of_padding_7() { return &___padding_7; }
inline void set_padding_7(float value)
{
___padding_7 = value;
}
inline static int32_t get_offset_of_referenceCount_8() { return static_cast<int32_t>(offsetof(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F, ___referenceCount_8)); }
inline int32_t get_referenceCount_8() const { return ___referenceCount_8; }
inline int32_t* get_address_of_referenceCount_8() { return &___referenceCount_8; }
inline void set_referenceCount_8(int32_t value)
{
___referenceCount_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of TMPro.MaterialReference
struct MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_marshaled_pinvoke
{
int32_t ___index_0;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_1;
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_2;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_3;
int32_t ___isDefaultMaterial_4;
int32_t ___isFallbackMaterial_5;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___fallbackMaterial_6;
float ___padding_7;
int32_t ___referenceCount_8;
};
// Native definition for COM marshalling of TMPro.MaterialReference
struct MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_marshaled_com
{
int32_t ___index_0;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_1;
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_2;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_3;
int32_t ___isDefaultMaterial_4;
int32_t ___isFallbackMaterial_5;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___fallbackMaterial_6;
float ___padding_7;
int32_t ___referenceCount_8;
};
#endif // MATERIALREFERENCE_TFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_H
#ifndef TMP_FONTWEIGHTPAIR_T14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_H
#define TMP_FONTWEIGHTPAIR_T14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.TMP_FontWeightPair
struct TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3
{
public:
// TMPro.TMP_FontAsset TMPro.TMP_FontWeightPair::regularTypeface
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___regularTypeface_0;
// TMPro.TMP_FontAsset TMPro.TMP_FontWeightPair::italicTypeface
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___italicTypeface_1;
public:
inline static int32_t get_offset_of_regularTypeface_0() { return static_cast<int32_t>(offsetof(TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3, ___regularTypeface_0)); }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * get_regularTypeface_0() const { return ___regularTypeface_0; }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C ** get_address_of_regularTypeface_0() { return &___regularTypeface_0; }
inline void set_regularTypeface_0(TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * value)
{
___regularTypeface_0 = value;
Il2CppCodeGenWriteBarrier((&___regularTypeface_0), value);
}
inline static int32_t get_offset_of_italicTypeface_1() { return static_cast<int32_t>(offsetof(TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3, ___italicTypeface_1)); }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * get_italicTypeface_1() const { return ___italicTypeface_1; }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C ** get_address_of_italicTypeface_1() { return &___italicTypeface_1; }
inline void set_italicTypeface_1(TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * value)
{
___italicTypeface_1 = value;
Il2CppCodeGenWriteBarrier((&___italicTypeface_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of TMPro.TMP_FontWeightPair
struct TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_marshaled_pinvoke
{
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___regularTypeface_0;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___italicTypeface_1;
};
// Native definition for COM marshalling of TMPro.TMP_FontWeightPair
struct TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_marshaled_com
{
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___regularTypeface_0;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___italicTypeface_1;
};
#endif // TMP_FONTWEIGHTPAIR_T14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_H
#ifndef TMP_LINKINFO_T7F4B699290A975144DF7094667825BCD52594468_H
#define TMP_LINKINFO_T7F4B699290A975144DF7094667825BCD52594468_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.TMP_LinkInfo
struct TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468
{
public:
// TMPro.TMP_Text TMPro.TMP_LinkInfo::textComponent
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___textComponent_0;
// System.Int32 TMPro.TMP_LinkInfo::hashCode
int32_t ___hashCode_1;
// System.Int32 TMPro.TMP_LinkInfo::linkIdFirstCharacterIndex
int32_t ___linkIdFirstCharacterIndex_2;
// System.Int32 TMPro.TMP_LinkInfo::linkIdLength
int32_t ___linkIdLength_3;
// System.Int32 TMPro.TMP_LinkInfo::linkTextfirstCharacterIndex
int32_t ___linkTextfirstCharacterIndex_4;
// System.Int32 TMPro.TMP_LinkInfo::linkTextLength
int32_t ___linkTextLength_5;
// System.Char[] TMPro.TMP_LinkInfo::linkID
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___linkID_6;
public:
inline static int32_t get_offset_of_textComponent_0() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___textComponent_0)); }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * get_textComponent_0() const { return ___textComponent_0; }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 ** get_address_of_textComponent_0() { return &___textComponent_0; }
inline void set_textComponent_0(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * value)
{
___textComponent_0 = value;
Il2CppCodeGenWriteBarrier((&___textComponent_0), value);
}
inline static int32_t get_offset_of_hashCode_1() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___hashCode_1)); }
inline int32_t get_hashCode_1() const { return ___hashCode_1; }
inline int32_t* get_address_of_hashCode_1() { return &___hashCode_1; }
inline void set_hashCode_1(int32_t value)
{
___hashCode_1 = value;
}
inline static int32_t get_offset_of_linkIdFirstCharacterIndex_2() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___linkIdFirstCharacterIndex_2)); }
inline int32_t get_linkIdFirstCharacterIndex_2() const { return ___linkIdFirstCharacterIndex_2; }
inline int32_t* get_address_of_linkIdFirstCharacterIndex_2() { return &___linkIdFirstCharacterIndex_2; }
inline void set_linkIdFirstCharacterIndex_2(int32_t value)
{
___linkIdFirstCharacterIndex_2 = value;
}
inline static int32_t get_offset_of_linkIdLength_3() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___linkIdLength_3)); }
inline int32_t get_linkIdLength_3() const { return ___linkIdLength_3; }
inline int32_t* get_address_of_linkIdLength_3() { return &___linkIdLength_3; }
inline void set_linkIdLength_3(int32_t value)
{
___linkIdLength_3 = value;
}
inline static int32_t get_offset_of_linkTextfirstCharacterIndex_4() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___linkTextfirstCharacterIndex_4)); }
inline int32_t get_linkTextfirstCharacterIndex_4() const { return ___linkTextfirstCharacterIndex_4; }
inline int32_t* get_address_of_linkTextfirstCharacterIndex_4() { return &___linkTextfirstCharacterIndex_4; }
inline void set_linkTextfirstCharacterIndex_4(int32_t value)
{
___linkTextfirstCharacterIndex_4 = value;
}
inline static int32_t get_offset_of_linkTextLength_5() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___linkTextLength_5)); }
inline int32_t get_linkTextLength_5() const { return ___linkTextLength_5; }
inline int32_t* get_address_of_linkTextLength_5() { return &___linkTextLength_5; }
inline void set_linkTextLength_5(int32_t value)
{
___linkTextLength_5 = value;
}
inline static int32_t get_offset_of_linkID_6() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468, ___linkID_6)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_linkID_6() const { return ___linkID_6; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_linkID_6() { return &___linkID_6; }
inline void set_linkID_6(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___linkID_6 = value;
Il2CppCodeGenWriteBarrier((&___linkID_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of TMPro.TMP_LinkInfo
struct TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_marshaled_pinvoke
{
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___textComponent_0;
int32_t ___hashCode_1;
int32_t ___linkIdFirstCharacterIndex_2;
int32_t ___linkIdLength_3;
int32_t ___linkTextfirstCharacterIndex_4;
int32_t ___linkTextLength_5;
uint8_t* ___linkID_6;
};
// Native definition for COM marshalling of TMPro.TMP_LinkInfo
struct TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_marshaled_com
{
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___textComponent_0;
int32_t ___hashCode_1;
int32_t ___linkIdFirstCharacterIndex_2;
int32_t ___linkIdLength_3;
int32_t ___linkTextfirstCharacterIndex_4;
int32_t ___linkTextLength_5;
uint8_t* ___linkID_6;
};
#endif // TMP_LINKINFO_T7F4B699290A975144DF7094667825BCD52594468_H
#ifndef TMP_PAGEINFO_T5D305B11116379997CA9649E8D87B3D7162ABB24_H
#define TMP_PAGEINFO_T5D305B11116379997CA9649E8D87B3D7162ABB24_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.TMP_PageInfo
struct TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24
{
public:
// System.Int32 TMPro.TMP_PageInfo::firstCharacterIndex
int32_t ___firstCharacterIndex_0;
// System.Int32 TMPro.TMP_PageInfo::lastCharacterIndex
int32_t ___lastCharacterIndex_1;
// System.Single TMPro.TMP_PageInfo::ascender
float ___ascender_2;
// System.Single TMPro.TMP_PageInfo::baseLine
float ___baseLine_3;
// System.Single TMPro.TMP_PageInfo::descender
float ___descender_4;
public:
inline static int32_t get_offset_of_firstCharacterIndex_0() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24, ___firstCharacterIndex_0)); }
inline int32_t get_firstCharacterIndex_0() const { return ___firstCharacterIndex_0; }
inline int32_t* get_address_of_firstCharacterIndex_0() { return &___firstCharacterIndex_0; }
inline void set_firstCharacterIndex_0(int32_t value)
{
___firstCharacterIndex_0 = value;
}
inline static int32_t get_offset_of_lastCharacterIndex_1() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24, ___lastCharacterIndex_1)); }
inline int32_t get_lastCharacterIndex_1() const { return ___lastCharacterIndex_1; }
inline int32_t* get_address_of_lastCharacterIndex_1() { return &___lastCharacterIndex_1; }
inline void set_lastCharacterIndex_1(int32_t value)
{
___lastCharacterIndex_1 = value;
}
inline static int32_t get_offset_of_ascender_2() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24, ___ascender_2)); }
inline float get_ascender_2() const { return ___ascender_2; }
inline float* get_address_of_ascender_2() { return &___ascender_2; }
inline void set_ascender_2(float value)
{
___ascender_2 = value;
}
inline static int32_t get_offset_of_baseLine_3() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24, ___baseLine_3)); }
inline float get_baseLine_3() const { return ___baseLine_3; }
inline float* get_address_of_baseLine_3() { return &___baseLine_3; }
inline void set_baseLine_3(float value)
{
___baseLine_3 = value;
}
inline static int32_t get_offset_of_descender_4() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24, ___descender_4)); }
inline float get_descender_4() const { return ___descender_4; }
inline float* get_address_of_descender_4() { return &___descender_4; }
inline void set_descender_4(float value)
{
___descender_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TMP_PAGEINFO_T5D305B11116379997CA9649E8D87B3D7162ABB24_H
#ifndef UNICODECHAR_T29383F22AA9A3AA4A2061312113FDF2887834F2A_H
#define UNICODECHAR_T29383F22AA9A3AA4A2061312113FDF2887834F2A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.TMP_Text_UnicodeChar
struct UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A
{
public:
// System.Int32 TMPro.TMP_Text_UnicodeChar::unicode
int32_t ___unicode_0;
// System.Int32 TMPro.TMP_Text_UnicodeChar::stringIndex
int32_t ___stringIndex_1;
// System.Int32 TMPro.TMP_Text_UnicodeChar::length
int32_t ___length_2;
public:
inline static int32_t get_offset_of_unicode_0() { return static_cast<int32_t>(offsetof(UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A, ___unicode_0)); }
inline int32_t get_unicode_0() const { return ___unicode_0; }
inline int32_t* get_address_of_unicode_0() { return &___unicode_0; }
inline void set_unicode_0(int32_t value)
{
___unicode_0 = value;
}
inline static int32_t get_offset_of_stringIndex_1() { return static_cast<int32_t>(offsetof(UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A, ___stringIndex_1)); }
inline int32_t get_stringIndex_1() const { return ___stringIndex_1; }
inline int32_t* get_address_of_stringIndex_1() { return &___stringIndex_1; }
inline void set_stringIndex_1(int32_t value)
{
___stringIndex_1 = value;
}
inline static int32_t get_offset_of_length_2() { return static_cast<int32_t>(offsetof(UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNICODECHAR_T29383F22AA9A3AA4A2061312113FDF2887834F2A_H
#ifndef TMP_WORDINFO_T856E4994B49881E370B28E1D0C35EEDA56120D90_H
#define TMP_WORDINFO_T856E4994B49881E370B28E1D0C35EEDA56120D90_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.TMP_WordInfo
struct TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90
{
public:
// TMPro.TMP_Text TMPro.TMP_WordInfo::textComponent
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___textComponent_0;
// System.Int32 TMPro.TMP_WordInfo::firstCharacterIndex
int32_t ___firstCharacterIndex_1;
// System.Int32 TMPro.TMP_WordInfo::lastCharacterIndex
int32_t ___lastCharacterIndex_2;
// System.Int32 TMPro.TMP_WordInfo::characterCount
int32_t ___characterCount_3;
public:
inline static int32_t get_offset_of_textComponent_0() { return static_cast<int32_t>(offsetof(TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90, ___textComponent_0)); }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * get_textComponent_0() const { return ___textComponent_0; }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 ** get_address_of_textComponent_0() { return &___textComponent_0; }
inline void set_textComponent_0(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * value)
{
___textComponent_0 = value;
Il2CppCodeGenWriteBarrier((&___textComponent_0), value);
}
inline static int32_t get_offset_of_firstCharacterIndex_1() { return static_cast<int32_t>(offsetof(TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90, ___firstCharacterIndex_1)); }
inline int32_t get_firstCharacterIndex_1() const { return ___firstCharacterIndex_1; }
inline int32_t* get_address_of_firstCharacterIndex_1() { return &___firstCharacterIndex_1; }
inline void set_firstCharacterIndex_1(int32_t value)
{
___firstCharacterIndex_1 = value;
}
inline static int32_t get_offset_of_lastCharacterIndex_2() { return static_cast<int32_t>(offsetof(TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90, ___lastCharacterIndex_2)); }
inline int32_t get_lastCharacterIndex_2() const { return ___lastCharacterIndex_2; }
inline int32_t* get_address_of_lastCharacterIndex_2() { return &___lastCharacterIndex_2; }
inline void set_lastCharacterIndex_2(int32_t value)
{
___lastCharacterIndex_2 = value;
}
inline static int32_t get_offset_of_characterCount_3() { return static_cast<int32_t>(offsetof(TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90, ___characterCount_3)); }
inline int32_t get_characterCount_3() const { return ___characterCount_3; }
inline int32_t* get_address_of_characterCount_3() { return &___characterCount_3; }
inline void set_characterCount_3(int32_t value)
{
___characterCount_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of TMPro.TMP_WordInfo
struct TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_marshaled_pinvoke
{
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___textComponent_0;
int32_t ___firstCharacterIndex_1;
int32_t ___lastCharacterIndex_2;
int32_t ___characterCount_3;
};
// Native definition for COM marshalling of TMPro.TMP_WordInfo
struct TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_marshaled_com
{
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___textComponent_0;
int32_t ___firstCharacterIndex_1;
int32_t ___lastCharacterIndex_2;
int32_t ___characterCount_3;
};
#endif // TMP_WORDINFO_T856E4994B49881E370B28E1D0C35EEDA56120D90_H
#ifndef ORDERBLOCK_T3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_H
#define ORDERBLOCK_T3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___callback_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // ORDERBLOCK_T3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_H
#ifndef BONEWEIGHT_T9D77A4964F9376FE7E46CA6997882B91B8AAA9A1_H
#define BONEWEIGHT_T9D77A4964F9376FE7E46CA6997882B91B8AAA9A1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.BoneWeight
struct BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1
{
public:
// System.Single UnityEngine.BoneWeight::m_Weight0
float ___m_Weight0_0;
// System.Single UnityEngine.BoneWeight::m_Weight1
float ___m_Weight1_1;
// System.Single UnityEngine.BoneWeight::m_Weight2
float ___m_Weight2_2;
// System.Single UnityEngine.BoneWeight::m_Weight3
float ___m_Weight3_3;
// System.Int32 UnityEngine.BoneWeight::m_BoneIndex0
int32_t ___m_BoneIndex0_4;
// System.Int32 UnityEngine.BoneWeight::m_BoneIndex1
int32_t ___m_BoneIndex1_5;
// System.Int32 UnityEngine.BoneWeight::m_BoneIndex2
int32_t ___m_BoneIndex2_6;
// System.Int32 UnityEngine.BoneWeight::m_BoneIndex3
int32_t ___m_BoneIndex3_7;
public:
inline static int32_t get_offset_of_m_Weight0_0() { return static_cast<int32_t>(offsetof(BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1, ___m_Weight0_0)); }
inline float get_m_Weight0_0() const { return ___m_Weight0_0; }
inline float* get_address_of_m_Weight0_0() { return &___m_Weight0_0; }
inline void set_m_Weight0_0(float value)
{
___m_Weight0_0 = value;
}
inline static int32_t get_offset_of_m_Weight1_1() { return static_cast<int32_t>(offsetof(BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1, ___m_Weight1_1)); }
inline float get_m_Weight1_1() const { return ___m_Weight1_1; }
inline float* get_address_of_m_Weight1_1() { return &___m_Weight1_1; }
inline void set_m_Weight1_1(float value)
{
___m_Weight1_1 = value;
}
inline static int32_t get_offset_of_m_Weight2_2() { return static_cast<int32_t>(offsetof(BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1, ___m_Weight2_2)); }
inline float get_m_Weight2_2() const { return ___m_Weight2_2; }
inline float* get_address_of_m_Weight2_2() { return &___m_Weight2_2; }
inline void set_m_Weight2_2(float value)
{
___m_Weight2_2 = value;
}
inline static int32_t get_offset_of_m_Weight3_3() { return static_cast<int32_t>(offsetof(BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1, ___m_Weight3_3)); }
inline float get_m_Weight3_3() const { return ___m_Weight3_3; }
inline float* get_address_of_m_Weight3_3() { return &___m_Weight3_3; }
inline void set_m_Weight3_3(float value)
{
___m_Weight3_3 = value;
}
inline static int32_t get_offset_of_m_BoneIndex0_4() { return static_cast<int32_t>(offsetof(BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1, ___m_BoneIndex0_4)); }
inline int32_t get_m_BoneIndex0_4() const { return ___m_BoneIndex0_4; }
inline int32_t* get_address_of_m_BoneIndex0_4() { return &___m_BoneIndex0_4; }
inline void set_m_BoneIndex0_4(int32_t value)
{
___m_BoneIndex0_4 = value;
}
inline static int32_t get_offset_of_m_BoneIndex1_5() { return static_cast<int32_t>(offsetof(BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1, ___m_BoneIndex1_5)); }
inline int32_t get_m_BoneIndex1_5() const { return ___m_BoneIndex1_5; }
inline int32_t* get_address_of_m_BoneIndex1_5() { return &___m_BoneIndex1_5; }
inline void set_m_BoneIndex1_5(int32_t value)
{
___m_BoneIndex1_5 = value;
}
inline static int32_t get_offset_of_m_BoneIndex2_6() { return static_cast<int32_t>(offsetof(BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1, ___m_BoneIndex2_6)); }
inline int32_t get_m_BoneIndex2_6() const { return ___m_BoneIndex2_6; }
inline int32_t* get_address_of_m_BoneIndex2_6() { return &___m_BoneIndex2_6; }
inline void set_m_BoneIndex2_6(int32_t value)
{
___m_BoneIndex2_6 = value;
}
inline static int32_t get_offset_of_m_BoneIndex3_7() { return static_cast<int32_t>(offsetof(BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1, ___m_BoneIndex3_7)); }
inline int32_t get_m_BoneIndex3_7() const { return ___m_BoneIndex3_7; }
inline int32_t* get_address_of_m_BoneIndex3_7() { return &___m_BoneIndex3_7; }
inline void set_m_BoneIndex3_7(int32_t value)
{
___m_BoneIndex3_7 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BONEWEIGHT_T9D77A4964F9376FE7E46CA6997882B91B8AAA9A1_H
#ifndef COLOR_T119BCA590009762C7223FDD3AF9706653AC84ED2_H
#define COLOR_T119BCA590009762C7223FDD3AF9706653AC84ED2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLOR_T119BCA590009762C7223FDD3AF9706653AC84ED2_H
#ifndef COLOR32_T23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_H
#define COLOR32_T23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLOR32_T23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_H
#ifndef TILECOORD_T51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_H
#define TILECOORD_T51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TILECOORD_T51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_H
#ifndef FRAMETIMING_TAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC_H
#define FRAMETIMING_TAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.FrameTiming
struct FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC
{
public:
// System.UInt64 UnityEngine.FrameTiming::cpuTimePresentCalled
uint64_t ___cpuTimePresentCalled_0;
// System.Double UnityEngine.FrameTiming::cpuFrameTime
double ___cpuFrameTime_1;
// System.UInt64 UnityEngine.FrameTiming::cpuTimeFrameComplete
uint64_t ___cpuTimeFrameComplete_2;
// System.Double UnityEngine.FrameTiming::gpuFrameTime
double ___gpuFrameTime_3;
// System.Single UnityEngine.FrameTiming::heightScale
float ___heightScale_4;
// System.Single UnityEngine.FrameTiming::widthScale
float ___widthScale_5;
// System.UInt32 UnityEngine.FrameTiming::syncInterval
uint32_t ___syncInterval_6;
public:
inline static int32_t get_offset_of_cpuTimePresentCalled_0() { return static_cast<int32_t>(offsetof(FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC, ___cpuTimePresentCalled_0)); }
inline uint64_t get_cpuTimePresentCalled_0() const { return ___cpuTimePresentCalled_0; }
inline uint64_t* get_address_of_cpuTimePresentCalled_0() { return &___cpuTimePresentCalled_0; }
inline void set_cpuTimePresentCalled_0(uint64_t value)
{
___cpuTimePresentCalled_0 = value;
}
inline static int32_t get_offset_of_cpuFrameTime_1() { return static_cast<int32_t>(offsetof(FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC, ___cpuFrameTime_1)); }
inline double get_cpuFrameTime_1() const { return ___cpuFrameTime_1; }
inline double* get_address_of_cpuFrameTime_1() { return &___cpuFrameTime_1; }
inline void set_cpuFrameTime_1(double value)
{
___cpuFrameTime_1 = value;
}
inline static int32_t get_offset_of_cpuTimeFrameComplete_2() { return static_cast<int32_t>(offsetof(FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC, ___cpuTimeFrameComplete_2)); }
inline uint64_t get_cpuTimeFrameComplete_2() const { return ___cpuTimeFrameComplete_2; }
inline uint64_t* get_address_of_cpuTimeFrameComplete_2() { return &___cpuTimeFrameComplete_2; }
inline void set_cpuTimeFrameComplete_2(uint64_t value)
{
___cpuTimeFrameComplete_2 = value;
}
inline static int32_t get_offset_of_gpuFrameTime_3() { return static_cast<int32_t>(offsetof(FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC, ___gpuFrameTime_3)); }
inline double get_gpuFrameTime_3() const { return ___gpuFrameTime_3; }
inline double* get_address_of_gpuFrameTime_3() { return &___gpuFrameTime_3; }
inline void set_gpuFrameTime_3(double value)
{
___gpuFrameTime_3 = value;
}
inline static int32_t get_offset_of_heightScale_4() { return static_cast<int32_t>(offsetof(FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC, ___heightScale_4)); }
inline float get_heightScale_4() const { return ___heightScale_4; }
inline float* get_address_of_heightScale_4() { return &___heightScale_4; }
inline void set_heightScale_4(float value)
{
___heightScale_4 = value;
}
inline static int32_t get_offset_of_widthScale_5() { return static_cast<int32_t>(offsetof(FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC, ___widthScale_5)); }
inline float get_widthScale_5() const { return ___widthScale_5; }
inline float* get_address_of_widthScale_5() { return &___widthScale_5; }
inline void set_widthScale_5(float value)
{
___widthScale_5 = value;
}
inline static int32_t get_offset_of_syncInterval_6() { return static_cast<int32_t>(offsetof(FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC, ___syncInterval_6)); }
inline uint32_t get_syncInterval_6() const { return ___syncInterval_6; }
inline uint32_t* get_address_of_syncInterval_6() { return &___syncInterval_6; }
inline void set_syncInterval_6(uint32_t value)
{
___syncInterval_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FRAMETIMING_TAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC_H
#ifndef GRADIENTALPHAKEY_T4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_H
#define GRADIENTALPHAKEY_T4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.GradientAlphaKey
struct GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82
{
public:
// System.Single UnityEngine.GradientAlphaKey::alpha
float ___alpha_0;
// System.Single UnityEngine.GradientAlphaKey::time
float ___time_1;
public:
inline static int32_t get_offset_of_alpha_0() { return static_cast<int32_t>(offsetof(GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82, ___alpha_0)); }
inline float get_alpha_0() const { return ___alpha_0; }
inline float* get_address_of_alpha_0() { return &___alpha_0; }
inline void set_alpha_0(float value)
{
___alpha_0 = value;
}
inline static int32_t get_offset_of_time_1() { return static_cast<int32_t>(offsetof(GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82, ___time_1)); }
inline float get_time_1() const { return ___time_1; }
inline float* get_address_of_time_1() { return &___time_1; }
inline void set_time_1(float value)
{
___time_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GRADIENTALPHAKEY_T4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_H
#ifndef KEYFRAME_T9E945CACC5AC36E067B15A634096A223A06D2D74_H
#define KEYFRAME_T9E945CACC5AC36E067B15A634096A223A06D2D74_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYFRAME_T9E945CACC5AC36E067B15A634096A223A06D2D74_H
#ifndef LAYERMASK_TBB9173D8B6939D476E67E849280AC9F4EC4D93B0_H
#define LAYERMASK_TBB9173D8B6939D476E67E849280AC9F4EC4D93B0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LAYERMASK_TBB9173D8B6939D476E67E849280AC9F4EC4D93B0_H
#ifndef MATRIX4X4_T6BF60F70C9169DF14C9D2577672A44224B236ECA_H
#define MATRIX4X4_T6BF60F70C9169DF14C9D2577672A44224B236ECA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MATRIX4X4_T6BF60F70C9169DF14C9D2577672A44224B236ECA_H
#ifndef QUATERNION_T319F3319A7D43FFA5D819AD6C0A98851F0095357_H
#define QUATERNION_T319F3319A7D43FFA5D819AD6C0A98851F0095357_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // QUATERNION_T319F3319A7D43FFA5D819AD6C0A98851F0095357_H
#ifndef SCENE_T942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_H
#define SCENE_T942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SCENE_T942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_H
#ifndef HITINFO_T3DDACA0CB28E94463E17542FA7F04245A8AE1C12_H
#define HITINFO_T3DDACA0CB28E94463E17542FA7F04245A8AE1C12_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___target_0), 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((&___camera_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // HITINFO_T3DDACA0CB28E94463E17542FA7F04245A8AE1C12_H
#ifndef GLYPHMETRICS_T1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB_H
#define GLYPHMETRICS_T1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.TextCore.GlyphMetrics
struct GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB
{
public:
// System.Single UnityEngine.TextCore.GlyphMetrics::m_Width
float ___m_Width_0;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_Height
float ___m_Height_1;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_HorizontalBearingX
float ___m_HorizontalBearingX_2;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_HorizontalBearingY
float ___m_HorizontalBearingY_3;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_HorizontalAdvance
float ___m_HorizontalAdvance_4;
public:
inline static int32_t get_offset_of_m_Width_0() { return static_cast<int32_t>(offsetof(GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB, ___m_Width_0)); }
inline float get_m_Width_0() const { return ___m_Width_0; }
inline float* get_address_of_m_Width_0() { return &___m_Width_0; }
inline void set_m_Width_0(float value)
{
___m_Width_0 = value;
}
inline static int32_t get_offset_of_m_Height_1() { return static_cast<int32_t>(offsetof(GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB, ___m_Height_1)); }
inline float get_m_Height_1() const { return ___m_Height_1; }
inline float* get_address_of_m_Height_1() { return &___m_Height_1; }
inline void set_m_Height_1(float value)
{
___m_Height_1 = value;
}
inline static int32_t get_offset_of_m_HorizontalBearingX_2() { return static_cast<int32_t>(offsetof(GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB, ___m_HorizontalBearingX_2)); }
inline float get_m_HorizontalBearingX_2() const { return ___m_HorizontalBearingX_2; }
inline float* get_address_of_m_HorizontalBearingX_2() { return &___m_HorizontalBearingX_2; }
inline void set_m_HorizontalBearingX_2(float value)
{
___m_HorizontalBearingX_2 = value;
}
inline static int32_t get_offset_of_m_HorizontalBearingY_3() { return static_cast<int32_t>(offsetof(GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB, ___m_HorizontalBearingY_3)); }
inline float get_m_HorizontalBearingY_3() const { return ___m_HorizontalBearingY_3; }
inline float* get_address_of_m_HorizontalBearingY_3() { return &___m_HorizontalBearingY_3; }
inline void set_m_HorizontalBearingY_3(float value)
{
___m_HorizontalBearingY_3 = value;
}
inline static int32_t get_offset_of_m_HorizontalAdvance_4() { return static_cast<int32_t>(offsetof(GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB, ___m_HorizontalAdvance_4)); }
inline float get_m_HorizontalAdvance_4() const { return ___m_HorizontalAdvance_4; }
inline float* get_address_of_m_HorizontalAdvance_4() { return &___m_HorizontalAdvance_4; }
inline void set_m_HorizontalAdvance_4(float value)
{
___m_HorizontalAdvance_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GLYPHMETRICS_T1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB_H
#ifndef GLYPHRECT_T398045C795E0E1264236DFAA5712796CC23C3E7C_H
#define GLYPHRECT_T398045C795E0E1264236DFAA5712796CC23C3E7C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.TextCore.GlyphRect
struct GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C
{
public:
// System.Int32 UnityEngine.TextCore.GlyphRect::m_X
int32_t ___m_X_0;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Y
int32_t ___m_Y_1;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Width
int32_t ___m_Width_2;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Height
int32_t ___m_Height_3;
public:
inline static int32_t get_offset_of_m_X_0() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___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(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___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_Width_2() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___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(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___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;
}
};
struct GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_StaticFields
{
public:
// UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.GlyphRect::s_ZeroGlyphRect
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___s_ZeroGlyphRect_4;
public:
inline static int32_t get_offset_of_s_ZeroGlyphRect_4() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_StaticFields, ___s_ZeroGlyphRect_4)); }
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C get_s_ZeroGlyphRect_4() const { return ___s_ZeroGlyphRect_4; }
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * get_address_of_s_ZeroGlyphRect_4() { return &___s_ZeroGlyphRect_4; }
inline void set_s_ZeroGlyphRect_4(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C value)
{
___s_ZeroGlyphRect_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GLYPHRECT_T398045C795E0E1264236DFAA5712796CC23C3E7C_H
#ifndef GLYPHVALUERECORD_TC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D_H
#define GLYPHVALUERECORD_TC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.TextCore.LowLevel.GlyphValueRecord
struct GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D
{
public:
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_XPlacement
float ___m_XPlacement_0;
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_YPlacement
float ___m_YPlacement_1;
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_XAdvance
float ___m_XAdvance_2;
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_YAdvance
float ___m_YAdvance_3;
public:
inline static int32_t get_offset_of_m_XPlacement_0() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D, ___m_XPlacement_0)); }
inline float get_m_XPlacement_0() const { return ___m_XPlacement_0; }
inline float* get_address_of_m_XPlacement_0() { return &___m_XPlacement_0; }
inline void set_m_XPlacement_0(float value)
{
___m_XPlacement_0 = value;
}
inline static int32_t get_offset_of_m_YPlacement_1() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D, ___m_YPlacement_1)); }
inline float get_m_YPlacement_1() const { return ___m_YPlacement_1; }
inline float* get_address_of_m_YPlacement_1() { return &___m_YPlacement_1; }
inline void set_m_YPlacement_1(float value)
{
___m_YPlacement_1 = value;
}
inline static int32_t get_offset_of_m_XAdvance_2() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D, ___m_XAdvance_2)); }
inline float get_m_XAdvance_2() const { return ___m_XAdvance_2; }
inline float* get_address_of_m_XAdvance_2() { return &___m_XAdvance_2; }
inline void set_m_XAdvance_2(float value)
{
___m_XAdvance_2 = value;
}
inline static int32_t get_offset_of_m_YAdvance_3() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D, ___m_YAdvance_3)); }
inline float get_m_YAdvance_3() const { return ___m_YAdvance_3; }
inline float* get_address_of_m_YAdvance_3() { return &___m_YAdvance_3; }
inline void set_m_YAdvance_3(float value)
{
___m_YAdvance_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GLYPHVALUERECORD_TC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D_H
#ifndef SPRITESTATE_T58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_H
#define SPRITESTATE_T58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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_DisabledSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_2;
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((&___m_HighlightedSprite_0), 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((&___m_PressedSprite_1), value);
}
inline static int32_t get_offset_of_m_DisabledSprite_2() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_DisabledSprite_2)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_DisabledSprite_2() const { return ___m_DisabledSprite_2; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_DisabledSprite_2() { return &___m_DisabledSprite_2; }
inline void set_m_DisabledSprite_2(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_DisabledSprite_2 = value;
Il2CppCodeGenWriteBarrier((&___m_DisabledSprite_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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_DisabledSprite_2;
};
// 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_DisabledSprite_2;
};
#endif // SPRITESTATE_T58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_H
#ifndef UILINEINFO_T0AF27251CA07CEE2BC0C1FEF752245596B8033E6_H
#define UILINEINFO_T0AF27251CA07CEE2BC0C1FEF752245596B8033E6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UILINEINFO_T0AF27251CA07CEE2BC0C1FEF752245596B8033E6_H
#ifndef WORKREQUEST_T0247B62D135204EAA95FC0B2EC829CB27B433F94_H
#define WORKREQUEST_T0247B62D135204EAA95FC0B2EC829CB27B433F94_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___m_DelagateCallback_0), 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((&___m_DelagateState_1), 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((&___m_WaitHandle_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // WORKREQUEST_T0247B62D135204EAA95FC0B2EC829CB27B433F94_H
#ifndef VECTOR2_TA85D2DD88578276CA8A8796756458277E72D073D_H
#define VECTOR2_TA85D2DD88578276CA8A8796756458277E72D073D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR2_TA85D2DD88578276CA8A8796756458277E72D073D_H
#ifndef VECTOR3_TDCF05E21F632FE2BA260C06E0D10CA81513E6720_H
#define VECTOR3_TDCF05E21F632FE2BA260C06E0D10CA81513E6720_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR3_TDCF05E21F632FE2BA260C06E0D10CA81513E6720_H
#ifndef VECTOR4_TD148D6428C3F8FF6CD998F82090113C2B490B76E_H
#define VECTOR4_TD148D6428C3F8FF6CD998F82090113C2B490B76E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR4_TD148D6428C3F8FF6CD998F82090113C2B490B76E_H
#ifndef SEMANTICMEANING_TF87995FD36CA45112E60A5F76AA211FA13351F0C_H
#define SEMANTICMEANING_TF87995FD36CA45112E60A5F76AA211FA13351F0C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___key_0), 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((&___values_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // SEMANTICMEANING_TF87995FD36CA45112E60A5F76AA211FA13351F0C_H
#ifndef SURFACEID_T5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_H
#define SURFACEID_T5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SURFACEID_T5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_H
#ifndef DATETIME_T9D0F9E236B6200FF6413DD837230D25E285E7795_H
#define DATETIME_T9D0F9E236B6200FF6413DD837230D25E285E7795_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.DateTime
struct DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795
{
public:
// System.Int64 Windows.Foundation.DateTime::UniversalTime
int64_t ___UniversalTime_0;
public:
inline static int32_t get_offset_of_UniversalTime_0() { return static_cast<int32_t>(offsetof(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795, ___UniversalTime_0)); }
inline int64_t get_UniversalTime_0() const { return ___UniversalTime_0; }
inline int64_t* get_address_of_UniversalTime_0() { return &___UniversalTime_0; }
inline void set_UniversalTime_0(int64_t value)
{
___UniversalTime_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DATETIME_T9D0F9E236B6200FF6413DD837230D25E285E7795_H
#ifndef EVENTREGISTRATIONTOKEN_TB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_H
#define EVENTREGISTRATIONTOKEN_TB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.EventRegistrationToken
struct EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4
{
public:
// System.Int64 Windows.Foundation.EventRegistrationToken::Value
int64_t ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4, ___Value_0)); }
inline int64_t get_Value_0() const { return ___Value_0; }
inline int64_t* get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(int64_t value)
{
___Value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EVENTREGISTRATIONTOKEN_TB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_H
#ifndef FOUNDATIONCONTRACT_TA5129870FD2EAAE9518C2EA28B32757D4FD977E9_H
#define FOUNDATIONCONTRACT_TA5129870FD2EAAE9518C2EA28B32757D4FD977E9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.FoundationContract
struct FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FOUNDATIONCONTRACT_TA5129870FD2EAAE9518C2EA28B32757D4FD977E9_H
#ifndef HRESULT_TD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_H
#define HRESULT_TD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.HResult
struct HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB
{
public:
// System.Int32 Windows.Foundation.HResult::Value
int32_t ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HRESULT_TD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_H
#ifndef MATRIX4X4_TDA520C56DAF83F993AAC508EE28B33C1310721A9_H
#define MATRIX4X4_TDA520C56DAF83F993AAC508EE28B33C1310721A9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.Numerics.Matrix4x4
struct Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9
{
public:
// System.Single Windows.Foundation.Numerics.Matrix4x4::M11
float ___M11_0;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M12
float ___M12_1;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M13
float ___M13_2;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M14
float ___M14_3;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M21
float ___M21_4;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M22
float ___M22_5;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M23
float ___M23_6;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M24
float ___M24_7;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M31
float ___M31_8;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M32
float ___M32_9;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M33
float ___M33_10;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M34
float ___M34_11;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M41
float ___M41_12;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M42
float ___M42_13;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M43
float ___M43_14;
// System.Single Windows.Foundation.Numerics.Matrix4x4::M44
float ___M44_15;
public:
inline static int32_t get_offset_of_M11_0() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M11_0)); }
inline float get_M11_0() const { return ___M11_0; }
inline float* get_address_of_M11_0() { return &___M11_0; }
inline void set_M11_0(float value)
{
___M11_0 = value;
}
inline static int32_t get_offset_of_M12_1() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M12_1)); }
inline float get_M12_1() const { return ___M12_1; }
inline float* get_address_of_M12_1() { return &___M12_1; }
inline void set_M12_1(float value)
{
___M12_1 = value;
}
inline static int32_t get_offset_of_M13_2() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M13_2)); }
inline float get_M13_2() const { return ___M13_2; }
inline float* get_address_of_M13_2() { return &___M13_2; }
inline void set_M13_2(float value)
{
___M13_2 = value;
}
inline static int32_t get_offset_of_M14_3() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M14_3)); }
inline float get_M14_3() const { return ___M14_3; }
inline float* get_address_of_M14_3() { return &___M14_3; }
inline void set_M14_3(float value)
{
___M14_3 = value;
}
inline static int32_t get_offset_of_M21_4() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M21_4)); }
inline float get_M21_4() const { return ___M21_4; }
inline float* get_address_of_M21_4() { return &___M21_4; }
inline void set_M21_4(float value)
{
___M21_4 = value;
}
inline static int32_t get_offset_of_M22_5() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M22_5)); }
inline float get_M22_5() const { return ___M22_5; }
inline float* get_address_of_M22_5() { return &___M22_5; }
inline void set_M22_5(float value)
{
___M22_5 = value;
}
inline static int32_t get_offset_of_M23_6() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M23_6)); }
inline float get_M23_6() const { return ___M23_6; }
inline float* get_address_of_M23_6() { return &___M23_6; }
inline void set_M23_6(float value)
{
___M23_6 = value;
}
inline static int32_t get_offset_of_M24_7() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M24_7)); }
inline float get_M24_7() const { return ___M24_7; }
inline float* get_address_of_M24_7() { return &___M24_7; }
inline void set_M24_7(float value)
{
___M24_7 = value;
}
inline static int32_t get_offset_of_M31_8() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M31_8)); }
inline float get_M31_8() const { return ___M31_8; }
inline float* get_address_of_M31_8() { return &___M31_8; }
inline void set_M31_8(float value)
{
___M31_8 = value;
}
inline static int32_t get_offset_of_M32_9() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M32_9)); }
inline float get_M32_9() const { return ___M32_9; }
inline float* get_address_of_M32_9() { return &___M32_9; }
inline void set_M32_9(float value)
{
___M32_9 = value;
}
inline static int32_t get_offset_of_M33_10() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M33_10)); }
inline float get_M33_10() const { return ___M33_10; }
inline float* get_address_of_M33_10() { return &___M33_10; }
inline void set_M33_10(float value)
{
___M33_10 = value;
}
inline static int32_t get_offset_of_M34_11() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M34_11)); }
inline float get_M34_11() const { return ___M34_11; }
inline float* get_address_of_M34_11() { return &___M34_11; }
inline void set_M34_11(float value)
{
___M34_11 = value;
}
inline static int32_t get_offset_of_M41_12() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M41_12)); }
inline float get_M41_12() const { return ___M41_12; }
inline float* get_address_of_M41_12() { return &___M41_12; }
inline void set_M41_12(float value)
{
___M41_12 = value;
}
inline static int32_t get_offset_of_M42_13() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M42_13)); }
inline float get_M42_13() const { return ___M42_13; }
inline float* get_address_of_M42_13() { return &___M42_13; }
inline void set_M42_13(float value)
{
___M42_13 = value;
}
inline static int32_t get_offset_of_M43_14() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M43_14)); }
inline float get_M43_14() const { return ___M43_14; }
inline float* get_address_of_M43_14() { return &___M43_14; }
inline void set_M43_14(float value)
{
___M43_14 = value;
}
inline static int32_t get_offset_of_M44_15() { return static_cast<int32_t>(offsetof(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9, ___M44_15)); }
inline float get_M44_15() const { return ___M44_15; }
inline float* get_address_of_M44_15() { return &___M44_15; }
inline void set_M44_15(float value)
{
___M44_15 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MATRIX4X4_TDA520C56DAF83F993AAC508EE28B33C1310721A9_H
#ifndef QUATERNION_T7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_H
#define QUATERNION_T7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.Numerics.Quaternion
struct Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C
{
public:
// System.Single Windows.Foundation.Numerics.Quaternion::X
float ___X_0;
// System.Single Windows.Foundation.Numerics.Quaternion::Y
float ___Y_1;
// System.Single Windows.Foundation.Numerics.Quaternion::Z
float ___Z_2;
// System.Single Windows.Foundation.Numerics.Quaternion::W
float ___W_3;
public:
inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C, ___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_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C, ___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_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C, ___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_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // QUATERNION_T7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_H
#ifndef VECTOR3_T7F46349C1A2C560D80B80153D1CED7B9453530BD_H
#define VECTOR3_T7F46349C1A2C560D80B80153D1CED7B9453530BD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.Numerics.Vector3
struct Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD
{
public:
// System.Single Windows.Foundation.Numerics.Vector3::X
float ___X_0;
// System.Single Windows.Foundation.Numerics.Vector3::Y
float ___Y_1;
// System.Single Windows.Foundation.Numerics.Vector3::Z
float ___Z_2;
public:
inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD, ___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(Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD, ___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(Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR3_T7F46349C1A2C560D80B80153D1CED7B9453530BD_H
#ifndef POINT_T7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC_H
#define POINT_T7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.Point
struct Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC
{
public:
// System.Single Windows.Foundation.Point::_x
float ____x_0;
// System.Single Windows.Foundation.Point::_y
float ____y_1;
public:
inline static int32_t get_offset_of__x_0() { return static_cast<int32_t>(offsetof(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC, ____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(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC, ____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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // POINT_T7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC_H
#ifndef POINT_TEC1815EC53B414E5281C817051DA4F985DB9C8C1_H
#define POINT_TEC1815EC53B414E5281C817051DA4F985DB9C8C1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.Point
struct Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1
{
public:
// System.Single Windows.Foundation.Point::X
float ___X_0;
// System.Single Windows.Foundation.Point::Y
float ___Y_1;
public:
inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1, ___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(Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // POINT_TEC1815EC53B414E5281C817051DA4F985DB9C8C1_H
#ifndef RECT_TC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_H
#define RECT_TC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.Rect
struct Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA
{
public:
// System.Single Windows.Foundation.Rect::X
float ___X_0;
// System.Single Windows.Foundation.Rect::Y
float ___Y_1;
// System.Single Windows.Foundation.Rect::Width
float ___Width_2;
// System.Single Windows.Foundation.Rect::Height
float ___Height_3;
public:
inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA, ___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(Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA, ___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_Width_2() { return static_cast<int32_t>(offsetof(Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA, ___Width_2)); }
inline float get_Width_2() const { return ___Width_2; }
inline float* get_address_of_Width_2() { return &___Width_2; }
inline void set_Width_2(float value)
{
___Width_2 = value;
}
inline static int32_t get_offset_of_Height_3() { return static_cast<int32_t>(offsetof(Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA, ___Height_3)); }
inline float get_Height_3() const { return ___Height_3; }
inline float* get_address_of_Height_3() { return &___Height_3; }
inline void set_Height_3(float value)
{
___Height_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RECT_TC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_H
#ifndef RECT_TD277A11EF3F3CC633796B8FF0BC4822826E72BB0_H
#define RECT_TD277A11EF3F3CC633796B8FF0BC4822826E72BB0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.Rect
struct Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0
{
public:
// System.Single Windows.Foundation.Rect::_x
float ____x_0;
// System.Single Windows.Foundation.Rect::_y
float ____y_1;
// System.Single Windows.Foundation.Rect::_width
float ____width_2;
// System.Single Windows.Foundation.Rect::_height
float ____height_3;
public:
inline static int32_t get_offset_of__x_0() { return static_cast<int32_t>(offsetof(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0, ____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(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0, ____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__width_2() { return static_cast<int32_t>(offsetof(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0, ____width_2)); }
inline float get__width_2() const { return ____width_2; }
inline float* get_address_of__width_2() { return &____width_2; }
inline void set__width_2(float value)
{
____width_2 = value;
}
inline static int32_t get_offset_of__height_3() { return static_cast<int32_t>(offsetof(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0, ____height_3)); }
inline float get__height_3() const { return ____height_3; }
inline float* get_address_of__height_3() { return &____height_3; }
inline void set__height_3(float value)
{
____height_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RECT_TD277A11EF3F3CC633796B8FF0BC4822826E72BB0_H
#ifndef SIZE_T4766FF009097CE547F699B69250246058DA664D9_H
#define SIZE_T4766FF009097CE547F699B69250246058DA664D9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.Size
struct Size_t4766FF009097CE547F699B69250246058DA664D9
{
public:
// System.Single Windows.Foundation.Size::Width
float ___Width_0;
// System.Single Windows.Foundation.Size::Height
float ___Height_1;
public:
inline static int32_t get_offset_of_Width_0() { return static_cast<int32_t>(offsetof(Size_t4766FF009097CE547F699B69250246058DA664D9, ___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(Size_t4766FF009097CE547F699B69250246058DA664D9, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SIZE_T4766FF009097CE547F699B69250246058DA664D9_H
#ifndef SIZE_TBE9F75FCA10276DC3998237A8906733B64FB75A2_H
#define SIZE_TBE9F75FCA10276DC3998237A8906733B64FB75A2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.Size
struct Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2
{
public:
// System.Single Windows.Foundation.Size::_width
float ____width_0;
// System.Single Windows.Foundation.Size::_height
float ____height_1;
public:
inline static int32_t get_offset_of__width_0() { return static_cast<int32_t>(offsetof(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2, ____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(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2, ____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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SIZE_TBE9F75FCA10276DC3998237A8906733B64FB75A2_H
#ifndef TIMESPAN_TD18885B289077804D4E82931E68E84181C072755_H
#define TIMESPAN_TD18885B289077804D4E82931E68E84181C072755_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.TimeSpan
struct TimeSpan_tD18885B289077804D4E82931E68E84181C072755
{
public:
// System.Int64 Windows.Foundation.TimeSpan::Duration
int64_t ___Duration_0;
public:
inline static int32_t get_offset_of_Duration_0() { return static_cast<int32_t>(offsetof(TimeSpan_tD18885B289077804D4E82931E68E84181C072755, ___Duration_0)); }
inline int64_t get_Duration_0() const { return ___Duration_0; }
inline int64_t* get_address_of_Duration_0() { return &___Duration_0; }
inline void set_Duration_0(int64_t value)
{
___Duration_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TIMESPAN_TD18885B289077804D4E82931E68E84181C072755_H
#ifndef UNIVERSALAPICONTRACT_T2909295C70CE09107C85CD360BE6888A4D1078D9_H
#define UNIVERSALAPICONTRACT_T2909295C70CE09107C85CD360BE6888A4D1078D9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Foundation.UniversalApiContract
struct UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNIVERSALAPICONTRACT_T2909295C70CE09107C85CD360BE6888A4D1078D9_H
#ifndef EDGE_TDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_H
#define EDGE_TDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Boundary.Edge
struct Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D
{
public:
// UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.Boundary.Edge::PointA
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___PointA_0;
// UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.Boundary.Edge::PointB
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___PointB_1;
public:
inline static int32_t get_offset_of_PointA_0() { return static_cast<int32_t>(offsetof(Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D, ___PointA_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_PointA_0() const { return ___PointA_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_PointA_0() { return &___PointA_0; }
inline void set_PointA_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___PointA_0 = value;
}
inline static int32_t get_offset_of_PointB_1() { return static_cast<int32_t>(offsetof(Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D, ___PointB_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_PointB_1() const { return ___PointB_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_PointB_1() { return &___PointB_1; }
inline void set_PointB_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___PointB_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EDGE_TDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_H
#ifndef FRAMERATECOLOR_T12534EF70F7B693ED9FA0166B31144F5CD48AFBD_H
#define FRAMERATECOLOR_T12534EF70F7B693ED9FA0166B31144F5CD48AFBD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityToolkitVisualProfiler_FrameRateColor
struct FrameRateColor_t12534EF70F7B693ED9FA0166B31144F5CD48AFBD
{
public:
// System.Single Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityToolkitVisualProfiler_FrameRateColor::percentageOfTarget
float ___percentageOfTarget_0;
// UnityEngine.Color Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityToolkitVisualProfiler_FrameRateColor::color
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color_1;
public:
inline static int32_t get_offset_of_percentageOfTarget_0() { return static_cast<int32_t>(offsetof(FrameRateColor_t12534EF70F7B693ED9FA0166B31144F5CD48AFBD, ___percentageOfTarget_0)); }
inline float get_percentageOfTarget_0() const { return ___percentageOfTarget_0; }
inline float* get_address_of_percentageOfTarget_0() { return &___percentageOfTarget_0; }
inline void set_percentageOfTarget_0(float value)
{
___percentageOfTarget_0 = value;
}
inline static int32_t get_offset_of_color_1() { return static_cast<int32_t>(offsetof(FrameRateColor_t12534EF70F7B693ED9FA0166B31144F5CD48AFBD, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FRAMERATECOLOR_T12534EF70F7B693ED9FA0166B31144F5CD48AFBD_H
#ifndef ANCHOROPERATION_TDACCADC82890DA2980A0EA0F59C4B6CE86504786_H
#define ANCHOROPERATION_TDACCADC82890DA2980A0EA0F59C4B6CE86504786_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Experimental.Utilities.WorldAnchorManager_AnchorOperation
struct AnchorOperation_tDACCADC82890DA2980A0EA0F59C4B6CE86504786
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Experimental.Utilities.WorldAnchorManager_AnchorOperation::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AnchorOperation_tDACCADC82890DA2980A0EA0F59C4B6CE86504786, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ANCHOROPERATION_TDACCADC82890DA2980A0EA0F59C4B6CE86504786_H
#ifndef CURSORSTATEENUM_TA1AA47C545A64DF9747D75C8C4BD58CC93715C86_H
#define CURSORSTATEENUM_TA1AA47C545A64DF9747D75C8C4BD58CC93715C86_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.CursorStateEnum
struct CursorStateEnum_tA1AA47C545A64DF9747D75C8C4BD58CC93715C86
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Input.CursorStateEnum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CursorStateEnum_tA1AA47C545A64DF9747D75C8C4BD58CC93715C86, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CURSORSTATEENUM_TA1AA47C545A64DF9747D75C8C4BD58CC93715C86_H
#ifndef GESTUREINPUTTYPE_T3795375442FD90A9C8798F771BB44290FAA46CC3_H
#define GESTUREINPUTTYPE_T3795375442FD90A9C8798F771BB44290FAA46CC3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.GestureInputType
struct GestureInputType_t3795375442FD90A9C8798F771BB44290FAA46CC3
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Input.GestureInputType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GestureInputType_t3795375442FD90A9C8798F771BB44290FAA46CC3, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GESTUREINPUTTYPE_T3795375442FD90A9C8798F771BB44290FAA46CC3_H
#ifndef SUPPORTEDCONTROLLERTYPE_TE80DAF5FA19D963A3E269C20A783891272D52C57_H
#define SUPPORTEDCONTROLLERTYPE_TE80DAF5FA19D963A3E269C20A783891272D52C57_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.SupportedControllerType
struct SupportedControllerType_tE80DAF5FA19D963A3E269C20A783891272D52C57
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Input.SupportedControllerType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SupportedControllerType_tE80DAF5FA19D963A3E269C20A783891272D52C57, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SUPPORTEDCONTROLLERTYPE_TE80DAF5FA19D963A3E269C20A783891272D52C57_H
#ifndef RAYSTEP_TD600880A950E7AD2CC628F821E4C9936DEAA262B_H
#define RAYSTEP_TD600880A950E7AD2CC628F821E4C9936DEAA262B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Physics.RayStep
struct RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B
{
public:
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Physics.RayStep::<Origin>k__BackingField
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3COriginU3Ek__BackingField_3;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Physics.RayStep::<Terminus>k__BackingField
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CTerminusU3Ek__BackingField_4;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Physics.RayStep::<Direction>k__BackingField
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CDirectionU3Ek__BackingField_5;
// System.Single Microsoft.MixedReality.Toolkit.Physics.RayStep::<Length>k__BackingField
float ___U3CLengthU3Ek__BackingField_6;
// System.Single Microsoft.MixedReality.Toolkit.Physics.RayStep::epsilon
float ___epsilon_7;
public:
inline static int32_t get_offset_of_U3COriginU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B, ___U3COriginU3Ek__BackingField_3)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3COriginU3Ek__BackingField_3() const { return ___U3COriginU3Ek__BackingField_3; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3COriginU3Ek__BackingField_3() { return &___U3COriginU3Ek__BackingField_3; }
inline void set_U3COriginU3Ek__BackingField_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___U3COriginU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CTerminusU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B, ___U3CTerminusU3Ek__BackingField_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CTerminusU3Ek__BackingField_4() const { return ___U3CTerminusU3Ek__BackingField_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CTerminusU3Ek__BackingField_4() { return &___U3CTerminusU3Ek__BackingField_4; }
inline void set_U3CTerminusU3Ek__BackingField_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___U3CTerminusU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CDirectionU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B, ___U3CDirectionU3Ek__BackingField_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CDirectionU3Ek__BackingField_5() const { return ___U3CDirectionU3Ek__BackingField_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CDirectionU3Ek__BackingField_5() { return &___U3CDirectionU3Ek__BackingField_5; }
inline void set_U3CDirectionU3Ek__BackingField_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___U3CDirectionU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CLengthU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B, ___U3CLengthU3Ek__BackingField_6)); }
inline float get_U3CLengthU3Ek__BackingField_6() const { return ___U3CLengthU3Ek__BackingField_6; }
inline float* get_address_of_U3CLengthU3Ek__BackingField_6() { return &___U3CLengthU3Ek__BackingField_6; }
inline void set_U3CLengthU3Ek__BackingField_6(float value)
{
___U3CLengthU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_epsilon_7() { return static_cast<int32_t>(offsetof(RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B, ___epsilon_7)); }
inline float get_epsilon_7() const { return ___epsilon_7; }
inline float* get_address_of_epsilon_7() { return &___epsilon_7; }
inline void set_epsilon_7(float value)
{
___epsilon_7 = value;
}
};
struct RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_StaticFields
{
public:
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Physics.RayStep::dist
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___dist_0;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Physics.RayStep::dir
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___dir_1;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Physics.RayStep::pos
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___pos_2;
public:
inline static int32_t get_offset_of_dist_0() { return static_cast<int32_t>(offsetof(RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_StaticFields, ___dist_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_dist_0() const { return ___dist_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_dist_0() { return &___dist_0; }
inline void set_dist_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___dist_0 = value;
}
inline static int32_t get_offset_of_dir_1() { return static_cast<int32_t>(offsetof(RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_StaticFields, ___dir_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_dir_1() const { return ___dir_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_dir_1() { return &___dir_1; }
inline void set_dir_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___dir_1 = value;
}
inline static int32_t get_offset_of_pos_2() { return static_cast<int32_t>(offsetof(RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_StaticFields, ___pos_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_pos_2() const { return ___pos_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_pos_2() { return &___pos_2; }
inline void set_pos_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___pos_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RAYSTEP_TD600880A950E7AD2CC628F821E4C9936DEAA262B_H
#ifndef POINTERDATA_TCA87EC0989560B4660B77ED6A02912E3FAACF2C4_H
#define POINTERDATA_TCA87EC0989560B4660B77ED6A02912E3FAACF2C4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.UI.ManipulationHandler_PointerData
struct PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4
{
public:
// Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointer Microsoft.MixedReality.Toolkit.UI.ManipulationHandler_PointerData::pointer
RuntimeObject* ___pointer_0;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.UI.ManipulationHandler_PointerData::initialGrabPointInPointer
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___initialGrabPointInPointer_1;
public:
inline static int32_t get_offset_of_pointer_0() { return static_cast<int32_t>(offsetof(PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4, ___pointer_0)); }
inline RuntimeObject* get_pointer_0() const { return ___pointer_0; }
inline RuntimeObject** get_address_of_pointer_0() { return &___pointer_0; }
inline void set_pointer_0(RuntimeObject* value)
{
___pointer_0 = value;
Il2CppCodeGenWriteBarrier((&___pointer_0), value);
}
inline static int32_t get_offset_of_initialGrabPointInPointer_1() { return static_cast<int32_t>(offsetof(PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4, ___initialGrabPointInPointer_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_initialGrabPointInPointer_1() const { return ___initialGrabPointInPointer_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_initialGrabPointInPointer_1() { return &___initialGrabPointInPointer_1; }
inline void set_initialGrabPointInPointer_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___initialGrabPointInPointer_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.UI.ManipulationHandler/PointerData
struct PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4_marshaled_pinvoke
{
RuntimeObject* ___pointer_0;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___initialGrabPointInPointer_1;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.UI.ManipulationHandler/PointerData
struct PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4_marshaled_com
{
RuntimeObject* ___pointer_0;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___initialGrabPointInPointer_1;
};
#endif // POINTERDATA_TCA87EC0989560B4660B77ED6A02912E3FAACF2C4_H
#ifndef SHADERPROPERTYTYPE_T975AA06B9D7F4A1494F93738BAA444DC19ADF891_H
#define SHADERPROPERTYTYPE_T975AA06B9D7F4A1494F93738BAA444DC19ADF891_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.UI.ShaderPropertyType
struct ShaderPropertyType_t975AA06B9D7F4A1494F93738BAA444DC19ADF891
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.UI.ShaderPropertyType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ShaderPropertyType_t975AA06B9D7F4A1494F93738BAA444DC19ADF891, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SHADERPROPERTYTYPE_T975AA06B9D7F4A1494F93738BAA444DC19ADF891_H
#ifndef AXISTYPE_TBC98A816F11947D8F8C750865A90359794459654_H
#define AXISTYPE_TBC98A816F11947D8F8C750865A90359794459654_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Utilities.AxisType
struct AxisType_tBC98A816F11947D8F8C750865A90359794459654
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.AxisType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AxisType_tBC98A816F11947D8F8C750865A90359794459654, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // AXISTYPE_TBC98A816F11947D8F8C750865A90359794459654_H
#ifndef FIELDTYPES_TE3E1A1F021CCF04F14C2E1A1C07492230735B00E_H
#define FIELDTYPES_TE3E1A1F021CCF04F14C2E1A1C07492230735B00E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorField_FieldTypes
struct FieldTypes_tE3E1A1F021CCF04F14C2E1A1C07492230735B00E
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorField_FieldTypes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FieldTypes_tE3E1A1F021CCF04F14C2E1A1C07492230735B00E, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FIELDTYPES_TE3E1A1F021CCF04F14C2E1A1C07492230735B00E_H
#ifndef HANDEDNESS_T08AAB76527953606BF62828E2A7E40AADB3EAFDB_H
#define HANDEDNESS_T08AAB76527953606BF62828E2A7E40AADB3EAFDB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Utilities.Handedness
struct Handedness_t08AAB76527953606BF62828E2A7E40AADB3EAFDB
{
public:
// System.Byte Microsoft.MixedReality.Toolkit.Utilities.Handedness::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Handedness_t08AAB76527953606BF62828E2A7E40AADB3EAFDB, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HANDEDNESS_T08AAB76527953606BF62828E2A7E40AADB3EAFDB_H
#ifndef MIXEDREALITYPOSE_T5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_H
#define MIXEDREALITYPOSE_T5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose
struct MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8
{
public:
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_1;
// UnityEngine.Quaternion Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose::rotation
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___rotation_2;
public:
inline static int32_t get_offset_of_position_1() { return static_cast<int32_t>(offsetof(MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8, ___position_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_1() const { return ___position_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_1() { return &___position_1; }
inline void set_position_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_1 = value;
}
inline static int32_t get_offset_of_rotation_2() { return static_cast<int32_t>(offsetof(MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8, ___rotation_2)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_rotation_2() const { return ___rotation_2; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_rotation_2() { return &___rotation_2; }
inline void set_rotation_2(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___rotation_2 = value;
}
};
struct MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_StaticFields
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose::<ZeroIdentity>k__BackingField
MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 ___U3CZeroIdentityU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CZeroIdentityU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_StaticFields, ___U3CZeroIdentityU3Ek__BackingField_0)); }
inline MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 get_U3CZeroIdentityU3Ek__BackingField_0() const { return ___U3CZeroIdentityU3Ek__BackingField_0; }
inline MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 * get_address_of_U3CZeroIdentityU3Ek__BackingField_0() { return &___U3CZeroIdentityU3Ek__BackingField_0; }
inline void set_U3CZeroIdentityU3Ek__BackingField_0(MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 value)
{
___U3CZeroIdentityU3Ek__BackingField_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MIXEDREALITYPOSE_T5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_H
#ifndef SUPPORTEDPLATFORMS_T56FDD1B366320ACFFCC065E5D5F66AEE00C9F7EF_H
#define SUPPORTEDPLATFORMS_T56FDD1B366320ACFFCC065E5D5F66AEE00C9F7EF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Utilities.SupportedPlatforms
struct SupportedPlatforms_t56FDD1B366320ACFFCC065E5D5F66AEE00C9F7EF
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.SupportedPlatforms::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SupportedPlatforms_t56FDD1B366320ACFFCC065E5D5F66AEE00C9F7EF, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SUPPORTEDPLATFORMS_T56FDD1B366320ACFFCC065E5D5F66AEE00C9F7EF_H
#ifndef ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H
#define ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_17;
public:
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((&___m_paramName_17), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H
#ifndef BYTEENUM_T406C975039F6312CDE58A265A6ECFD861F8C06CD_H
#define BYTEENUM_T406C975039F6312CDE58A265A6ECFD861F8C06CD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ByteEnum
struct ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD
{
public:
// System.Byte System.ByteEnum::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BYTEENUM_T406C975039F6312CDE58A265A6ECFD861F8C06CD_H
#ifndef ENTRY_TC1463A26CB3583633B8650196083947E916945AD_H
#define ENTRY_TC1463A26CB3583633B8650196083947E916945AD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>
struct Entry_tC1463A26CB3583633B8650196083947E916945AD
{
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
XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tC1463A26CB3583633B8650196083947E916945AD, ___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_tC1463A26CB3583633B8650196083947E916945AD, ___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_tC1463A26CB3583633B8650196083947E916945AD, ___key_2)); }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 get_key_2() const { return ___key_2; }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tC1463A26CB3583633B8650196083947E916945AD, ___value_3)); }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 get_value_3() const { return ___value_3; }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_TC1463A26CB3583633B8650196083947E916945AD_H
#ifndef ENTRY_T6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_H
#define ENTRY_T6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.Guid,System.Object>
struct Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
Guid_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___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_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___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_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___key_2)); }
inline Guid_t get_key_2() const { return ___key_2; }
inline Guid_t * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Guid_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___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((&___value_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_H
#ifndef ENTRY_TC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E_H
#define ENTRY_TC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>
struct Entry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E
{
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
ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E, ___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_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E, ___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_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E, ___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((&___key_2), value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E, ___value_3)); }
inline ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A get_value_3() const { return ___value_3; }
inline ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_TC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E_H
#ifndef ENTRY_TF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_H
#define ENTRY_TF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_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((&___key_2), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_TF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_H
#ifndef ENTRY_T7F6EFCC50C152F187A40F83B2412AA3926B29874_H
#define ENTRY_T7F6EFCC50C152F187A40F83B2412AA3926B29874_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Vector3>
struct Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874
{
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
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874, ___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_t7F6EFCC50C152F187A40F83B2412AA3926B29874, ___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_t7F6EFCC50C152F187A40F83B2412AA3926B29874, ___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((&___key_2), value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874, ___value_3)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_value_3() const { return ___value_3; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T7F6EFCC50C152F187A40F83B2412AA3926B29874_H
#ifndef ENTRY_T9DC6733782668F2DBED2EA3EE0BBEE23B29D671E_H
#define ENTRY_T9DC6733782668F2DBED2EA3EE0BBEE23B29D671E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheEntry>
struct Entry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E
{
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
EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E, ___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_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E, ___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_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E, ___key_2)); }
inline EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A get_key_2() const { return ___key_2; }
inline EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E, ___value_3)); }
inline EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 get_value_3() const { return ___value_3; }
inline EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T9DC6733782668F2DBED2EA3EE0BBEE23B29D671E_H
#ifndef ENTRY_TD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_H
#define ENTRY_TD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.UInt32,UnityEngine.Vector3>
struct Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
uint32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8, ___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_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8, ___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_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8, ___key_2)); }
inline uint32_t get_key_2() const { return ___key_2; }
inline uint32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8, ___value_3)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_value_3() const { return ___value_3; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_TD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_H
#ifndef ENTRY_T687188C87EF1FD0D50038E634676DBC449857B8E_H
#define ENTRY_T687188C87EF1FD0D50038E634676DBC449857B8E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_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((&___value_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T687188C87EF1FD0D50038E634676DBC449857B8E_H
#ifndef ENTRY_T266C0028DBD75C5E784224261B95300BB5315207_H
#define ENTRY_T266C0028DBD75C5E784224261B95300BB5315207_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Vector3,System.Object>
struct Entry_t266C0028DBD75C5E784224261B95300BB5315207
{
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
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___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_t266C0028DBD75C5E784224261B95300BB5315207, ___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_t266C0028DBD75C5E784224261B95300BB5315207, ___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_t266C0028DBD75C5E784224261B95300BB5315207, ___key_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_key_2() const { return ___key_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t266C0028DBD75C5E784224261B95300BB5315207, ___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((&___value_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T266C0028DBD75C5E784224261B95300BB5315207_H
#ifndef KEYVALUEPAIR_2_T7021B3989E46B5E2ED55D76D82C8176A7AF6B443_H
#define KEYVALUEPAIR_2_T7021B3989E46B5E2ED55D76D82C8176A7AF6B443_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>
struct KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443, ___key_0)); }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 get_key_0() const { return ___key_0; }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443, ___value_1)); }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 get_value_1() const { return ___value_1; }
inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T7021B3989E46B5E2ED55D76D82C8176A7AF6B443_H
#ifndef KEYVALUEPAIR_2_T5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_H
#define KEYVALUEPAIR_2_T5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_H
#ifndef KEYVALUEPAIR_2_TD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_H
#define KEYVALUEPAIR_2_TD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>
struct KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_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_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78, ___key_0)); }
inline Guid_t get_key_0() const { return ___key_0; }
inline Guid_t * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Guid_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78, ___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((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_TD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_H
#ifndef KEYVALUEPAIR_2_TF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_H
#define KEYVALUEPAIR_2_TF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Vector3>
struct KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC, ___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_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC, ___value_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_value_1() const { return ___value_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_TF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_H
#ifndef KEYVALUEPAIR_2_T12BAA60E1CA1D950B9624A69F215A0614C92CBE4_H
#define KEYVALUEPAIR_2_T12BAA60E1CA1D950B9624A69F215A0614C92CBE4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>
struct KeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4, ___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((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4, ___value_1)); }
inline ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A get_value_1() const { return ___value_1; }
inline ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T12BAA60E1CA1D950B9624A69F215A0614C92CBE4_H
#ifndef KEYVALUEPAIR_2_T2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_H
#define KEYVALUEPAIR_2_T2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___key_0), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_H
#ifndef KEYVALUEPAIR_2_TB2B1BDB4860CA12D10ED64E7D3B112421CADA822_H
#define KEYVALUEPAIR_2_TB2B1BDB4860CA12D10ED64E7D3B112421CADA822_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>
struct KeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822, ___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((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822, ___value_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_value_1() const { return ___value_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_TB2B1BDB4860CA12D10ED64E7D3B112421CADA822_H
#ifndef KEYVALUEPAIR_2_T92BE7B4140821DBA942F4ECA4925CC7B7494EC46_H
#define KEYVALUEPAIR_2_T92BE7B4140821DBA942F4ECA4925CC7B7494EC46_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheEntry>
struct KeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46, ___key_0)); }
inline EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A get_key_0() const { return ___key_0; }
inline EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46, ___value_1)); }
inline EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 get_value_1() const { return ___value_1; }
inline EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T92BE7B4140821DBA942F4ECA4925CC7B7494EC46_H
#ifndef KEYVALUEPAIR_2_TD7757B69726FBA1C83AAD9BC8771401D3F1971AF_H
#define KEYVALUEPAIR_2_TD7757B69726FBA1C83AAD9BC8771401D3F1971AF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>
struct KeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF, ___key_0)); }
inline uint32_t get_key_0() const { return ___key_0; }
inline uint32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF, ___value_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_value_1() const { return ___value_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_TD7757B69726FBA1C83AAD9BC8771401D3F1971AF_H
#ifndef KEYVALUEPAIR_2_TBF49E6D84C3874E47C1681064699318B6BBA4A27_H
#define KEYVALUEPAIR_2_TBF49E6D84C3874E47C1681064699318B6BBA4A27_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_TBF49E6D84C3874E47C1681064699318B6BBA4A27_H
#ifndef KEYVALUEPAIR_2_TA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2_H
#define KEYVALUEPAIR_2_TA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>
struct KeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___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_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2, ___key_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_key_0() const { return ___key_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2, ___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((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_TA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2_H
#ifndef DATETIMEOFFSET_T6C333873402CAD576160B4F8E159EB6834F06B85_H
#define DATETIMEOFFSET_T6C333873402CAD576160B4F8E159EB6834F06B85_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.DateTimeOffset
struct DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85
{
public:
// System.DateTime System.DateTimeOffset::m_dateTime
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_dateTime_2;
// System.Int16 System.DateTimeOffset::m_offsetMinutes
int16_t ___m_offsetMinutes_3;
public:
inline static int32_t get_offset_of_m_dateTime_2() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85, ___m_dateTime_2)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_dateTime_2() const { return ___m_dateTime_2; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_dateTime_2() { return &___m_dateTime_2; }
inline void set_m_dateTime_2(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___m_dateTime_2 = value;
}
inline static int32_t get_offset_of_m_offsetMinutes_3() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85, ___m_offsetMinutes_3)); }
inline int16_t get_m_offsetMinutes_3() const { return ___m_offsetMinutes_3; }
inline int16_t* get_address_of_m_offsetMinutes_3() { return &___m_offsetMinutes_3; }
inline void set_m_offsetMinutes_3(int16_t value)
{
___m_offsetMinutes_3 = value;
}
};
struct DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields
{
public:
// System.DateTimeOffset System.DateTimeOffset::MinValue
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___MinValue_0;
// System.DateTimeOffset System.DateTimeOffset::MaxValue
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___MaxValue_1;
public:
inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields, ___MinValue_0)); }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 get_MinValue_0() const { return ___MinValue_0; }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * get_address_of_MinValue_0() { return &___MinValue_0; }
inline void set_MinValue_0(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value)
{
___MinValue_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields, ___MaxValue_1)); }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 get_MaxValue_1() const { return ___MaxValue_1; }
inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value)
{
___MaxValue_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DATETIMEOFFSET_T6C333873402CAD576160B4F8E159EB6834F06B85_H
#ifndef INT32ENUM_T6312CE4586C17FE2E2E513D2E7655B574F10FDCD_H
#define INT32ENUM_T6312CE4586C17FE2E2E513D2E7655B574F10FDCD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32ENUM_T6312CE4586C17FE2E2E513D2E7655B574F10FDCD_H
#ifndef COOKIETOKEN_TB2F88831DE62615EAABB9CBF6CCFDFCD0A0D88B8_H
#define COOKIETOKEN_TB2F88831DE62615EAABB9CBF6CCFDFCD0A0D88B8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.CookieToken
struct CookieToken_tB2F88831DE62615EAABB9CBF6CCFDFCD0A0D88B8
{
public:
// System.Int32 System.Net.CookieToken::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CookieToken_tB2F88831DE62615EAABB9CBF6CCFDFCD0A0D88B8, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COOKIETOKEN_TB2F88831DE62615EAABB9CBF6CCFDFCD0A0D88B8_H
#ifndef COOKIEVARIANT_T896D38AC6FBE01ADFB532B04C5E0E19842256CFC_H
#define COOKIEVARIANT_T896D38AC6FBE01ADFB532B04C5E0E19842256CFC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.CookieVariant
struct CookieVariant_t896D38AC6FBE01ADFB532B04C5E0E19842256CFC
{
public:
// System.Int32 System.Net.CookieVariant::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CookieVariant_t896D38AC6FBE01ADFB532B04C5E0E19842256CFC, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COOKIEVARIANT_T896D38AC6FBE01ADFB532B04C5E0E19842256CFC_H
#ifndef WSABUF_TFC99449E36506806B55A93B6293AC7D2D10D3CEE_H
#define WSABUF_TFC99449E36506806B55A93B6293AC7D2D10D3CEE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.Socket_WSABUF
struct WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE
{
public:
// System.Int32 System.Net.Sockets.Socket_WSABUF::len
int32_t ___len_0;
// System.IntPtr System.Net.Sockets.Socket_WSABUF::buf
intptr_t ___buf_1;
public:
inline static int32_t get_offset_of_len_0() { return static_cast<int32_t>(offsetof(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE, ___len_0)); }
inline int32_t get_len_0() const { return ___len_0; }
inline int32_t* get_address_of_len_0() { return &___len_0; }
inline void set_len_0(int32_t value)
{
___len_0 = value;
}
inline static int32_t get_offset_of_buf_1() { return static_cast<int32_t>(offsetof(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE, ___buf_1)); }
inline intptr_t get_buf_1() const { return ___buf_1; }
inline intptr_t* get_address_of_buf_1() { return &___buf_1; }
inline void set_buf_1(intptr_t value)
{
___buf_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WSABUF_TFC99449E36506806B55A93B6293AC7D2D10D3CEE_H
#ifndef NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H
#define NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H
#ifndef CUSTOMATTRIBUTENAMEDARGUMENT_T08BA731A94FD7F173551DF3098384CB9B3056E9E_H
#define CUSTOMATTRIBUTENAMEDARGUMENT_T08BA731A94FD7F173551DF3098384CB9B3056E9E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
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((&___memberInfo_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // CUSTOMATTRIBUTENAMEDARGUMENT_T08BA731A94FD7F173551DF3098384CB9B3056E9E_H
#ifndef EVENTREGISTRATIONTOKENLIST_T0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_H
#define EVENTREGISTRATIONTOKENLIST_T0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_EventRegistrationTokenList
struct EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A
{
public:
// System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_EventRegistrationTokenList::firstToken
EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7 ___firstToken_0;
// System.Collections.Generic.List`1<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_EventRegistrationTokenList::restTokens
List_1_t539EC6FA9B0346406B6F89DAED4E2BA45FE380E5 * ___restTokens_1;
public:
inline static int32_t get_offset_of_firstToken_0() { return static_cast<int32_t>(offsetof(EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A, ___firstToken_0)); }
inline EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7 get_firstToken_0() const { return ___firstToken_0; }
inline EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7 * get_address_of_firstToken_0() { return &___firstToken_0; }
inline void set_firstToken_0(EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7 value)
{
___firstToken_0 = value;
}
inline static int32_t get_offset_of_restTokens_1() { return static_cast<int32_t>(offsetof(EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A, ___restTokens_1)); }
inline List_1_t539EC6FA9B0346406B6F89DAED4E2BA45FE380E5 * get_restTokens_1() const { return ___restTokens_1; }
inline List_1_t539EC6FA9B0346406B6F89DAED4E2BA45FE380E5 ** get_address_of_restTokens_1() { return &___restTokens_1; }
inline void set_restTokens_1(List_1_t539EC6FA9B0346406B6F89DAED4E2BA45FE380E5 * value)
{
___restTokens_1 = value;
Il2CppCodeGenWriteBarrier((&___restTokens_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList
struct EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_marshaled_pinvoke
{
EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7 ___firstToken_0;
List_1_t539EC6FA9B0346406B6F89DAED4E2BA45FE380E5 * ___restTokens_1;
};
// Native definition for COM marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList
struct EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_marshaled_com
{
EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7 ___firstToken_0;
List_1_t539EC6FA9B0346406B6F89DAED4E2BA45FE380E5 * ___restTokens_1;
};
#endif // EVENTREGISTRATIONTOKENLIST_T0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_H
#ifndef X509CHAINSTATUSFLAGS_T208E1E90A6014521B09653B6B237D045A8573E5B_H
#define X509CHAINSTATUSFLAGS_T208E1E90A6014521B09653B6B237D045A8573E5B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509ChainStatusFlags
struct X509ChainStatusFlags_t208E1E90A6014521B09653B6B237D045A8573E5B
{
public:
// System.Int32 System.Security.Cryptography.X509Certificates.X509ChainStatusFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(X509ChainStatusFlags_t208E1E90A6014521B09653B6B237D045A8573E5B, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509CHAINSTATUSFLAGS_T208E1E90A6014521B09653B6B237D045A8573E5B_H
#ifndef CANCELLATIONTOKENREGISTRATION_TCDB9825D1854DD0D7FF737C82B099FC468107BB2_H
#define CANCELLATIONTOKENREGISTRATION_TCDB9825D1854DD0D7FF737C82B099FC468107BB2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___m_callbackInfo_0), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // CANCELLATIONTOKENREGISTRATION_TCDB9825D1854DD0D7FF737C82B099FC468107BB2_H
#ifndef TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H
#define TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H
#ifndef UINT16ENUM_TB3380938EFBC6B524E2C8143A7982637F0EA4456_H
#define UINT16ENUM_TB3380938EFBC6B524E2C8143A7982637F0EA4456_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt16Enum
struct UInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456
{
public:
// System.UInt16 System.UInt16Enum::value__
uint16_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456, ___value___2)); }
inline uint16_t get_value___2() const { return ___value___2; }
inline uint16_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint16_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT16ENUM_TB3380938EFBC6B524E2C8143A7982637F0EA4456_H
#ifndef UINT32ENUM_TE44175EB3151A633676D60A642EDA3BD5C6760DA_H
#define UINT32ENUM_TE44175EB3151A633676D60A642EDA3BD5C6760DA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt32Enum
struct UInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA
{
public:
// System.UInt32 System.UInt32Enum::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT32ENUM_TE44175EB3151A633676D60A642EDA3BD5C6760DA_H
#ifndef EXTENTS_TB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3_H
#define EXTENTS_TB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.Extents
struct Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3
{
public:
// UnityEngine.Vector2 TMPro.Extents::min
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___min_0;
// UnityEngine.Vector2 TMPro.Extents::max
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___max_1;
public:
inline static int32_t get_offset_of_min_0() { return static_cast<int32_t>(offsetof(Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3, ___min_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_min_0() const { return ___min_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_min_0() { return &___min_0; }
inline void set_min_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___min_0 = value;
}
inline static int32_t get_offset_of_max_1() { return static_cast<int32_t>(offsetof(Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3, ___max_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_max_1() const { return ___max_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_max_1() { return &___max_1; }
inline void set_max_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___max_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXTENTS_TB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3_H
#ifndef FONTSTYLES_T31B880C817B2DF0BF3B60AC4D187A3E7BE5D8893_H
#define FONTSTYLES_T31B880C817B2DF0BF3B60AC4D187A3E7BE5D8893_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.FontStyles
struct FontStyles_t31B880C817B2DF0BF3B60AC4D187A3E7BE5D8893
{
public:
// System.Int32 TMPro.FontStyles::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FontStyles_t31B880C817B2DF0BF3B60AC4D187A3E7BE5D8893, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FONTSTYLES_T31B880C817B2DF0BF3B60AC4D187A3E7BE5D8893_H
#ifndef TMP_TEXTELEMENTTYPE_TBF2553FA730CC21CF99473E591C33DC52360D509_H
#define TMP_TEXTELEMENTTYPE_TBF2553FA730CC21CF99473E591C33DC52360D509_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.TMP_TextElementType
struct TMP_TextElementType_tBF2553FA730CC21CF99473E591C33DC52360D509
{
public:
// System.Int32 TMPro.TMP_TextElementType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TMP_TextElementType_tBF2553FA730CC21CF99473E591C33DC52360D509, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TMP_TEXTELEMENTTYPE_TBF2553FA730CC21CF99473E591C33DC52360D509_H
#ifndef TMP_VERTEX_T4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0_H
#define TMP_VERTEX_T4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.TMP_Vertex
struct TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0
{
public:
// UnityEngine.Vector3 TMPro.TMP_Vertex::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0;
// UnityEngine.Vector2 TMPro.TMP_Vertex::uv
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv_1;
// UnityEngine.Vector2 TMPro.TMP_Vertex::uv2
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv2_2;
// UnityEngine.Vector2 TMPro.TMP_Vertex::uv4
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv4_3;
// UnityEngine.Color32 TMPro.TMP_Vertex::color
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_4;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___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_uv_1() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___uv_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv_1() const { return ___uv_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv_1() { return &___uv_1; }
inline void set_uv_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv_1 = value;
}
inline static int32_t get_offset_of_uv2_2() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___uv2_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv2_2() const { return ___uv2_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv2_2() { return &___uv2_2; }
inline void set_uv2_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv2_2 = value;
}
inline static int32_t get_offset_of_uv4_3() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___uv4_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv4_3() const { return ___uv4_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv4_3() { return &___uv4_3; }
inline void set_uv4_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv4_3 = value;
}
inline static int32_t get_offset_of_color_4() { return static_cast<int32_t>(offsetof(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0, ___color_4)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_color_4() const { return ___color_4; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_color_4() { return &___color_4; }
inline void set_color_4(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___color_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TMP_VERTEX_T4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0_H
#ifndef TAGUNITTYPE_T5F2B8EA2F25FEA0BAEC4A0151C29BD7D262553CF_H
#define TAGUNITTYPE_T5F2B8EA2F25FEA0BAEC4A0151C29BD7D262553CF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.TagUnitType
struct TagUnitType_t5F2B8EA2F25FEA0BAEC4A0151C29BD7D262553CF
{
public:
// System.Int32 TMPro.TagUnitType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TagUnitType_t5F2B8EA2F25FEA0BAEC4A0151C29BD7D262553CF, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TAGUNITTYPE_T5F2B8EA2F25FEA0BAEC4A0151C29BD7D262553CF_H
#ifndef TAGVALUETYPE_TB0AE4FE83F0293DDD337886C8D5268947F25F5CC_H
#define TAGVALUETYPE_TB0AE4FE83F0293DDD337886C8D5268947F25F5CC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.TagValueType
struct TagValueType_tB0AE4FE83F0293DDD337886C8D5268947F25F5CC
{
public:
// System.Int32 TMPro.TagValueType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TagValueType_tB0AE4FE83F0293DDD337886C8D5268947F25F5CC, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TAGVALUETYPE_TB0AE4FE83F0293DDD337886C8D5268947F25F5CC_H
#ifndef TEXTALIGNMENTOPTIONS_T4BEB3BA6EE897B5127FFBABD7E36B1A024EE5337_H
#define TEXTALIGNMENTOPTIONS_T4BEB3BA6EE897B5127FFBABD7E36B1A024EE5337_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.TextAlignmentOptions
struct TextAlignmentOptions_t4BEB3BA6EE897B5127FFBABD7E36B1A024EE5337
{
public:
// System.Int32 TMPro.TextAlignmentOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextAlignmentOptions_t4BEB3BA6EE897B5127FFBABD7E36B1A024EE5337, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TEXTALIGNMENTOPTIONS_T4BEB3BA6EE897B5127FFBABD7E36B1A024EE5337_H
#ifndef ANIMATIONCURVE_TD2F265379583AAF1BF8D84F1BB8DB12980FA504C_H
#define ANIMATIONCURVE_TD2F265379583AAF1BF8D84F1BB8DB12980FA504C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.AnimationCurve
struct AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.AnimationCurve::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.AnimationCurve
struct AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.AnimationCurve
struct AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C_marshaled_com
{
intptr_t ___m_Ptr_0;
};
#endif // ANIMATIONCURVE_TD2F265379583AAF1BF8D84F1BB8DB12980FA504C_H
#ifndef ANIMATORCONTROLLERPARAMETERTYPE_T340CE2BBAB87F4684FEA76C24F1BCB9FC10D5B1F_H
#define ANIMATORCONTROLLERPARAMETERTYPE_T340CE2BBAB87F4684FEA76C24F1BCB9FC10D5B1F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.AnimatorControllerParameterType
struct AnimatorControllerParameterType_t340CE2BBAB87F4684FEA76C24F1BCB9FC10D5B1F
{
public:
// System.Int32 UnityEngine.AnimatorControllerParameterType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AnimatorControllerParameterType_t340CE2BBAB87F4684FEA76C24F1BCB9FC10D5B1F, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ANIMATORCONTROLLERPARAMETERTYPE_T340CE2BBAB87F4684FEA76C24F1BCB9FC10D5B1F_H
#ifndef BOUNDS_TA2716F5212749C61B0E7B7B77E0CD3D79B742890_H
#define BOUNDS_TA2716F5212749C61B0E7B7B77E0CD3D79B742890_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BOUNDS_TA2716F5212749C61B0E7B7B77E0CD3D79B742890_H
#ifndef COMBINEINSTANCE_T096DFC9075A3AAA2F0830C19073BC86927DDFA28_H
#define COMBINEINSTANCE_T096DFC9075A3AAA2F0830C19073BC86927DDFA28_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.CombineInstance
struct CombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28
{
public:
// System.Int32 UnityEngine.CombineInstance::m_MeshInstanceID
int32_t ___m_MeshInstanceID_0;
// System.Int32 UnityEngine.CombineInstance::m_SubMeshIndex
int32_t ___m_SubMeshIndex_1;
// UnityEngine.Matrix4x4 UnityEngine.CombineInstance::m_Transform
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___m_Transform_2;
// UnityEngine.Vector4 UnityEngine.CombineInstance::m_LightmapScaleOffset
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___m_LightmapScaleOffset_3;
// UnityEngine.Vector4 UnityEngine.CombineInstance::m_RealtimeLightmapScaleOffset
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___m_RealtimeLightmapScaleOffset_4;
public:
inline static int32_t get_offset_of_m_MeshInstanceID_0() { return static_cast<int32_t>(offsetof(CombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28, ___m_MeshInstanceID_0)); }
inline int32_t get_m_MeshInstanceID_0() const { return ___m_MeshInstanceID_0; }
inline int32_t* get_address_of_m_MeshInstanceID_0() { return &___m_MeshInstanceID_0; }
inline void set_m_MeshInstanceID_0(int32_t value)
{
___m_MeshInstanceID_0 = value;
}
inline static int32_t get_offset_of_m_SubMeshIndex_1() { return static_cast<int32_t>(offsetof(CombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28, ___m_SubMeshIndex_1)); }
inline int32_t get_m_SubMeshIndex_1() const { return ___m_SubMeshIndex_1; }
inline int32_t* get_address_of_m_SubMeshIndex_1() { return &___m_SubMeshIndex_1; }
inline void set_m_SubMeshIndex_1(int32_t value)
{
___m_SubMeshIndex_1 = value;
}
inline static int32_t get_offset_of_m_Transform_2() { return static_cast<int32_t>(offsetof(CombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28, ___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_LightmapScaleOffset_3() { return static_cast<int32_t>(offsetof(CombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28, ___m_LightmapScaleOffset_3)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_m_LightmapScaleOffset_3() const { return ___m_LightmapScaleOffset_3; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_m_LightmapScaleOffset_3() { return &___m_LightmapScaleOffset_3; }
inline void set_m_LightmapScaleOffset_3(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___m_LightmapScaleOffset_3 = value;
}
inline static int32_t get_offset_of_m_RealtimeLightmapScaleOffset_4() { return static_cast<int32_t>(offsetof(CombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28, ___m_RealtimeLightmapScaleOffset_4)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_m_RealtimeLightmapScaleOffset_4() const { return ___m_RealtimeLightmapScaleOffset_4; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_m_RealtimeLightmapScaleOffset_4() { return &___m_RealtimeLightmapScaleOffset_4; }
inline void set_m_RealtimeLightmapScaleOffset_4(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___m_RealtimeLightmapScaleOffset_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMBINEINSTANCE_T096DFC9075A3AAA2F0830C19073BC86927DDFA28_H
#ifndef CONTACTPOINT_TE0D3A30ED34A1FC8CA3F7391348429F3232CA515_H
#define CONTACTPOINT_TE0D3A30ED34A1FC8CA3F7391348429F3232CA515_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONTACTPOINT_TE0D3A30ED34A1FC8CA3F7391348429F3232CA515_H
#ifndef CONTACTPOINT2D_T7DE4097DD62E4240F4629EBB41F4BF089141E2C0_H
#define CONTACTPOINT2D_T7DE4097DD62E4240F4629EBB41F4BF089141E2C0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONTACTPOINT2D_T7DE4097DD62E4240F4629EBB41F4BF089141E2C0_H
#ifndef RAYCASTRESULT_T991BCED43A91EDD8580F39631DA07B1F88C58B91_H
#define RAYCASTRESULT_T991BCED43A91EDD8580F39631DA07B1F88C58B91_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___m_GameObject_0), 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((&___module_1), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // RAYCASTRESULT_T991BCED43A91EDD8580F39631DA07B1F88C58B91_H
#ifndef PLAYERLOOPSYSTEM_T89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_H
#define PLAYERLOOPSYSTEM_T89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___type_0), 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((&___subSystemList_1), 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((&___updateDelegate_2), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // PLAYERLOOPSYSTEM_T89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_H
#ifndef KEYCODE_TC93EA87C5A6901160B583ADFCD3EF6726570DC3C_H
#define KEYCODE_TC93EA87C5A6901160B583ADFCD3EF6726570DC3C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.KeyCode
struct KeyCode_tC93EA87C5A6901160B583ADFCD3EF6726570DC3C
{
public:
// System.Int32 UnityEngine.KeyCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(KeyCode_tC93EA87C5A6901160B583ADFCD3EF6726570DC3C, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYCODE_TC93EA87C5A6901160B583ADFCD3EF6726570DC3C_H
#ifndef OBJECT_TAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_H
#define OBJECT_TAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // OBJECT_TAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_H
#ifndef PARTICLE_T64AF74F5D9C7EE7018AD98F29E4FF653558A581E_H
#define PARTICLE_T64AF74F5D9C7EE7018AD98F29E4FF653558A581E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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.Single UnityEngine.ParticleSystem_Particle::m_EmitAccumulator0
float ___m_EmitAccumulator0_12;
// System.Single UnityEngine.ParticleSystem_Particle::m_EmitAccumulator1
float ___m_EmitAccumulator1_13;
// System.UInt32 UnityEngine.ParticleSystem_Particle::m_Flags
uint32_t ___m_Flags_14;
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_EmitAccumulator0_12() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_EmitAccumulator0_12)); }
inline float get_m_EmitAccumulator0_12() const { return ___m_EmitAccumulator0_12; }
inline float* get_address_of_m_EmitAccumulator0_12() { return &___m_EmitAccumulator0_12; }
inline void set_m_EmitAccumulator0_12(float value)
{
___m_EmitAccumulator0_12 = value;
}
inline static int32_t get_offset_of_m_EmitAccumulator1_13() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_EmitAccumulator1_13)); }
inline float get_m_EmitAccumulator1_13() const { return ___m_EmitAccumulator1_13; }
inline float* get_address_of_m_EmitAccumulator1_13() { return &___m_EmitAccumulator1_13; }
inline void set_m_EmitAccumulator1_13(float value)
{
___m_EmitAccumulator1_13 = value;
}
inline static int32_t get_offset_of_m_Flags_14() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Flags_14)); }
inline uint32_t get_m_Flags_14() const { return ___m_Flags_14; }
inline uint32_t* get_address_of_m_Flags_14() { return &___m_Flags_14; }
inline void set_m_Flags_14(uint32_t value)
{
___m_Flags_14 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PARTICLE_T64AF74F5D9C7EE7018AD98F29E4FF653558A581E_H
#ifndef PLANE_T0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_H
#define PLANE_T0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PLANE_T0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_H
#ifndef POSE_T2997DE3CB3863E4D78FCF42B46FC481818823F29_H
#define POSE_T2997DE3CB3863E4D78FCF42B46FC481818823F29_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // POSE_T2997DE3CB3863E4D78FCF42B46FC481818823F29_H
#ifndef RAY_TE2163D4CB3E6B267E29F8ABE41684490E4A614B2_H
#define RAY_TE2163D4CB3E6B267E29F8ABE41684490E4A614B2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RAY_TE2163D4CB3E6B267E29F8ABE41684490E4A614B2_H
#ifndef RAYCASTHIT_T19695F18F9265FE5425062BBA6A4D330480538C3_H
#define RAYCASTHIT_T19695F18F9265FE5425062BBA6A4D330480538C3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RAYCASTHIT_T19695F18F9265FE5425062BBA6A4D330480538C3_H
#ifndef RAYCASTHIT2D_T5E8A7F96317BAF2033362FC780F4D72DC72764BE_H
#define RAYCASTHIT2D_T5E8A7F96317BAF2033362FC780F4D72DC72764BE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RAYCASTHIT2D_T5E8A7F96317BAF2033362FC780F4D72DC72764BE_H
#ifndef GLYPHADJUSTMENTRECORD_T771BE41EF0B790AF1E65928F401E3AB0EE548D00_H
#define GLYPHADJUSTMENTRECORD_T771BE41EF0B790AF1E65928F401E3AB0EE548D00_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord
struct GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00
{
public:
// System.UInt32 UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord::m_GlyphIndex
uint32_t ___m_GlyphIndex_0;
// UnityEngine.TextCore.LowLevel.GlyphValueRecord UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord::m_GlyphValueRecord
GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D ___m_GlyphValueRecord_1;
public:
inline static int32_t get_offset_of_m_GlyphIndex_0() { return static_cast<int32_t>(offsetof(GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00, ___m_GlyphIndex_0)); }
inline uint32_t get_m_GlyphIndex_0() const { return ___m_GlyphIndex_0; }
inline uint32_t* get_address_of_m_GlyphIndex_0() { return &___m_GlyphIndex_0; }
inline void set_m_GlyphIndex_0(uint32_t value)
{
___m_GlyphIndex_0 = value;
}
inline static int32_t get_offset_of_m_GlyphValueRecord_1() { return static_cast<int32_t>(offsetof(GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00, ___m_GlyphValueRecord_1)); }
inline GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D get_m_GlyphValueRecord_1() const { return ___m_GlyphValueRecord_1; }
inline GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D * get_address_of_m_GlyphValueRecord_1() { return &___m_GlyphValueRecord_1; }
inline void set_m_GlyphValueRecord_1(GlyphValueRecord_tC8C22AFC124DD2B4F0E9383A9C14AA8661359A5D value)
{
___m_GlyphValueRecord_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GLYPHADJUSTMENTRECORD_T771BE41EF0B790AF1E65928F401E3AB0EE548D00_H
#ifndef GLYPHMARSHALLINGSTRUCT_T4A13978D8A28D0D54B36F37557770DCD83219448_H
#define GLYPHMARSHALLINGSTRUCT_T4A13978D8A28D0D54B36F37557770DCD83219448_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct
struct GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448
{
public:
// System.UInt32 UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::index
uint32_t ___index_0;
// UnityEngine.TextCore.GlyphMetrics UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::metrics
GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB ___metrics_1;
// UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::glyphRect
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___glyphRect_2;
// System.Single UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::scale
float ___scale_3;
// System.Int32 UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::atlasIndex
int32_t ___atlasIndex_4;
public:
inline static int32_t get_offset_of_index_0() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448, ___index_0)); }
inline uint32_t get_index_0() const { return ___index_0; }
inline uint32_t* get_address_of_index_0() { return &___index_0; }
inline void set_index_0(uint32_t value)
{
___index_0 = value;
}
inline static int32_t get_offset_of_metrics_1() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448, ___metrics_1)); }
inline GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB get_metrics_1() const { return ___metrics_1; }
inline GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB * get_address_of_metrics_1() { return &___metrics_1; }
inline void set_metrics_1(GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB value)
{
___metrics_1 = value;
}
inline static int32_t get_offset_of_glyphRect_2() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448, ___glyphRect_2)); }
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C get_glyphRect_2() const { return ___glyphRect_2; }
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * get_address_of_glyphRect_2() { return &___glyphRect_2; }
inline void set_glyphRect_2(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C value)
{
___glyphRect_2 = value;
}
inline static int32_t get_offset_of_scale_3() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448, ___scale_3)); }
inline float get_scale_3() const { return ___scale_3; }
inline float* get_address_of_scale_3() { return &___scale_3; }
inline void set_scale_3(float value)
{
___scale_3 = value;
}
inline static int32_t get_offset_of_atlasIndex_4() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448, ___atlasIndex_4)); }
inline int32_t get_atlasIndex_4() const { return ___atlasIndex_4; }
inline int32_t* get_address_of_atlasIndex_4() { return &___atlasIndex_4; }
inline void set_atlasIndex_4(int32_t value)
{
___atlasIndex_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GLYPHMARSHALLINGSTRUCT_T4A13978D8A28D0D54B36F37557770DCD83219448_H
#ifndef TOUCHPHASE_TD902305F0B673116C42548A58E8BEED50177A33D_H
#define TOUCHPHASE_TD902305F0B673116C42548A58E8BEED50177A33D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TOUCHPHASE_TD902305F0B673116C42548A58E8BEED50177A33D_H
#ifndef TOUCHTYPE_T27DBEAB2242247A15EDE96D740F7EB73ACC938DB_H
#define TOUCHTYPE_T27DBEAB2242247A15EDE96D740F7EB73ACC938DB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TOUCHTYPE_T27DBEAB2242247A15EDE96D740F7EB73ACC938DB_H
#ifndef COLORBLOCK_T93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_H
#define COLORBLOCK_T93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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_DisabledColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_DisabledColor_3;
// System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier
float ___m_ColorMultiplier_4;
// System.Single UnityEngine.UI.ColorBlock::m_FadeDuration
float ___m_FadeDuration_5;
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_DisabledColor_3() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_DisabledColor_3)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_DisabledColor_3() const { return ___m_DisabledColor_3; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_DisabledColor_3() { return &___m_DisabledColor_3; }
inline void set_m_DisabledColor_3(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_DisabledColor_3 = value;
}
inline static int32_t get_offset_of_m_ColorMultiplier_4() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_ColorMultiplier_4)); }
inline float get_m_ColorMultiplier_4() const { return ___m_ColorMultiplier_4; }
inline float* get_address_of_m_ColorMultiplier_4() { return &___m_ColorMultiplier_4; }
inline void set_m_ColorMultiplier_4(float value)
{
___m_ColorMultiplier_4 = value;
}
inline static int32_t get_offset_of_m_FadeDuration_5() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_FadeDuration_5)); }
inline float get_m_FadeDuration_5() const { return ___m_FadeDuration_5; }
inline float* get_address_of_m_FadeDuration_5() { return &___m_FadeDuration_5; }
inline void set_m_FadeDuration_5(float value)
{
___m_FadeDuration_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLORBLOCK_T93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_H
#ifndef MODE_T93F92BD50B147AE38D82BA33FA77FD247A59FE26_H
#define MODE_T93F92BD50B147AE38D82BA33FA77FD247A59FE26_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MODE_T93F92BD50B147AE38D82BA33FA77FD247A59FE26_H
#ifndef UICHARINFO_TB4C92043A686A600D36A92E3108F173C499E318A_H
#define UICHARINFO_TB4C92043A686A600D36A92E3108F173C499E318A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UICHARINFO_TB4C92043A686A600D36A92E3108F173C499E318A_H
#ifndef UIVERTEX_T0583C35B730B218B542E80203F5F4BC6F1E9E577_H
#define UIVERTEX_T0583C35B730B218B542E80203F5F4BC6F1E9E577_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UIVERTEX_T0583C35B730B218B542E80203F5F4BC6F1E9E577_H
#ifndef INTERACTIONSOURCEFLAGS_TFEED23CE62EF1B04EEBB6C7DD1CA6921D73E9BBE_H
#define INTERACTIONSOURCEFLAGS_TFEED23CE62EF1B04EEBB6C7DD1CA6921D73E9BBE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERACTIONSOURCEFLAGS_TFEED23CE62EF1B04EEBB6C7DD1CA6921D73E9BBE_H
#ifndef INTERACTIONSOURCEHANDEDNESS_T10FDFBFAABBC3E04468D3AE77CE3614E7DD9308E_H
#define INTERACTIONSOURCEHANDEDNESS_T10FDFBFAABBC3E04468D3AE77CE3614E7DD9308E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERACTIONSOURCEHANDEDNESS_T10FDFBFAABBC3E04468D3AE77CE3614E7DD9308E_H
#ifndef INTERACTIONSOURCEKIND_T5405F2951F4D1FC7D041FBAC720950BDA3CD3819_H
#define INTERACTIONSOURCEKIND_T5405F2951F4D1FC7D041FBAC720950BDA3CD3819_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERACTIONSOURCEKIND_T5405F2951F4D1FC7D041FBAC720950BDA3CD3819_H
#ifndef INTERACTIONSOURCEPOSEFLAGS_T46E1164F226BCDCDEAD84C338483E7A401794BA8_H
#define INTERACTIONSOURCEPOSEFLAGS_T46E1164F226BCDCDEAD84C338483E7A401794BA8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERACTIONSOURCEPOSEFLAGS_T46E1164F226BCDCDEAD84C338483E7A401794BA8_H
#ifndef INTERACTIONSOURCEPOSITIONACCURACY_T53AC6BBABBE0182903C6CA4529BD2FA3479276AD_H
#define INTERACTIONSOURCEPOSITIONACCURACY_T53AC6BBABBE0182903C6CA4529BD2FA3479276AD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERACTIONSOURCEPOSITIONACCURACY_T53AC6BBABBE0182903C6CA4529BD2FA3479276AD_H
#ifndef INTERACTIONSOURCESTATEFLAGS_T44E9FA88305A647259525473BD922773CACB5905_H
#define INTERACTIONSOURCESTATEFLAGS_T44E9FA88305A647259525473BD922773CACB5905_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERACTIONSOURCESTATEFLAGS_T44E9FA88305A647259525473BD922773CACB5905_H
#ifndef HANDMESHVERTEX_T97CBC783B105CAF080C98A2E7D750023040B41C3_H
#define HANDMESHVERTEX_T97CBC783B105CAF080C98A2E7D750023040B41C3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Perception.People.HandMeshVertex
struct HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3
{
public:
// System.Numerics.Vector3 Windows.Perception.People.HandMeshVertex::Position
Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 ___Position_0;
// System.Numerics.Vector3 Windows.Perception.People.HandMeshVertex::Normal
Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 ___Normal_1;
public:
inline static int32_t get_offset_of_Position_0() { return static_cast<int32_t>(offsetof(HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3, ___Position_0)); }
inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 get_Position_0() const { return ___Position_0; }
inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 * get_address_of_Position_0() { return &___Position_0; }
inline void set_Position_0(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 value)
{
___Position_0 = value;
}
inline static int32_t get_offset_of_Normal_1() { return static_cast<int32_t>(offsetof(HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3, ___Normal_1)); }
inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 get_Normal_1() const { return ___Normal_1; }
inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 * get_address_of_Normal_1() { return &___Normal_1; }
inline void set_Normal_1(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 value)
{
___Normal_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HANDMESHVERTEX_T97CBC783B105CAF080C98A2E7D750023040B41C3_H
#ifndef JOINTPOSEACCURACY_TAE24E9827E028CD4CD542843A442BBEF384E3D9C_H
#define JOINTPOSEACCURACY_TAE24E9827E028CD4CD542843A442BBEF384E3D9C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Perception.People.JointPoseAccuracy
struct JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C
{
public:
// System.Int32 Windows.Perception.People.JointPoseAccuracy::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JointPoseAccuracy_tAE24E9827E028CD4CD542843A442BBEF384E3D9C, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // JOINTPOSEACCURACY_TAE24E9827E028CD4CD542843A442BBEF384E3D9C_H
#ifndef SPATIALRAY_T3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_H
#define SPATIALRAY_T3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Perception.Spatial.SpatialRay
struct SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B
{
public:
// System.Numerics.Vector3 Windows.Perception.Spatial.SpatialRay::Origin
Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 ___Origin_0;
// System.Numerics.Vector3 Windows.Perception.Spatial.SpatialRay::Direction
Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 ___Direction_1;
public:
inline static int32_t get_offset_of_Origin_0() { return static_cast<int32_t>(offsetof(SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B, ___Origin_0)); }
inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 get_Origin_0() const { return ___Origin_0; }
inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 * get_address_of_Origin_0() { return &___Origin_0; }
inline void set_Origin_0(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 value)
{
___Origin_0 = value;
}
inline static int32_t get_offset_of_Direction_1() { return static_cast<int32_t>(offsetof(SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B, ___Direction_1)); }
inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 get_Direction_1() const { return ___Direction_1; }
inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 * get_address_of_Direction_1() { return &___Direction_1; }
inline void set_Direction_1(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 value)
{
___Direction_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SPATIALRAY_T3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_H
#ifndef TYPEKIND_TFC0FD272ED78E70CA1173A99B89D31193D93239C_H
#define TYPEKIND_TFC0FD272ED78E70CA1173A99B89D31193D93239C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.UI.Xaml.Interop.TypeKind
struct TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C
{
public:
// System.Int32 Windows.UI.Xaml.Interop.TypeKind::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeKind_tFC0FD272ED78E70CA1173A99B89D31193D93239C, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPEKIND_TFC0FD272ED78E70CA1173A99B89D31193D93239C_H
#ifndef MIXEDREALITYCAMERASETTINGSCONFIGURATION_T852153BDF75B66256441DE78702A02A2AFF36B2F_H
#define MIXEDREALITYCAMERASETTINGSCONFIGURATION_T852153BDF75B66256441DE78702A02A2AFF36B2F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSettingsConfiguration
struct MixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.SystemType Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSettingsConfiguration::componentType
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___componentType_0;
// System.String Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSettingsConfiguration::componentName
String_t* ___componentName_1;
// System.UInt32 Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSettingsConfiguration::priority
uint32_t ___priority_2;
// Microsoft.MixedReality.Toolkit.Utilities.SupportedPlatforms Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSettingsConfiguration::runtimePlatform
int32_t ___runtimePlatform_3;
// Microsoft.MixedReality.Toolkit.CameraSystem.BaseCameraSettingsProfile Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSettingsConfiguration::settingsProfile
BaseCameraSettingsProfile_t52C0D5096C9A8F11F116C3B16FA7A33CE2D02070 * ___settingsProfile_4;
public:
inline static int32_t get_offset_of_componentType_0() { return static_cast<int32_t>(offsetof(MixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F, ___componentType_0)); }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * get_componentType_0() const { return ___componentType_0; }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 ** get_address_of_componentType_0() { return &___componentType_0; }
inline void set_componentType_0(SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * value)
{
___componentType_0 = value;
Il2CppCodeGenWriteBarrier((&___componentType_0), value);
}
inline static int32_t get_offset_of_componentName_1() { return static_cast<int32_t>(offsetof(MixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F, ___componentName_1)); }
inline String_t* get_componentName_1() const { return ___componentName_1; }
inline String_t** get_address_of_componentName_1() { return &___componentName_1; }
inline void set_componentName_1(String_t* value)
{
___componentName_1 = value;
Il2CppCodeGenWriteBarrier((&___componentName_1), value);
}
inline static int32_t get_offset_of_priority_2() { return static_cast<int32_t>(offsetof(MixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F, ___priority_2)); }
inline uint32_t get_priority_2() const { return ___priority_2; }
inline uint32_t* get_address_of_priority_2() { return &___priority_2; }
inline void set_priority_2(uint32_t value)
{
___priority_2 = value;
}
inline static int32_t get_offset_of_runtimePlatform_3() { return static_cast<int32_t>(offsetof(MixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F, ___runtimePlatform_3)); }
inline int32_t get_runtimePlatform_3() const { return ___runtimePlatform_3; }
inline int32_t* get_address_of_runtimePlatform_3() { return &___runtimePlatform_3; }
inline void set_runtimePlatform_3(int32_t value)
{
___runtimePlatform_3 = value;
}
inline static int32_t get_offset_of_settingsProfile_4() { return static_cast<int32_t>(offsetof(MixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F, ___settingsProfile_4)); }
inline BaseCameraSettingsProfile_t52C0D5096C9A8F11F116C3B16FA7A33CE2D02070 * get_settingsProfile_4() const { return ___settingsProfile_4; }
inline BaseCameraSettingsProfile_t52C0D5096C9A8F11F116C3B16FA7A33CE2D02070 ** get_address_of_settingsProfile_4() { return &___settingsProfile_4; }
inline void set_settingsProfile_4(BaseCameraSettingsProfile_t52C0D5096C9A8F11F116C3B16FA7A33CE2D02070 * value)
{
___settingsProfile_4 = value;
Il2CppCodeGenWriteBarrier((&___settingsProfile_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSettingsConfiguration
struct MixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F_marshaled_pinvoke
{
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___componentType_0;
char* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseCameraSettingsProfile_t52C0D5096C9A8F11F116C3B16FA7A33CE2D02070 * ___settingsProfile_4;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSettingsConfiguration
struct MixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F_marshaled_com
{
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___componentType_0;
Il2CppChar* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseCameraSettingsProfile_t52C0D5096C9A8F11F116C3B16FA7A33CE2D02070 * ___settingsProfile_4;
};
#endif // MIXEDREALITYCAMERASETTINGSCONFIGURATION_T852153BDF75B66256441DE78702A02A2AFF36B2F_H
#ifndef ANCHORATTACHMENTINFO_T943AF31788A22BE419CA043DF2B721037E0795FA_H
#define ANCHORATTACHMENTINFO_T943AF31788A22BE419CA043DF2B721037E0795FA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Experimental.Utilities.WorldAnchorManager_AnchorAttachmentInfo
struct AnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA
{
public:
// UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Experimental.Utilities.WorldAnchorManager_AnchorAttachmentInfo::<AnchoredGameObject>k__BackingField
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3CAnchoredGameObjectU3Ek__BackingField_0;
// System.String Microsoft.MixedReality.Toolkit.Experimental.Utilities.WorldAnchorManager_AnchorAttachmentInfo::<AnchorName>k__BackingField
String_t* ___U3CAnchorNameU3Ek__BackingField_1;
// Microsoft.MixedReality.Toolkit.Experimental.Utilities.WorldAnchorManager_AnchorOperation Microsoft.MixedReality.Toolkit.Experimental.Utilities.WorldAnchorManager_AnchorAttachmentInfo::<Operation>k__BackingField
int32_t ___U3COperationU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CAnchoredGameObjectU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(AnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA, ___U3CAnchoredGameObjectU3Ek__BackingField_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_U3CAnchoredGameObjectU3Ek__BackingField_0() const { return ___U3CAnchoredGameObjectU3Ek__BackingField_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_U3CAnchoredGameObjectU3Ek__BackingField_0() { return &___U3CAnchoredGameObjectU3Ek__BackingField_0; }
inline void set_U3CAnchoredGameObjectU3Ek__BackingField_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___U3CAnchoredGameObjectU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CAnchoredGameObjectU3Ek__BackingField_0), value);
}
inline static int32_t get_offset_of_U3CAnchorNameU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(AnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA, ___U3CAnchorNameU3Ek__BackingField_1)); }
inline String_t* get_U3CAnchorNameU3Ek__BackingField_1() const { return ___U3CAnchorNameU3Ek__BackingField_1; }
inline String_t** get_address_of_U3CAnchorNameU3Ek__BackingField_1() { return &___U3CAnchorNameU3Ek__BackingField_1; }
inline void set_U3CAnchorNameU3Ek__BackingField_1(String_t* value)
{
___U3CAnchorNameU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CAnchorNameU3Ek__BackingField_1), value);
}
inline static int32_t get_offset_of_U3COperationU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(AnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA, ___U3COperationU3Ek__BackingField_2)); }
inline int32_t get_U3COperationU3Ek__BackingField_2() const { return ___U3COperationU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3COperationU3Ek__BackingField_2() { return &___U3COperationU3Ek__BackingField_2; }
inline void set_U3COperationU3Ek__BackingField_2(int32_t value)
{
___U3COperationU3Ek__BackingField_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Experimental.Utilities.WorldAnchorManager/AnchorAttachmentInfo
struct AnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA_marshaled_pinvoke
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3CAnchoredGameObjectU3Ek__BackingField_0;
char* ___U3CAnchorNameU3Ek__BackingField_1;
int32_t ___U3COperationU3Ek__BackingField_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Experimental.Utilities.WorldAnchorManager/AnchorAttachmentInfo
struct AnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA_marshaled_com
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3CAnchoredGameObjectU3Ek__BackingField_0;
Il2CppChar* ___U3CAnchorNameU3Ek__BackingField_1;
int32_t ___U3COperationU3Ek__BackingField_2;
};
#endif // ANCHORATTACHMENTINFO_T943AF31788A22BE419CA043DF2B721037E0795FA_H
#ifndef MESHCURSORDATUM_T32F705F843704F7CA71B74254532872E1A4C5EFE_H
#define MESHCURSORDATUM_T32F705F843704F7CA71B74254532872E1A4C5EFE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum
struct MeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum::Name
String_t* ___Name_0;
// Microsoft.MixedReality.Toolkit.Input.CursorStateEnum Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum::CursorState
int32_t ___CursorState_1;
// UnityEngine.Mesh Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum::CursorMesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___CursorMesh_2;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum::LocalScale
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LocalScale_3;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum::LocalOffset
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LocalOffset_4;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(MeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE, ___Name_0)); }
inline String_t* get_Name_0() const { return ___Name_0; }
inline String_t** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(String_t* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((&___Name_0), value);
}
inline static int32_t get_offset_of_CursorState_1() { return static_cast<int32_t>(offsetof(MeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE, ___CursorState_1)); }
inline int32_t get_CursorState_1() const { return ___CursorState_1; }
inline int32_t* get_address_of_CursorState_1() { return &___CursorState_1; }
inline void set_CursorState_1(int32_t value)
{
___CursorState_1 = value;
}
inline static int32_t get_offset_of_CursorMesh_2() { return static_cast<int32_t>(offsetof(MeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE, ___CursorMesh_2)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_CursorMesh_2() const { return ___CursorMesh_2; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_CursorMesh_2() { return &___CursorMesh_2; }
inline void set_CursorMesh_2(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___CursorMesh_2 = value;
Il2CppCodeGenWriteBarrier((&___CursorMesh_2), value);
}
inline static int32_t get_offset_of_LocalScale_3() { return static_cast<int32_t>(offsetof(MeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE, ___LocalScale_3)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_LocalScale_3() const { return ___LocalScale_3; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_LocalScale_3() { return &___LocalScale_3; }
inline void set_LocalScale_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___LocalScale_3 = value;
}
inline static int32_t get_offset_of_LocalOffset_4() { return static_cast<int32_t>(offsetof(MeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE, ___LocalOffset_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_LocalOffset_4() const { return ___LocalOffset_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_LocalOffset_4() { return &___LocalOffset_4; }
inline void set_LocalOffset_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___LocalOffset_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.MeshCursor/MeshCursorDatum
struct MeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE_marshaled_pinvoke
{
char* ___Name_0;
int32_t ___CursorState_1;
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___CursorMesh_2;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LocalScale_3;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LocalOffset_4;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.MeshCursor/MeshCursorDatum
struct MeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE_marshaled_com
{
Il2CppChar* ___Name_0;
int32_t ___CursorState_1;
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___CursorMesh_2;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LocalScale_3;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___LocalOffset_4;
};
#endif // MESHCURSORDATUM_T32F705F843704F7CA71B74254532872E1A4C5EFE_H
#ifndef MIXEDREALITYCONTROLLERMAPPING_TF69D1391F414B595E967C9573B8EF3A8CFE0C13C_H
#define MIXEDREALITYCONTROLLERMAPPING_TF69D1391F414B595E967C9573B8EF3A8CFE0C13C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping
struct MixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.SystemType Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping::controllerType
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___controllerType_0;
// Microsoft.MixedReality.Toolkit.Utilities.Handedness Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping::handedness
uint8_t ___handedness_1;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInteractionMapping[] Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping::interactions
MixedRealityInteractionMappingU5BU5D_tB16E9C2700709844772AAA99C5971C70CA9F2C69* ___interactions_2;
public:
inline static int32_t get_offset_of_controllerType_0() { return static_cast<int32_t>(offsetof(MixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C, ___controllerType_0)); }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * get_controllerType_0() const { return ___controllerType_0; }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 ** get_address_of_controllerType_0() { return &___controllerType_0; }
inline void set_controllerType_0(SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * value)
{
___controllerType_0 = value;
Il2CppCodeGenWriteBarrier((&___controllerType_0), value);
}
inline static int32_t get_offset_of_handedness_1() { return static_cast<int32_t>(offsetof(MixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C, ___handedness_1)); }
inline uint8_t get_handedness_1() const { return ___handedness_1; }
inline uint8_t* get_address_of_handedness_1() { return &___handedness_1; }
inline void set_handedness_1(uint8_t value)
{
___handedness_1 = value;
}
inline static int32_t get_offset_of_interactions_2() { return static_cast<int32_t>(offsetof(MixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C, ___interactions_2)); }
inline MixedRealityInteractionMappingU5BU5D_tB16E9C2700709844772AAA99C5971C70CA9F2C69* get_interactions_2() const { return ___interactions_2; }
inline MixedRealityInteractionMappingU5BU5D_tB16E9C2700709844772AAA99C5971C70CA9F2C69** get_address_of_interactions_2() { return &___interactions_2; }
inline void set_interactions_2(MixedRealityInteractionMappingU5BU5D_tB16E9C2700709844772AAA99C5971C70CA9F2C69* value)
{
___interactions_2 = value;
Il2CppCodeGenWriteBarrier((&___interactions_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping
struct MixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C_marshaled_pinvoke
{
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___controllerType_0;
uint8_t ___handedness_1;
MixedRealityInteractionMappingU5BU5D_tB16E9C2700709844772AAA99C5971C70CA9F2C69* ___interactions_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping
struct MixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C_marshaled_com
{
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___controllerType_0;
uint8_t ___handedness_1;
MixedRealityInteractionMappingU5BU5D_tB16E9C2700709844772AAA99C5971C70CA9F2C69* ___interactions_2;
};
#endif // MIXEDREALITYCONTROLLERMAPPING_TF69D1391F414B595E967C9573B8EF3A8CFE0C13C_H
#ifndef MIXEDREALITYCONTROLLERVISUALIZATIONSETTING_TCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38_H
#define MIXEDREALITYCONTROLLERVISUALIZATIONSETTING_TCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting
struct MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting::description
String_t* ___description_0;
// Microsoft.MixedReality.Toolkit.Utilities.SystemType Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting::controllerType
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___controllerType_1;
// Microsoft.MixedReality.Toolkit.Utilities.Handedness Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting::handedness
uint8_t ___handedness_2;
// System.Boolean Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting::useDefaultModel
bool ___useDefaultModel_3;
// UnityEngine.Material Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting::defaultModelMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___defaultModelMaterial_4;
// UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting::overrideModel
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___overrideModel_5;
// Microsoft.MixedReality.Toolkit.Utilities.SystemType Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting::controllerVisualizationType
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___controllerVisualizationType_6;
public:
inline static int32_t get_offset_of_description_0() { return static_cast<int32_t>(offsetof(MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38, ___description_0)); }
inline String_t* get_description_0() const { return ___description_0; }
inline String_t** get_address_of_description_0() { return &___description_0; }
inline void set_description_0(String_t* value)
{
___description_0 = value;
Il2CppCodeGenWriteBarrier((&___description_0), value);
}
inline static int32_t get_offset_of_controllerType_1() { return static_cast<int32_t>(offsetof(MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38, ___controllerType_1)); }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * get_controllerType_1() const { return ___controllerType_1; }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 ** get_address_of_controllerType_1() { return &___controllerType_1; }
inline void set_controllerType_1(SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * value)
{
___controllerType_1 = value;
Il2CppCodeGenWriteBarrier((&___controllerType_1), value);
}
inline static int32_t get_offset_of_handedness_2() { return static_cast<int32_t>(offsetof(MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38, ___handedness_2)); }
inline uint8_t get_handedness_2() const { return ___handedness_2; }
inline uint8_t* get_address_of_handedness_2() { return &___handedness_2; }
inline void set_handedness_2(uint8_t value)
{
___handedness_2 = value;
}
inline static int32_t get_offset_of_useDefaultModel_3() { return static_cast<int32_t>(offsetof(MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38, ___useDefaultModel_3)); }
inline bool get_useDefaultModel_3() const { return ___useDefaultModel_3; }
inline bool* get_address_of_useDefaultModel_3() { return &___useDefaultModel_3; }
inline void set_useDefaultModel_3(bool value)
{
___useDefaultModel_3 = value;
}
inline static int32_t get_offset_of_defaultModelMaterial_4() { return static_cast<int32_t>(offsetof(MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38, ___defaultModelMaterial_4)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_defaultModelMaterial_4() const { return ___defaultModelMaterial_4; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_defaultModelMaterial_4() { return &___defaultModelMaterial_4; }
inline void set_defaultModelMaterial_4(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___defaultModelMaterial_4 = value;
Il2CppCodeGenWriteBarrier((&___defaultModelMaterial_4), value);
}
inline static int32_t get_offset_of_overrideModel_5() { return static_cast<int32_t>(offsetof(MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38, ___overrideModel_5)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_overrideModel_5() const { return ___overrideModel_5; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_overrideModel_5() { return &___overrideModel_5; }
inline void set_overrideModel_5(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___overrideModel_5 = value;
Il2CppCodeGenWriteBarrier((&___overrideModel_5), value);
}
inline static int32_t get_offset_of_controllerVisualizationType_6() { return static_cast<int32_t>(offsetof(MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38, ___controllerVisualizationType_6)); }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * get_controllerVisualizationType_6() const { return ___controllerVisualizationType_6; }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 ** get_address_of_controllerVisualizationType_6() { return &___controllerVisualizationType_6; }
inline void set_controllerVisualizationType_6(SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * value)
{
___controllerVisualizationType_6 = value;
Il2CppCodeGenWriteBarrier((&___controllerVisualizationType_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting
struct MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38_marshaled_pinvoke
{
char* ___description_0;
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___controllerType_1;
uint8_t ___handedness_2;
int32_t ___useDefaultModel_3;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___defaultModelMaterial_4;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___overrideModel_5;
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___controllerVisualizationType_6;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting
struct MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38_marshaled_com
{
Il2CppChar* ___description_0;
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___controllerType_1;
uint8_t ___handedness_2;
int32_t ___useDefaultModel_3;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___defaultModelMaterial_4;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___overrideModel_5;
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___controllerVisualizationType_6;
};
#endif // MIXEDREALITYCONTROLLERVISUALIZATIONSETTING_TCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38_H
#ifndef MIXEDREALITYINPUTACTION_T7ACD606B450B908E03401BB3CC5742FBB6810001_H
#define MIXEDREALITYINPUTACTION_T7ACD606B450B908E03401BB3CC5742FBB6810001_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction
struct MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001
{
public:
// System.UInt32 Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction::id
uint32_t ___id_1;
// System.String Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction::description
String_t* ___description_2;
// Microsoft.MixedReality.Toolkit.Utilities.AxisType Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction::axisConstraint
int32_t ___axisConstraint_3;
public:
inline static int32_t get_offset_of_id_1() { return static_cast<int32_t>(offsetof(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001, ___id_1)); }
inline uint32_t get_id_1() const { return ___id_1; }
inline uint32_t* get_address_of_id_1() { return &___id_1; }
inline void set_id_1(uint32_t value)
{
___id_1 = value;
}
inline static int32_t get_offset_of_description_2() { return static_cast<int32_t>(offsetof(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001, ___description_2)); }
inline String_t* get_description_2() const { return ___description_2; }
inline String_t** get_address_of_description_2() { return &___description_2; }
inline void set_description_2(String_t* value)
{
___description_2 = value;
Il2CppCodeGenWriteBarrier((&___description_2), value);
}
inline static int32_t get_offset_of_axisConstraint_3() { return static_cast<int32_t>(offsetof(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001, ___axisConstraint_3)); }
inline int32_t get_axisConstraint_3() const { return ___axisConstraint_3; }
inline int32_t* get_address_of_axisConstraint_3() { return &___axisConstraint_3; }
inline void set_axisConstraint_3(int32_t value)
{
___axisConstraint_3 = value;
}
};
struct MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_StaticFields
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction::<None>k__BackingField
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___U3CNoneU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CNoneU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_StaticFields, ___U3CNoneU3Ek__BackingField_0)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_U3CNoneU3Ek__BackingField_0() const { return ___U3CNoneU3Ek__BackingField_0; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_U3CNoneU3Ek__BackingField_0() { return &___U3CNoneU3Ek__BackingField_0; }
inline void set_U3CNoneU3Ek__BackingField_0(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___U3CNoneU3Ek__BackingField_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction
struct MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke
{
uint32_t ___id_1;
char* ___description_2;
int32_t ___axisConstraint_3;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction
struct MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com
{
uint32_t ___id_1;
Il2CppChar* ___description_2;
int32_t ___axisConstraint_3;
};
#endif // MIXEDREALITYINPUTACTION_T7ACD606B450B908E03401BB3CC5742FBB6810001_H
#ifndef MIXEDREALITYINPUTDATAPROVIDERCONFIGURATION_T57425B585BCCDB29913B17979632C146BA13DF88_H
#define MIXEDREALITYINPUTDATAPROVIDERCONFIGURATION_T57425B585BCCDB29913B17979632C146BA13DF88_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration
struct MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.SystemType Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration::componentType
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___componentType_0;
// System.String Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration::componentName
String_t* ___componentName_1;
// System.UInt32 Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration::priority
uint32_t ___priority_2;
// Microsoft.MixedReality.Toolkit.Utilities.SupportedPlatforms Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration::runtimePlatform
int32_t ___runtimePlatform_3;
// Microsoft.MixedReality.Toolkit.BaseMixedRealityProfile Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration::deviceManagerProfile
BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B * ___deviceManagerProfile_4;
public:
inline static int32_t get_offset_of_componentType_0() { return static_cast<int32_t>(offsetof(MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88, ___componentType_0)); }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * get_componentType_0() const { return ___componentType_0; }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 ** get_address_of_componentType_0() { return &___componentType_0; }
inline void set_componentType_0(SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * value)
{
___componentType_0 = value;
Il2CppCodeGenWriteBarrier((&___componentType_0), value);
}
inline static int32_t get_offset_of_componentName_1() { return static_cast<int32_t>(offsetof(MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88, ___componentName_1)); }
inline String_t* get_componentName_1() const { return ___componentName_1; }
inline String_t** get_address_of_componentName_1() { return &___componentName_1; }
inline void set_componentName_1(String_t* value)
{
___componentName_1 = value;
Il2CppCodeGenWriteBarrier((&___componentName_1), value);
}
inline static int32_t get_offset_of_priority_2() { return static_cast<int32_t>(offsetof(MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88, ___priority_2)); }
inline uint32_t get_priority_2() const { return ___priority_2; }
inline uint32_t* get_address_of_priority_2() { return &___priority_2; }
inline void set_priority_2(uint32_t value)
{
___priority_2 = value;
}
inline static int32_t get_offset_of_runtimePlatform_3() { return static_cast<int32_t>(offsetof(MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88, ___runtimePlatform_3)); }
inline int32_t get_runtimePlatform_3() const { return ___runtimePlatform_3; }
inline int32_t* get_address_of_runtimePlatform_3() { return &___runtimePlatform_3; }
inline void set_runtimePlatform_3(int32_t value)
{
___runtimePlatform_3 = value;
}
inline static int32_t get_offset_of_deviceManagerProfile_4() { return static_cast<int32_t>(offsetof(MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88, ___deviceManagerProfile_4)); }
inline BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B * get_deviceManagerProfile_4() const { return ___deviceManagerProfile_4; }
inline BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B ** get_address_of_deviceManagerProfile_4() { return &___deviceManagerProfile_4; }
inline void set_deviceManagerProfile_4(BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B * value)
{
___deviceManagerProfile_4 = value;
Il2CppCodeGenWriteBarrier((&___deviceManagerProfile_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration
struct MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88_marshaled_pinvoke
{
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___componentType_0;
char* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B * ___deviceManagerProfile_4;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration
struct MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88_marshaled_com
{
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___componentType_0;
Il2CppChar* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B * ___deviceManagerProfile_4;
};
#endif // MIXEDREALITYINPUTDATAPROVIDERCONFIGURATION_T57425B585BCCDB29913B17979632C146BA13DF88_H
#ifndef OBJECTCURSORDATUM_TB247D684A965D591706DF322528DFAC9AE4C9BDE_H
#define OBJECTCURSORDATUM_TB247D684A965D591706DF322528DFAC9AE4C9BDE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.ObjectCursor_ObjectCursorDatum
struct ObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.ObjectCursor_ObjectCursorDatum::Name
String_t* ___Name_0;
// Microsoft.MixedReality.Toolkit.Input.CursorStateEnum Microsoft.MixedReality.Toolkit.Input.ObjectCursor_ObjectCursorDatum::CursorState
int32_t ___CursorState_1;
// UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Input.ObjectCursor_ObjectCursorDatum::CursorObject
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___CursorObject_2;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(ObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE, ___Name_0)); }
inline String_t* get_Name_0() const { return ___Name_0; }
inline String_t** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(String_t* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((&___Name_0), value);
}
inline static int32_t get_offset_of_CursorState_1() { return static_cast<int32_t>(offsetof(ObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE, ___CursorState_1)); }
inline int32_t get_CursorState_1() const { return ___CursorState_1; }
inline int32_t* get_address_of_CursorState_1() { return &___CursorState_1; }
inline void set_CursorState_1(int32_t value)
{
___CursorState_1 = value;
}
inline static int32_t get_offset_of_CursorObject_2() { return static_cast<int32_t>(offsetof(ObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE, ___CursorObject_2)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_CursorObject_2() const { return ___CursorObject_2; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_CursorObject_2() { return &___CursorObject_2; }
inline void set_CursorObject_2(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___CursorObject_2 = value;
Il2CppCodeGenWriteBarrier((&___CursorObject_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.ObjectCursor/ObjectCursorDatum
struct ObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE_marshaled_pinvoke
{
char* ___Name_0;
int32_t ___CursorState_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___CursorObject_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.ObjectCursor/ObjectCursorDatum
struct ObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE_marshaled_com
{
Il2CppChar* ___Name_0;
int32_t ___CursorState_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___CursorObject_2;
};
#endif // OBJECTCURSORDATUM_TB247D684A965D591706DF322528DFAC9AE4C9BDE_H
#ifndef POINTEROPTION_T45D589489410654B8E3BB749A0C524B22540CAB7_H
#define POINTEROPTION_T45D589489410654B8E3BB749A0C524B22540CAB7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.PointerOption
struct PointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7
{
public:
// Microsoft.MixedReality.Toolkit.Input.SupportedControllerType Microsoft.MixedReality.Toolkit.Input.PointerOption::controllerType
int32_t ___controllerType_0;
// Microsoft.MixedReality.Toolkit.Utilities.Handedness Microsoft.MixedReality.Toolkit.Input.PointerOption::handedness
uint8_t ___handedness_1;
// UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Input.PointerOption::pointerPrefab
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___pointerPrefab_2;
public:
inline static int32_t get_offset_of_controllerType_0() { return static_cast<int32_t>(offsetof(PointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7, ___controllerType_0)); }
inline int32_t get_controllerType_0() const { return ___controllerType_0; }
inline int32_t* get_address_of_controllerType_0() { return &___controllerType_0; }
inline void set_controllerType_0(int32_t value)
{
___controllerType_0 = value;
}
inline static int32_t get_offset_of_handedness_1() { return static_cast<int32_t>(offsetof(PointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7, ___handedness_1)); }
inline uint8_t get_handedness_1() const { return ___handedness_1; }
inline uint8_t* get_address_of_handedness_1() { return &___handedness_1; }
inline void set_handedness_1(uint8_t value)
{
___handedness_1 = value;
}
inline static int32_t get_offset_of_pointerPrefab_2() { return static_cast<int32_t>(offsetof(PointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7, ___pointerPrefab_2)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_pointerPrefab_2() const { return ___pointerPrefab_2; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_pointerPrefab_2() { return &___pointerPrefab_2; }
inline void set_pointerPrefab_2(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___pointerPrefab_2 = value;
Il2CppCodeGenWriteBarrier((&___pointerPrefab_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.PointerOption
struct PointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7_marshaled_pinvoke
{
int32_t ___controllerType_0;
uint8_t ___handedness_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___pointerPrefab_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.PointerOption
struct PointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7_marshaled_com
{
int32_t ___controllerType_0;
uint8_t ___handedness_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___pointerPrefab_2;
};
#endif // POINTEROPTION_T45D589489410654B8E3BB749A0C524B22540CAB7_H
#ifndef SPRITECURSORDATUM_T6FB829FC559BB109D678BC07D75982261B785790_H
#define SPRITECURSORDATUM_T6FB829FC559BB109D678BC07D75982261B785790_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.SpriteCursor_SpriteCursorDatum
struct SpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.SpriteCursor_SpriteCursorDatum::Name
String_t* ___Name_0;
// Microsoft.MixedReality.Toolkit.Input.CursorStateEnum Microsoft.MixedReality.Toolkit.Input.SpriteCursor_SpriteCursorDatum::CursorState
int32_t ___CursorState_1;
// UnityEngine.Sprite Microsoft.MixedReality.Toolkit.Input.SpriteCursor_SpriteCursorDatum::CursorSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___CursorSprite_2;
// UnityEngine.Color Microsoft.MixedReality.Toolkit.Input.SpriteCursor_SpriteCursorDatum::CursorColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___CursorColor_3;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(SpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790, ___Name_0)); }
inline String_t* get_Name_0() const { return ___Name_0; }
inline String_t** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(String_t* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((&___Name_0), value);
}
inline static int32_t get_offset_of_CursorState_1() { return static_cast<int32_t>(offsetof(SpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790, ___CursorState_1)); }
inline int32_t get_CursorState_1() const { return ___CursorState_1; }
inline int32_t* get_address_of_CursorState_1() { return &___CursorState_1; }
inline void set_CursorState_1(int32_t value)
{
___CursorState_1 = value;
}
inline static int32_t get_offset_of_CursorSprite_2() { return static_cast<int32_t>(offsetof(SpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790, ___CursorSprite_2)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_CursorSprite_2() const { return ___CursorSprite_2; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_CursorSprite_2() { return &___CursorSprite_2; }
inline void set_CursorSprite_2(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___CursorSprite_2 = value;
Il2CppCodeGenWriteBarrier((&___CursorSprite_2), value);
}
inline static int32_t get_offset_of_CursorColor_3() { return static_cast<int32_t>(offsetof(SpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790, ___CursorColor_3)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_CursorColor_3() const { return ___CursorColor_3; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_CursorColor_3() { return &___CursorColor_3; }
inline void set_CursorColor_3(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___CursorColor_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.SpriteCursor/SpriteCursorDatum
struct SpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790_marshaled_pinvoke
{
char* ___Name_0;
int32_t ___CursorState_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___CursorSprite_2;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___CursorColor_3;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.SpriteCursor/SpriteCursorDatum
struct SpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790_marshaled_com
{
Il2CppChar* ___Name_0;
int32_t ___CursorState_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___CursorSprite_2;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___CursorColor_3;
};
#endif // SPRITECURSORDATUM_T6FB829FC559BB109D678BC07D75982261B785790_H
#ifndef MIXEDREALITYSERVICECONFIGURATION_T7CF40F89F0B67415C8B3B46E81DB26B75284E57D_H
#define MIXEDREALITYSERVICECONFIGURATION_T7CF40F89F0B67415C8B3B46E81DB26B75284E57D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration
struct MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.SystemType Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration::componentType
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___componentType_0;
// System.String Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration::componentName
String_t* ___componentName_1;
// System.UInt32 Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration::priority
uint32_t ___priority_2;
// Microsoft.MixedReality.Toolkit.Utilities.SupportedPlatforms Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration::runtimePlatform
int32_t ___runtimePlatform_3;
// Microsoft.MixedReality.Toolkit.BaseMixedRealityProfile Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration::configurationProfile
BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B * ___configurationProfile_4;
public:
inline static int32_t get_offset_of_componentType_0() { return static_cast<int32_t>(offsetof(MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D, ___componentType_0)); }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * get_componentType_0() const { return ___componentType_0; }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 ** get_address_of_componentType_0() { return &___componentType_0; }
inline void set_componentType_0(SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * value)
{
___componentType_0 = value;
Il2CppCodeGenWriteBarrier((&___componentType_0), value);
}
inline static int32_t get_offset_of_componentName_1() { return static_cast<int32_t>(offsetof(MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D, ___componentName_1)); }
inline String_t* get_componentName_1() const { return ___componentName_1; }
inline String_t** get_address_of_componentName_1() { return &___componentName_1; }
inline void set_componentName_1(String_t* value)
{
___componentName_1 = value;
Il2CppCodeGenWriteBarrier((&___componentName_1), value);
}
inline static int32_t get_offset_of_priority_2() { return static_cast<int32_t>(offsetof(MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D, ___priority_2)); }
inline uint32_t get_priority_2() const { return ___priority_2; }
inline uint32_t* get_address_of_priority_2() { return &___priority_2; }
inline void set_priority_2(uint32_t value)
{
___priority_2 = value;
}
inline static int32_t get_offset_of_runtimePlatform_3() { return static_cast<int32_t>(offsetof(MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D, ___runtimePlatform_3)); }
inline int32_t get_runtimePlatform_3() const { return ___runtimePlatform_3; }
inline int32_t* get_address_of_runtimePlatform_3() { return &___runtimePlatform_3; }
inline void set_runtimePlatform_3(int32_t value)
{
___runtimePlatform_3 = value;
}
inline static int32_t get_offset_of_configurationProfile_4() { return static_cast<int32_t>(offsetof(MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D, ___configurationProfile_4)); }
inline BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B * get_configurationProfile_4() const { return ___configurationProfile_4; }
inline BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B ** get_address_of_configurationProfile_4() { return &___configurationProfile_4; }
inline void set_configurationProfile_4(BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B * value)
{
___configurationProfile_4 = value;
Il2CppCodeGenWriteBarrier((&___configurationProfile_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration
struct MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D_marshaled_pinvoke
{
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___componentType_0;
char* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B * ___configurationProfile_4;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration
struct MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D_marshaled_com
{
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___componentType_0;
Il2CppChar* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseMixedRealityProfile_t94F8622EEDD7F13CFA936C16501EDC6ADE26A95B * ___configurationProfile_4;
};
#endif // MIXEDREALITYSERVICECONFIGURATION_T7CF40F89F0B67415C8B3B46E81DB26B75284E57D_H
#ifndef SCENEINFO_T9CF70922247852FB73E43FE593F9A0194AB5B1FE_H
#define SCENEINFO_T9CF70922247852FB73E43FE593F9A0194AB5B1FE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo
struct SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE
{
public:
// System.String Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::Name
String_t* ___Name_1;
// System.String Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::Path
String_t* ___Path_2;
// System.Boolean Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::Included
bool ___Included_3;
// System.Int32 Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::BuildIndex
int32_t ___BuildIndex_4;
// System.String Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::Tag
String_t* ___Tag_5;
// UnityEngine.Object Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::Asset
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___Asset_6;
public:
inline static int32_t get_offset_of_Name_1() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE, ___Name_1)); }
inline String_t* get_Name_1() const { return ___Name_1; }
inline String_t** get_address_of_Name_1() { return &___Name_1; }
inline void set_Name_1(String_t* value)
{
___Name_1 = value;
Il2CppCodeGenWriteBarrier((&___Name_1), value);
}
inline static int32_t get_offset_of_Path_2() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE, ___Path_2)); }
inline String_t* get_Path_2() const { return ___Path_2; }
inline String_t** get_address_of_Path_2() { return &___Path_2; }
inline void set_Path_2(String_t* value)
{
___Path_2 = value;
Il2CppCodeGenWriteBarrier((&___Path_2), value);
}
inline static int32_t get_offset_of_Included_3() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE, ___Included_3)); }
inline bool get_Included_3() const { return ___Included_3; }
inline bool* get_address_of_Included_3() { return &___Included_3; }
inline void set_Included_3(bool value)
{
___Included_3 = value;
}
inline static int32_t get_offset_of_BuildIndex_4() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE, ___BuildIndex_4)); }
inline int32_t get_BuildIndex_4() const { return ___BuildIndex_4; }
inline int32_t* get_address_of_BuildIndex_4() { return &___BuildIndex_4; }
inline void set_BuildIndex_4(int32_t value)
{
___BuildIndex_4 = value;
}
inline static int32_t get_offset_of_Tag_5() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE, ___Tag_5)); }
inline String_t* get_Tag_5() const { return ___Tag_5; }
inline String_t** get_address_of_Tag_5() { return &___Tag_5; }
inline void set_Tag_5(String_t* value)
{
___Tag_5 = value;
Il2CppCodeGenWriteBarrier((&___Tag_5), value);
}
inline static int32_t get_offset_of_Asset_6() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE, ___Asset_6)); }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_Asset_6() const { return ___Asset_6; }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_Asset_6() { return &___Asset_6; }
inline void set_Asset_6(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
___Asset_6 = value;
Il2CppCodeGenWriteBarrier((&___Asset_6), value);
}
};
struct SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_StaticFields
{
public:
// Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo::empty
SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE ___empty_0;
public:
inline static int32_t get_offset_of_empty_0() { return static_cast<int32_t>(offsetof(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_StaticFields, ___empty_0)); }
inline SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE get_empty_0() const { return ___empty_0; }
inline SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE * get_address_of_empty_0() { return &___empty_0; }
inline void set_empty_0(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE value)
{
___empty_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo
struct SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_marshaled_pinvoke
{
char* ___Name_1;
char* ___Path_2;
int32_t ___Included_3;
int32_t ___BuildIndex_4;
char* ___Tag_5;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke ___Asset_6;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo
struct SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_marshaled_com
{
Il2CppChar* ___Name_1;
Il2CppChar* ___Path_2;
int32_t ___Included_3;
int32_t ___BuildIndex_4;
Il2CppChar* ___Tag_5;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com* ___Asset_6;
};
#endif // SCENEINFO_T9CF70922247852FB73E43FE593F9A0194AB5B1FE_H
#ifndef MIXEDREALITYSPATIALOBSERVERCONFIGURATION_T7E12C5058E1E5B12622B646007E936D0AEDEFCB3_H
#define MIXEDREALITYSPATIALOBSERVERCONFIGURATION_T7E12C5058E1E5B12622B646007E936D0AEDEFCB3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration
struct MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.SystemType Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration::componentType
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___componentType_0;
// System.String Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration::componentName
String_t* ___componentName_1;
// System.UInt32 Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration::priority
uint32_t ___priority_2;
// Microsoft.MixedReality.Toolkit.Utilities.SupportedPlatforms Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration::runtimePlatform
int32_t ___runtimePlatform_3;
// Microsoft.MixedReality.Toolkit.SpatialAwareness.BaseSpatialAwarenessObserverProfile Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration::observerProfile
BaseSpatialAwarenessObserverProfile_tD7E20AD61D6B6DD53CF2AD3877DCF2A4B8892B35 * ___observerProfile_4;
public:
inline static int32_t get_offset_of_componentType_0() { return static_cast<int32_t>(offsetof(MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3, ___componentType_0)); }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * get_componentType_0() const { return ___componentType_0; }
inline SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 ** get_address_of_componentType_0() { return &___componentType_0; }
inline void set_componentType_0(SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * value)
{
___componentType_0 = value;
Il2CppCodeGenWriteBarrier((&___componentType_0), value);
}
inline static int32_t get_offset_of_componentName_1() { return static_cast<int32_t>(offsetof(MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3, ___componentName_1)); }
inline String_t* get_componentName_1() const { return ___componentName_1; }
inline String_t** get_address_of_componentName_1() { return &___componentName_1; }
inline void set_componentName_1(String_t* value)
{
___componentName_1 = value;
Il2CppCodeGenWriteBarrier((&___componentName_1), value);
}
inline static int32_t get_offset_of_priority_2() { return static_cast<int32_t>(offsetof(MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3, ___priority_2)); }
inline uint32_t get_priority_2() const { return ___priority_2; }
inline uint32_t* get_address_of_priority_2() { return &___priority_2; }
inline void set_priority_2(uint32_t value)
{
___priority_2 = value;
}
inline static int32_t get_offset_of_runtimePlatform_3() { return static_cast<int32_t>(offsetof(MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3, ___runtimePlatform_3)); }
inline int32_t get_runtimePlatform_3() const { return ___runtimePlatform_3; }
inline int32_t* get_address_of_runtimePlatform_3() { return &___runtimePlatform_3; }
inline void set_runtimePlatform_3(int32_t value)
{
___runtimePlatform_3 = value;
}
inline static int32_t get_offset_of_observerProfile_4() { return static_cast<int32_t>(offsetof(MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3, ___observerProfile_4)); }
inline BaseSpatialAwarenessObserverProfile_tD7E20AD61D6B6DD53CF2AD3877DCF2A4B8892B35 * get_observerProfile_4() const { return ___observerProfile_4; }
inline BaseSpatialAwarenessObserverProfile_tD7E20AD61D6B6DD53CF2AD3877DCF2A4B8892B35 ** get_address_of_observerProfile_4() { return &___observerProfile_4; }
inline void set_observerProfile_4(BaseSpatialAwarenessObserverProfile_tD7E20AD61D6B6DD53CF2AD3877DCF2A4B8892B35 * value)
{
___observerProfile_4 = value;
Il2CppCodeGenWriteBarrier((&___observerProfile_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration
struct MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3_marshaled_pinvoke
{
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___componentType_0;
char* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseSpatialAwarenessObserverProfile_tD7E20AD61D6B6DD53CF2AD3877DCF2A4B8892B35 * ___observerProfile_4;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration
struct MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3_marshaled_com
{
SystemType_tD2505A955DD8A4DEC1BD0FF44D66E2C35CE63C34 * ___componentType_0;
Il2CppChar* ___componentName_1;
uint32_t ___priority_2;
int32_t ___runtimePlatform_3;
BaseSpatialAwarenessObserverProfile_tD7E20AD61D6B6DD53CF2AD3877DCF2A4B8892B35 * ___observerProfile_4;
};
#endif // MIXEDREALITYSPATIALOBSERVERCONFIGURATION_T7E12C5058E1E5B12622B646007E936D0AEDEFCB3_H
#ifndef SHADERPROPERTIES_T1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_H
#define SHADERPROPERTIES_T1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.UI.ShaderProperties
struct ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7
{
public:
// System.String Microsoft.MixedReality.Toolkit.UI.ShaderProperties::Name
String_t* ___Name_0;
// Microsoft.MixedReality.Toolkit.UI.ShaderPropertyType Microsoft.MixedReality.Toolkit.UI.ShaderProperties::Type
int32_t ___Type_1;
// UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.UI.ShaderProperties::Range
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Range_2;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7, ___Name_0)); }
inline String_t* get_Name_0() const { return ___Name_0; }
inline String_t** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(String_t* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((&___Name_0), value);
}
inline static int32_t get_offset_of_Type_1() { return static_cast<int32_t>(offsetof(ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7, ___Type_1)); }
inline int32_t get_Type_1() const { return ___Type_1; }
inline int32_t* get_address_of_Type_1() { return &___Type_1; }
inline void set_Type_1(int32_t value)
{
___Type_1 = value;
}
inline static int32_t get_offset_of_Range_2() { return static_cast<int32_t>(offsetof(ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7, ___Range_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_Range_2() const { return ___Range_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_Range_2() { return &___Range_2; }
inline void set_Range_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___Range_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.UI.ShaderProperties
struct ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_marshaled_pinvoke
{
char* ___Name_0;
int32_t ___Type_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Range_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.UI.ShaderProperties
struct ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_marshaled_com
{
Il2CppChar* ___Name_0;
int32_t ___Type_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Range_2;
};
#endif // SHADERPROPERTIES_T1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_H
#ifndef ANIMATORPARAMETER_T5CAF630F90E53D8CFD8FC3130D487174209B4D7B_H
#define ANIMATORPARAMETER_T5CAF630F90E53D8CFD8FC3130D487174209B4D7B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter
struct AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B
{
public:
// UnityEngine.AnimatorControllerParameterType Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter::parameterType
int32_t ___parameterType_0;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter::defaultInt
int32_t ___defaultInt_1;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter::defaultFloat
float ___defaultFloat_2;
// System.Boolean Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter::defaultBool
bool ___defaultBool_3;
// System.String Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter::name
String_t* ___name_4;
// System.Nullable`1<System.Int32> Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter::nameStringHash
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___nameStringHash_5;
public:
inline static int32_t get_offset_of_parameterType_0() { return static_cast<int32_t>(offsetof(AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B, ___parameterType_0)); }
inline int32_t get_parameterType_0() const { return ___parameterType_0; }
inline int32_t* get_address_of_parameterType_0() { return &___parameterType_0; }
inline void set_parameterType_0(int32_t value)
{
___parameterType_0 = value;
}
inline static int32_t get_offset_of_defaultInt_1() { return static_cast<int32_t>(offsetof(AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B, ___defaultInt_1)); }
inline int32_t get_defaultInt_1() const { return ___defaultInt_1; }
inline int32_t* get_address_of_defaultInt_1() { return &___defaultInt_1; }
inline void set_defaultInt_1(int32_t value)
{
___defaultInt_1 = value;
}
inline static int32_t get_offset_of_defaultFloat_2() { return static_cast<int32_t>(offsetof(AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B, ___defaultFloat_2)); }
inline float get_defaultFloat_2() const { return ___defaultFloat_2; }
inline float* get_address_of_defaultFloat_2() { return &___defaultFloat_2; }
inline void set_defaultFloat_2(float value)
{
___defaultFloat_2 = value;
}
inline static int32_t get_offset_of_defaultBool_3() { return static_cast<int32_t>(offsetof(AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B, ___defaultBool_3)); }
inline bool get_defaultBool_3() const { return ___defaultBool_3; }
inline bool* get_address_of_defaultBool_3() { return &___defaultBool_3; }
inline void set_defaultBool_3(bool value)
{
___defaultBool_3 = value;
}
inline static int32_t get_offset_of_name_4() { return static_cast<int32_t>(offsetof(AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B, ___name_4)); }
inline String_t* get_name_4() const { return ___name_4; }
inline String_t** get_address_of_name_4() { return &___name_4; }
inline void set_name_4(String_t* value)
{
___name_4 = value;
Il2CppCodeGenWriteBarrier((&___name_4), value);
}
inline static int32_t get_offset_of_nameStringHash_5() { return static_cast<int32_t>(offsetof(AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B, ___nameStringHash_5)); }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB get_nameStringHash_5() const { return ___nameStringHash_5; }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * get_address_of_nameStringHash_5() { return &___nameStringHash_5; }
inline void set_nameStringHash_5(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB value)
{
___nameStringHash_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter
struct AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B_marshaled_pinvoke
{
int32_t ___parameterType_0;
int32_t ___defaultInt_1;
float ___defaultFloat_2;
int32_t ___defaultBool_3;
char* ___name_4;
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___nameStringHash_5;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter
struct AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B_marshaled_com
{
int32_t ___parameterType_0;
int32_t ___defaultInt_1;
float ___defaultFloat_2;
int32_t ___defaultBool_3;
Il2CppChar* ___name_4;
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___nameStringHash_5;
};
#endif // ANIMATORPARAMETER_T5CAF630F90E53D8CFD8FC3130D487174209B4D7B_H
#ifndef ARTICULATEDHANDPOSEITEM_T371D5DF51C5F2EB98A3739D79317506A23AFE3D1_H
#define ARTICULATEDHANDPOSEITEM_T371D5DF51C5F2EB98A3739D79317506A23AFE3D1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Utilities.ArticulatedHandPose_ArticulatedHandPoseItem
struct ArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1
{
public:
// System.String Microsoft.MixedReality.Toolkit.Utilities.ArticulatedHandPose_ArticulatedHandPoseItem::joint
String_t* ___joint_1;
// Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose Microsoft.MixedReality.Toolkit.Utilities.ArticulatedHandPose_ArticulatedHandPoseItem::pose
MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 ___pose_2;
public:
inline static int32_t get_offset_of_joint_1() { return static_cast<int32_t>(offsetof(ArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1, ___joint_1)); }
inline String_t* get_joint_1() const { return ___joint_1; }
inline String_t** get_address_of_joint_1() { return &___joint_1; }
inline void set_joint_1(String_t* value)
{
___joint_1 = value;
Il2CppCodeGenWriteBarrier((&___joint_1), value);
}
inline static int32_t get_offset_of_pose_2() { return static_cast<int32_t>(offsetof(ArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1, ___pose_2)); }
inline MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 get_pose_2() const { return ___pose_2; }
inline MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 * get_address_of_pose_2() { return &___pose_2; }
inline void set_pose_2(MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 value)
{
___pose_2 = value;
}
};
struct ArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_StaticFields
{
public:
// System.String[] Microsoft.MixedReality.Toolkit.Utilities.ArticulatedHandPose_ArticulatedHandPoseItem::jointNames
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___jointNames_0;
public:
inline static int32_t get_offset_of_jointNames_0() { return static_cast<int32_t>(offsetof(ArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_StaticFields, ___jointNames_0)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_jointNames_0() const { return ___jointNames_0; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_jointNames_0() { return &___jointNames_0; }
inline void set_jointNames_0(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___jointNames_0 = value;
Il2CppCodeGenWriteBarrier((&___jointNames_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Utilities.ArticulatedHandPose/ArticulatedHandPoseItem
struct ArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_marshaled_pinvoke
{
char* ___joint_1;
MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 ___pose_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Utilities.ArticulatedHandPose/ArticulatedHandPoseItem
struct ArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_marshaled_com
{
Il2CppChar* ___joint_1;
MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 ___pose_2;
};
#endif // ARTICULATEDHANDPOSEITEM_T371D5DF51C5F2EB98A3739D79317506A23AFE3D1_H
#ifndef ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H
#define ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H
#ifndef ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H
#define ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
// System.Object System.ArgumentOutOfRangeException::m_actualValue
RuntimeObject * ___m_actualValue_19;
public:
inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); }
inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; }
inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; }
inline void set_m_actualValue_19(RuntimeObject * value)
{
___m_actualValue_19 = value;
Il2CppCodeGenWriteBarrier((&___m_actualValue_19), value);
}
};
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields
{
public:
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage
String_t* ____rangeMessage_18;
public:
inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); }
inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; }
inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; }
inline void set__rangeMessage_18(String_t* value)
{
____rangeMessage_18 = value;
Il2CppCodeGenWriteBarrier((&____rangeMessage_18), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H
#ifndef ENTRY_T3A99E3574F89658F38564648536BBF4389E095FC_H
#define ENTRY_T3A99E3574F89658F38564648536BBF4389E095FC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.ByteEnum,UnityEngine.Bounds>
struct Entry_t3A99E3574F89658F38564648536BBF4389E095FC
{
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
uint8_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t3A99E3574F89658F38564648536BBF4389E095FC, ___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_t3A99E3574F89658F38564648536BBF4389E095FC, ___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_t3A99E3574F89658F38564648536BBF4389E095FC, ___key_2)); }
inline uint8_t get_key_2() const { return ___key_2; }
inline uint8_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint8_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t3A99E3574F89658F38564648536BBF4389E095FC, ___value_3)); }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 get_value_3() const { return ___value_3; }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T3A99E3574F89658F38564648536BBF4389E095FC_H
#ifndef ENTRY_T9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC_H
#define ENTRY_T9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings>
struct Entry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC
{
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
AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC, ___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_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC, ___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_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC, ___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_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC, ___value_3)); }
inline AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21 get_value_3() const { return ___value_3; }
inline AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21 value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC_H
#ifndef ENTRY_T96E5884D311BFAEFD0EC3E423F4601CF4E06C488_H
#define ENTRY_T96E5884D311BFAEFD0EC3E423F4601CF4E06C488_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>
struct Entry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488
{
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
MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488, ___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_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488, ___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_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488, ___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_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488, ___value_3)); }
inline MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 get_value_3() const { return ___value_3; }
inline MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T96E5884D311BFAEFD0EC3E423F4601CF4E06C488_H
#ifndef ENTRY_T49F9C4F801ED373E9E3EF1356529574A83EE14AD_H
#define ENTRY_T49F9C4F801ED373E9E3EF1356529574A83EE14AD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,System.Object>
struct Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD
{
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_t49F9C4F801ED373E9E3EF1356529574A83EE14AD, ___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_t49F9C4F801ED373E9E3EF1356529574A83EE14AD, ___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_t49F9C4F801ED373E9E3EF1356529574A83EE14AD, ___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_t49F9C4F801ED373E9E3EF1356529574A83EE14AD, ___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((&___value_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T49F9C4F801ED373E9E3EF1356529574A83EE14AD_H
#ifndef ENTRY_T6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF_H
#define ENTRY_T6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_EventRegistrationTokenList>
struct Entry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF
{
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
EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF, ___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_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF, ___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_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF, ___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((&___key_2), value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF, ___value_3)); }
inline EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A get_value_3() const { return ___value_3; }
inline EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF_H
#ifndef ENTRY_T26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688_H
#define ENTRY_T26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2_Entry<System.UInt32,Microsoft.MixedReality.Toolkit.UI.ManipulationHandler_PointerData>
struct Entry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
uint32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688, ___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_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688, ___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_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688, ___key_2)); }
inline uint32_t get_key_2() const { return ___key_2; }
inline uint32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688, ___value_3)); }
inline PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 get_value_3() const { return ___value_3; }
inline PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688_H
#ifndef KEYVALUEPAIR_2_TBFE6061382ECFB951EF82A74BB248F225B781238_H
#define KEYVALUEPAIR_2_TBFE6061382ECFB951EF82A74BB248F225B781238_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.ByteEnum,UnityEngine.Bounds>
struct KeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint8_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238, ___key_0)); }
inline uint8_t get_key_0() const { return ___key_0; }
inline uint8_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint8_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238, ___value_1)); }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 get_value_1() const { return ___value_1; }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_TBFE6061382ECFB951EF82A74BB248F225B781238_H
#ifndef KEYVALUEPAIR_2_T313C688709339B65356C7987905E2242EF4A8187_H
#define KEYVALUEPAIR_2_T313C688709339B65356C7987905E2242EF4A8187_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings>
struct KeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187, ___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_t313C688709339B65356C7987905E2242EF4A8187, ___value_1)); }
inline AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21 get_value_1() const { return ___value_1; }
inline AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21 value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T313C688709339B65356C7987905E2242EF4A8187_H
#ifndef KEYVALUEPAIR_2_T720314488017FB37ED4D1F358118D2B39C522DF7_H
#define KEYVALUEPAIR_2_T720314488017FB37ED4D1F358118D2B39C522DF7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>
struct KeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7, ___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_t720314488017FB37ED4D1F358118D2B39C522DF7, ___value_1)); }
inline MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 get_value_1() const { return ___value_1; }
inline MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T720314488017FB37ED4D1F358118D2B39C522DF7_H
#ifndef KEYVALUEPAIR_2_T69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_H
#define KEYVALUEPAIR_2_T69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_H
#ifndef KEYVALUEPAIR_2_T9166121F7D0104D469E8B23CA0CC235A379281B3_H
#define KEYVALUEPAIR_2_T9166121F7D0104D469E8B23CA0CC235A379281B3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_EventRegistrationTokenList>
struct KeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3, ___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((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3, ___value_1)); }
inline EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A get_value_1() const { return ___value_1; }
inline EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T9166121F7D0104D469E8B23CA0CC235A379281B3_H
#ifndef KEYVALUEPAIR_2_TD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B_H
#define KEYVALUEPAIR_2_TD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.UInt32,Microsoft.MixedReality.Toolkit.UI.ManipulationHandler_PointerData>
struct KeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B, ___key_0)); }
inline uint32_t get_key_0() const { return ___key_0; }
inline uint32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B, ___value_1)); }
inline PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 get_value_1() const { return ___value_1; }
inline PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_TD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B_H
#ifndef RECOGNIZEDATTRIBUTE_T300D9F628CDAED6F665BFE996936B9CE0FA0D95B_H
#define RECOGNIZEDATTRIBUTE_T300D9F628CDAED6F665BFE996936B9CE0FA0D95B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.CookieTokenizer_RecognizedAttribute
struct RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B
{
public:
// System.String System.Net.CookieTokenizer_RecognizedAttribute::m_name
String_t* ___m_name_0;
// System.Net.CookieToken System.Net.CookieTokenizer_RecognizedAttribute::m_token
int32_t ___m_token_1;
public:
inline static int32_t get_offset_of_m_name_0() { return static_cast<int32_t>(offsetof(RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B, ___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((&___m_name_0), value);
}
inline static int32_t get_offset_of_m_token_1() { return static_cast<int32_t>(offsetof(RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B, ___m_token_1)); }
inline int32_t get_m_token_1() const { return ___m_token_1; }
inline int32_t* get_address_of_m_token_1() { return &___m_token_1; }
inline void set_m_token_1(int32_t value)
{
___m_token_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.CookieTokenizer/RecognizedAttribute
struct RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_marshaled_pinvoke
{
char* ___m_name_0;
int32_t ___m_token_1;
};
// Native definition for COM marshalling of System.Net.CookieTokenizer/RecognizedAttribute
struct RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_marshaled_com
{
Il2CppChar* ___m_name_0;
int32_t ___m_token_1;
};
#endif // RECOGNIZEDATTRIBUTE_T300D9F628CDAED6F665BFE996936B9CE0FA0D95B_H
#ifndef HEADERVARIANTINFO_TFF12EDB71F2B9508779B160689F99BA209DA9E64_H
#define HEADERVARIANTINFO_TFF12EDB71F2B9508779B160689F99BA209DA9E64_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.HeaderVariantInfo
struct HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64
{
public:
// System.String System.Net.HeaderVariantInfo::m_name
String_t* ___m_name_0;
// System.Net.CookieVariant System.Net.HeaderVariantInfo::m_variant
int32_t ___m_variant_1;
public:
inline static int32_t get_offset_of_m_name_0() { return static_cast<int32_t>(offsetof(HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64, ___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((&___m_name_0), value);
}
inline static int32_t get_offset_of_m_variant_1() { return static_cast<int32_t>(offsetof(HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64, ___m_variant_1)); }
inline int32_t get_m_variant_1() const { return ___m_variant_1; }
inline int32_t* get_address_of_m_variant_1() { return &___m_variant_1; }
inline void set_m_variant_1(int32_t value)
{
___m_variant_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.HeaderVariantInfo
struct HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_marshaled_pinvoke
{
char* ___m_name_0;
int32_t ___m_variant_1;
};
// Native definition for COM marshalling of System.Net.HeaderVariantInfo
struct HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_marshaled_com
{
Il2CppChar* ___m_name_0;
int32_t ___m_variant_1;
};
#endif // HEADERVARIANTINFO_TFF12EDB71F2B9508779B160689F99BA209DA9E64_H
#ifndef X509CHAINSTATUS_T9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_H
#define X509CHAINSTATUS_T9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509ChainStatus
struct X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C
{
public:
// System.Security.Cryptography.X509Certificates.X509ChainStatusFlags System.Security.Cryptography.X509Certificates.X509ChainStatus::status
int32_t ___status_0;
// System.String System.Security.Cryptography.X509Certificates.X509ChainStatus::info
String_t* ___info_1;
public:
inline static int32_t get_offset_of_status_0() { return static_cast<int32_t>(offsetof(X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C, ___status_0)); }
inline int32_t get_status_0() const { return ___status_0; }
inline int32_t* get_address_of_status_0() { return &___status_0; }
inline void set_status_0(int32_t value)
{
___status_0 = value;
}
inline static int32_t get_offset_of_info_1() { return static_cast<int32_t>(offsetof(X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C, ___info_1)); }
inline String_t* get_info_1() const { return ___info_1; }
inline String_t** get_address_of_info_1() { return &___info_1; }
inline void set_info_1(String_t* value)
{
___info_1 = value;
Il2CppCodeGenWriteBarrier((&___info_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus
struct X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_marshaled_pinvoke
{
int32_t ___status_0;
char* ___info_1;
};
// Native definition for COM marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus
struct X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_marshaled_com
{
int32_t ___status_0;
Il2CppChar* ___info_1;
};
#endif // X509CHAINSTATUS_T9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_H
#ifndef RICHTEXTTAGATTRIBUTE_T381E96CA7820A787C5D88B6DA0181DFA85ADBA98_H
#define RICHTEXTTAGATTRIBUTE_T381E96CA7820A787C5D88B6DA0181DFA85ADBA98_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.RichTextTagAttribute
struct RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98
{
public:
// System.Int32 TMPro.RichTextTagAttribute::nameHashCode
int32_t ___nameHashCode_0;
// System.Int32 TMPro.RichTextTagAttribute::valueHashCode
int32_t ___valueHashCode_1;
// TMPro.TagValueType TMPro.RichTextTagAttribute::valueType
int32_t ___valueType_2;
// System.Int32 TMPro.RichTextTagAttribute::valueStartIndex
int32_t ___valueStartIndex_3;
// System.Int32 TMPro.RichTextTagAttribute::valueLength
int32_t ___valueLength_4;
// TMPro.TagUnitType TMPro.RichTextTagAttribute::unitType
int32_t ___unitType_5;
public:
inline static int32_t get_offset_of_nameHashCode_0() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98, ___nameHashCode_0)); }
inline int32_t get_nameHashCode_0() const { return ___nameHashCode_0; }
inline int32_t* get_address_of_nameHashCode_0() { return &___nameHashCode_0; }
inline void set_nameHashCode_0(int32_t value)
{
___nameHashCode_0 = value;
}
inline static int32_t get_offset_of_valueHashCode_1() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98, ___valueHashCode_1)); }
inline int32_t get_valueHashCode_1() const { return ___valueHashCode_1; }
inline int32_t* get_address_of_valueHashCode_1() { return &___valueHashCode_1; }
inline void set_valueHashCode_1(int32_t value)
{
___valueHashCode_1 = value;
}
inline static int32_t get_offset_of_valueType_2() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98, ___valueType_2)); }
inline int32_t get_valueType_2() const { return ___valueType_2; }
inline int32_t* get_address_of_valueType_2() { return &___valueType_2; }
inline void set_valueType_2(int32_t value)
{
___valueType_2 = value;
}
inline static int32_t get_offset_of_valueStartIndex_3() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98, ___valueStartIndex_3)); }
inline int32_t get_valueStartIndex_3() const { return ___valueStartIndex_3; }
inline int32_t* get_address_of_valueStartIndex_3() { return &___valueStartIndex_3; }
inline void set_valueStartIndex_3(int32_t value)
{
___valueStartIndex_3 = value;
}
inline static int32_t get_offset_of_valueLength_4() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98, ___valueLength_4)); }
inline int32_t get_valueLength_4() const { return ___valueLength_4; }
inline int32_t* get_address_of_valueLength_4() { return &___valueLength_4; }
inline void set_valueLength_4(int32_t value)
{
___valueLength_4 = value;
}
inline static int32_t get_offset_of_unitType_5() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98, ___unitType_5)); }
inline int32_t get_unitType_5() const { return ___unitType_5; }
inline int32_t* get_address_of_unitType_5() { return &___unitType_5; }
inline void set_unitType_5(int32_t value)
{
___unitType_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RICHTEXTTAGATTRIBUTE_T381E96CA7820A787C5D88B6DA0181DFA85ADBA98_H
#ifndef TMP_CHARACTERINFO_T15C146F0B08EE44A63EC777AC32151D061AFFAF1_H
#define TMP_CHARACTERINFO_T15C146F0B08EE44A63EC777AC32151D061AFFAF1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.TMP_CharacterInfo
struct TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1
{
public:
// System.Char TMPro.TMP_CharacterInfo::character
Il2CppChar ___character_0;
// System.Int32 TMPro.TMP_CharacterInfo::index
int32_t ___index_1;
// System.Int32 TMPro.TMP_CharacterInfo::stringLength
int32_t ___stringLength_2;
// TMPro.TMP_TextElementType TMPro.TMP_CharacterInfo::elementType
int32_t ___elementType_3;
// TMPro.TMP_TextElement TMPro.TMP_CharacterInfo::textElement
TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * ___textElement_4;
// TMPro.TMP_FontAsset TMPro.TMP_CharacterInfo::fontAsset
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_5;
// TMPro.TMP_SpriteAsset TMPro.TMP_CharacterInfo::spriteAsset
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_6;
// System.Int32 TMPro.TMP_CharacterInfo::spriteIndex
int32_t ___spriteIndex_7;
// UnityEngine.Material TMPro.TMP_CharacterInfo::material
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_8;
// System.Int32 TMPro.TMP_CharacterInfo::materialReferenceIndex
int32_t ___materialReferenceIndex_9;
// System.Boolean TMPro.TMP_CharacterInfo::isUsingAlternateTypeface
bool ___isUsingAlternateTypeface_10;
// System.Single TMPro.TMP_CharacterInfo::pointSize
float ___pointSize_11;
// System.Int32 TMPro.TMP_CharacterInfo::lineNumber
int32_t ___lineNumber_12;
// System.Int32 TMPro.TMP_CharacterInfo::pageNumber
int32_t ___pageNumber_13;
// System.Int32 TMPro.TMP_CharacterInfo::vertexIndex
int32_t ___vertexIndex_14;
// TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_BL
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BL_15;
// TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_TL
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TL_16;
// TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_TR
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TR_17;
// TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_BR
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BR_18;
// UnityEngine.Vector3 TMPro.TMP_CharacterInfo::topLeft
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topLeft_19;
// UnityEngine.Vector3 TMPro.TMP_CharacterInfo::bottomLeft
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomLeft_20;
// UnityEngine.Vector3 TMPro.TMP_CharacterInfo::topRight
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topRight_21;
// UnityEngine.Vector3 TMPro.TMP_CharacterInfo::bottomRight
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomRight_22;
// System.Single TMPro.TMP_CharacterInfo::origin
float ___origin_23;
// System.Single TMPro.TMP_CharacterInfo::ascender
float ___ascender_24;
// System.Single TMPro.TMP_CharacterInfo::baseLine
float ___baseLine_25;
// System.Single TMPro.TMP_CharacterInfo::descender
float ___descender_26;
// System.Single TMPro.TMP_CharacterInfo::xAdvance
float ___xAdvance_27;
// System.Single TMPro.TMP_CharacterInfo::aspectRatio
float ___aspectRatio_28;
// System.Single TMPro.TMP_CharacterInfo::scale
float ___scale_29;
// UnityEngine.Color32 TMPro.TMP_CharacterInfo::color
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_30;
// UnityEngine.Color32 TMPro.TMP_CharacterInfo::underlineColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___underlineColor_31;
// UnityEngine.Color32 TMPro.TMP_CharacterInfo::strikethroughColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___strikethroughColor_32;
// UnityEngine.Color32 TMPro.TMP_CharacterInfo::highlightColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___highlightColor_33;
// TMPro.FontStyles TMPro.TMP_CharacterInfo::style
int32_t ___style_34;
// System.Boolean TMPro.TMP_CharacterInfo::isVisible
bool ___isVisible_35;
public:
inline static int32_t get_offset_of_character_0() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___character_0)); }
inline Il2CppChar get_character_0() const { return ___character_0; }
inline Il2CppChar* get_address_of_character_0() { return &___character_0; }
inline void set_character_0(Il2CppChar value)
{
___character_0 = value;
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___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_stringLength_2() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___stringLength_2)); }
inline int32_t get_stringLength_2() const { return ___stringLength_2; }
inline int32_t* get_address_of_stringLength_2() { return &___stringLength_2; }
inline void set_stringLength_2(int32_t value)
{
___stringLength_2 = value;
}
inline static int32_t get_offset_of_elementType_3() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___elementType_3)); }
inline int32_t get_elementType_3() const { return ___elementType_3; }
inline int32_t* get_address_of_elementType_3() { return &___elementType_3; }
inline void set_elementType_3(int32_t value)
{
___elementType_3 = value;
}
inline static int32_t get_offset_of_textElement_4() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___textElement_4)); }
inline TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * get_textElement_4() const { return ___textElement_4; }
inline TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 ** get_address_of_textElement_4() { return &___textElement_4; }
inline void set_textElement_4(TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * value)
{
___textElement_4 = value;
Il2CppCodeGenWriteBarrier((&___textElement_4), value);
}
inline static int32_t get_offset_of_fontAsset_5() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___fontAsset_5)); }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * get_fontAsset_5() const { return ___fontAsset_5; }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C ** get_address_of_fontAsset_5() { return &___fontAsset_5; }
inline void set_fontAsset_5(TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * value)
{
___fontAsset_5 = value;
Il2CppCodeGenWriteBarrier((&___fontAsset_5), value);
}
inline static int32_t get_offset_of_spriteAsset_6() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___spriteAsset_6)); }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * get_spriteAsset_6() const { return ___spriteAsset_6; }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 ** get_address_of_spriteAsset_6() { return &___spriteAsset_6; }
inline void set_spriteAsset_6(TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * value)
{
___spriteAsset_6 = value;
Il2CppCodeGenWriteBarrier((&___spriteAsset_6), value);
}
inline static int32_t get_offset_of_spriteIndex_7() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___spriteIndex_7)); }
inline int32_t get_spriteIndex_7() const { return ___spriteIndex_7; }
inline int32_t* get_address_of_spriteIndex_7() { return &___spriteIndex_7; }
inline void set_spriteIndex_7(int32_t value)
{
___spriteIndex_7 = value;
}
inline static int32_t get_offset_of_material_8() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___material_8)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_material_8() const { return ___material_8; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_material_8() { return &___material_8; }
inline void set_material_8(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___material_8 = value;
Il2CppCodeGenWriteBarrier((&___material_8), value);
}
inline static int32_t get_offset_of_materialReferenceIndex_9() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___materialReferenceIndex_9)); }
inline int32_t get_materialReferenceIndex_9() const { return ___materialReferenceIndex_9; }
inline int32_t* get_address_of_materialReferenceIndex_9() { return &___materialReferenceIndex_9; }
inline void set_materialReferenceIndex_9(int32_t value)
{
___materialReferenceIndex_9 = value;
}
inline static int32_t get_offset_of_isUsingAlternateTypeface_10() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___isUsingAlternateTypeface_10)); }
inline bool get_isUsingAlternateTypeface_10() const { return ___isUsingAlternateTypeface_10; }
inline bool* get_address_of_isUsingAlternateTypeface_10() { return &___isUsingAlternateTypeface_10; }
inline void set_isUsingAlternateTypeface_10(bool value)
{
___isUsingAlternateTypeface_10 = value;
}
inline static int32_t get_offset_of_pointSize_11() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___pointSize_11)); }
inline float get_pointSize_11() const { return ___pointSize_11; }
inline float* get_address_of_pointSize_11() { return &___pointSize_11; }
inline void set_pointSize_11(float value)
{
___pointSize_11 = value;
}
inline static int32_t get_offset_of_lineNumber_12() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___lineNumber_12)); }
inline int32_t get_lineNumber_12() const { return ___lineNumber_12; }
inline int32_t* get_address_of_lineNumber_12() { return &___lineNumber_12; }
inline void set_lineNumber_12(int32_t value)
{
___lineNumber_12 = value;
}
inline static int32_t get_offset_of_pageNumber_13() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___pageNumber_13)); }
inline int32_t get_pageNumber_13() const { return ___pageNumber_13; }
inline int32_t* get_address_of_pageNumber_13() { return &___pageNumber_13; }
inline void set_pageNumber_13(int32_t value)
{
___pageNumber_13 = value;
}
inline static int32_t get_offset_of_vertexIndex_14() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertexIndex_14)); }
inline int32_t get_vertexIndex_14() const { return ___vertexIndex_14; }
inline int32_t* get_address_of_vertexIndex_14() { return &___vertexIndex_14; }
inline void set_vertexIndex_14(int32_t value)
{
___vertexIndex_14 = value;
}
inline static int32_t get_offset_of_vertex_BL_15() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertex_BL_15)); }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 get_vertex_BL_15() const { return ___vertex_BL_15; }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 * get_address_of_vertex_BL_15() { return &___vertex_BL_15; }
inline void set_vertex_BL_15(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 value)
{
___vertex_BL_15 = value;
}
inline static int32_t get_offset_of_vertex_TL_16() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertex_TL_16)); }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 get_vertex_TL_16() const { return ___vertex_TL_16; }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 * get_address_of_vertex_TL_16() { return &___vertex_TL_16; }
inline void set_vertex_TL_16(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 value)
{
___vertex_TL_16 = value;
}
inline static int32_t get_offset_of_vertex_TR_17() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertex_TR_17)); }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 get_vertex_TR_17() const { return ___vertex_TR_17; }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 * get_address_of_vertex_TR_17() { return &___vertex_TR_17; }
inline void set_vertex_TR_17(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 value)
{
___vertex_TR_17 = value;
}
inline static int32_t get_offset_of_vertex_BR_18() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___vertex_BR_18)); }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 get_vertex_BR_18() const { return ___vertex_BR_18; }
inline TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 * get_address_of_vertex_BR_18() { return &___vertex_BR_18; }
inline void set_vertex_BR_18(TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 value)
{
___vertex_BR_18 = value;
}
inline static int32_t get_offset_of_topLeft_19() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___topLeft_19)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_topLeft_19() const { return ___topLeft_19; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_topLeft_19() { return &___topLeft_19; }
inline void set_topLeft_19(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___topLeft_19 = value;
}
inline static int32_t get_offset_of_bottomLeft_20() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___bottomLeft_20)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_bottomLeft_20() const { return ___bottomLeft_20; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_bottomLeft_20() { return &___bottomLeft_20; }
inline void set_bottomLeft_20(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___bottomLeft_20 = value;
}
inline static int32_t get_offset_of_topRight_21() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___topRight_21)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_topRight_21() const { return ___topRight_21; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_topRight_21() { return &___topRight_21; }
inline void set_topRight_21(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___topRight_21 = value;
}
inline static int32_t get_offset_of_bottomRight_22() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___bottomRight_22)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_bottomRight_22() const { return ___bottomRight_22; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_bottomRight_22() { return &___bottomRight_22; }
inline void set_bottomRight_22(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___bottomRight_22 = value;
}
inline static int32_t get_offset_of_origin_23() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___origin_23)); }
inline float get_origin_23() const { return ___origin_23; }
inline float* get_address_of_origin_23() { return &___origin_23; }
inline void set_origin_23(float value)
{
___origin_23 = value;
}
inline static int32_t get_offset_of_ascender_24() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___ascender_24)); }
inline float get_ascender_24() const { return ___ascender_24; }
inline float* get_address_of_ascender_24() { return &___ascender_24; }
inline void set_ascender_24(float value)
{
___ascender_24 = value;
}
inline static int32_t get_offset_of_baseLine_25() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___baseLine_25)); }
inline float get_baseLine_25() const { return ___baseLine_25; }
inline float* get_address_of_baseLine_25() { return &___baseLine_25; }
inline void set_baseLine_25(float value)
{
___baseLine_25 = value;
}
inline static int32_t get_offset_of_descender_26() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___descender_26)); }
inline float get_descender_26() const { return ___descender_26; }
inline float* get_address_of_descender_26() { return &___descender_26; }
inline void set_descender_26(float value)
{
___descender_26 = value;
}
inline static int32_t get_offset_of_xAdvance_27() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___xAdvance_27)); }
inline float get_xAdvance_27() const { return ___xAdvance_27; }
inline float* get_address_of_xAdvance_27() { return &___xAdvance_27; }
inline void set_xAdvance_27(float value)
{
___xAdvance_27 = value;
}
inline static int32_t get_offset_of_aspectRatio_28() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___aspectRatio_28)); }
inline float get_aspectRatio_28() const { return ___aspectRatio_28; }
inline float* get_address_of_aspectRatio_28() { return &___aspectRatio_28; }
inline void set_aspectRatio_28(float value)
{
___aspectRatio_28 = value;
}
inline static int32_t get_offset_of_scale_29() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___scale_29)); }
inline float get_scale_29() const { return ___scale_29; }
inline float* get_address_of_scale_29() { return &___scale_29; }
inline void set_scale_29(float value)
{
___scale_29 = value;
}
inline static int32_t get_offset_of_color_30() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___color_30)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_color_30() const { return ___color_30; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_color_30() { return &___color_30; }
inline void set_color_30(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___color_30 = value;
}
inline static int32_t get_offset_of_underlineColor_31() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___underlineColor_31)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_underlineColor_31() const { return ___underlineColor_31; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_underlineColor_31() { return &___underlineColor_31; }
inline void set_underlineColor_31(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___underlineColor_31 = value;
}
inline static int32_t get_offset_of_strikethroughColor_32() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___strikethroughColor_32)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_strikethroughColor_32() const { return ___strikethroughColor_32; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_strikethroughColor_32() { return &___strikethroughColor_32; }
inline void set_strikethroughColor_32(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___strikethroughColor_32 = value;
}
inline static int32_t get_offset_of_highlightColor_33() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___highlightColor_33)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_highlightColor_33() const { return ___highlightColor_33; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_highlightColor_33() { return &___highlightColor_33; }
inline void set_highlightColor_33(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___highlightColor_33 = value;
}
inline static int32_t get_offset_of_style_34() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___style_34)); }
inline int32_t get_style_34() const { return ___style_34; }
inline int32_t* get_address_of_style_34() { return &___style_34; }
inline void set_style_34(int32_t value)
{
___style_34 = value;
}
inline static int32_t get_offset_of_isVisible_35() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1, ___isVisible_35)); }
inline bool get_isVisible_35() const { return ___isVisible_35; }
inline bool* get_address_of_isVisible_35() { return &___isVisible_35; }
inline void set_isVisible_35(bool value)
{
___isVisible_35 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of TMPro.TMP_CharacterInfo
struct TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_marshaled_pinvoke
{
uint8_t ___character_0;
int32_t ___index_1;
int32_t ___stringLength_2;
int32_t ___elementType_3;
TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * ___textElement_4;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_5;
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_6;
int32_t ___spriteIndex_7;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_8;
int32_t ___materialReferenceIndex_9;
int32_t ___isUsingAlternateTypeface_10;
float ___pointSize_11;
int32_t ___lineNumber_12;
int32_t ___pageNumber_13;
int32_t ___vertexIndex_14;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BL_15;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TL_16;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TR_17;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BR_18;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topLeft_19;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomLeft_20;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topRight_21;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomRight_22;
float ___origin_23;
float ___ascender_24;
float ___baseLine_25;
float ___descender_26;
float ___xAdvance_27;
float ___aspectRatio_28;
float ___scale_29;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_30;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___underlineColor_31;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___strikethroughColor_32;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___highlightColor_33;
int32_t ___style_34;
int32_t ___isVisible_35;
};
// Native definition for COM marshalling of TMPro.TMP_CharacterInfo
struct TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_marshaled_com
{
uint8_t ___character_0;
int32_t ___index_1;
int32_t ___stringLength_2;
int32_t ___elementType_3;
TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * ___textElement_4;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___fontAsset_5;
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___spriteAsset_6;
int32_t ___spriteIndex_7;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_8;
int32_t ___materialReferenceIndex_9;
int32_t ___isUsingAlternateTypeface_10;
float ___pointSize_11;
int32_t ___lineNumber_12;
int32_t ___pageNumber_13;
int32_t ___vertexIndex_14;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BL_15;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TL_16;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_TR_17;
TMP_Vertex_t4F9D3FA0EB3F5F4E94EC06582B857C3C23AC2EA0 ___vertex_BR_18;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topLeft_19;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomLeft_20;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___topRight_21;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___bottomRight_22;
float ___origin_23;
float ___ascender_24;
float ___baseLine_25;
float ___descender_26;
float ___xAdvance_27;
float ___aspectRatio_28;
float ___scale_29;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_30;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___underlineColor_31;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___strikethroughColor_32;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___highlightColor_33;
int32_t ___style_34;
int32_t ___isVisible_35;
};
#endif // TMP_CHARACTERINFO_T15C146F0B08EE44A63EC777AC32151D061AFFAF1_H
#ifndef TMP_LINEINFO_TE89A82D872E55C3DDF29C4C8D862358633D0B442_H
#define TMP_LINEINFO_TE89A82D872E55C3DDF29C4C8D862358633D0B442_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.TMP_LineInfo
struct TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442
{
public:
// System.Int32 TMPro.TMP_LineInfo::controlCharacterCount
int32_t ___controlCharacterCount_0;
// System.Int32 TMPro.TMP_LineInfo::characterCount
int32_t ___characterCount_1;
// System.Int32 TMPro.TMP_LineInfo::visibleCharacterCount
int32_t ___visibleCharacterCount_2;
// System.Int32 TMPro.TMP_LineInfo::spaceCount
int32_t ___spaceCount_3;
// System.Int32 TMPro.TMP_LineInfo::wordCount
int32_t ___wordCount_4;
// System.Int32 TMPro.TMP_LineInfo::firstCharacterIndex
int32_t ___firstCharacterIndex_5;
// System.Int32 TMPro.TMP_LineInfo::firstVisibleCharacterIndex
int32_t ___firstVisibleCharacterIndex_6;
// System.Int32 TMPro.TMP_LineInfo::lastCharacterIndex
int32_t ___lastCharacterIndex_7;
// System.Int32 TMPro.TMP_LineInfo::lastVisibleCharacterIndex
int32_t ___lastVisibleCharacterIndex_8;
// System.Single TMPro.TMP_LineInfo::length
float ___length_9;
// System.Single TMPro.TMP_LineInfo::lineHeight
float ___lineHeight_10;
// System.Single TMPro.TMP_LineInfo::ascender
float ___ascender_11;
// System.Single TMPro.TMP_LineInfo::baseline
float ___baseline_12;
// System.Single TMPro.TMP_LineInfo::descender
float ___descender_13;
// System.Single TMPro.TMP_LineInfo::maxAdvance
float ___maxAdvance_14;
// System.Single TMPro.TMP_LineInfo::width
float ___width_15;
// System.Single TMPro.TMP_LineInfo::marginLeft
float ___marginLeft_16;
// System.Single TMPro.TMP_LineInfo::marginRight
float ___marginRight_17;
// TMPro.TextAlignmentOptions TMPro.TMP_LineInfo::alignment
int32_t ___alignment_18;
// TMPro.Extents TMPro.TMP_LineInfo::lineExtents
Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 ___lineExtents_19;
public:
inline static int32_t get_offset_of_controlCharacterCount_0() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___controlCharacterCount_0)); }
inline int32_t get_controlCharacterCount_0() const { return ___controlCharacterCount_0; }
inline int32_t* get_address_of_controlCharacterCount_0() { return &___controlCharacterCount_0; }
inline void set_controlCharacterCount_0(int32_t value)
{
___controlCharacterCount_0 = value;
}
inline static int32_t get_offset_of_characterCount_1() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___characterCount_1)); }
inline int32_t get_characterCount_1() const { return ___characterCount_1; }
inline int32_t* get_address_of_characterCount_1() { return &___characterCount_1; }
inline void set_characterCount_1(int32_t value)
{
___characterCount_1 = value;
}
inline static int32_t get_offset_of_visibleCharacterCount_2() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___visibleCharacterCount_2)); }
inline int32_t get_visibleCharacterCount_2() const { return ___visibleCharacterCount_2; }
inline int32_t* get_address_of_visibleCharacterCount_2() { return &___visibleCharacterCount_2; }
inline void set_visibleCharacterCount_2(int32_t value)
{
___visibleCharacterCount_2 = value;
}
inline static int32_t get_offset_of_spaceCount_3() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___spaceCount_3)); }
inline int32_t get_spaceCount_3() const { return ___spaceCount_3; }
inline int32_t* get_address_of_spaceCount_3() { return &___spaceCount_3; }
inline void set_spaceCount_3(int32_t value)
{
___spaceCount_3 = value;
}
inline static int32_t get_offset_of_wordCount_4() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___wordCount_4)); }
inline int32_t get_wordCount_4() const { return ___wordCount_4; }
inline int32_t* get_address_of_wordCount_4() { return &___wordCount_4; }
inline void set_wordCount_4(int32_t value)
{
___wordCount_4 = value;
}
inline static int32_t get_offset_of_firstCharacterIndex_5() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___firstCharacterIndex_5)); }
inline int32_t get_firstCharacterIndex_5() const { return ___firstCharacterIndex_5; }
inline int32_t* get_address_of_firstCharacterIndex_5() { return &___firstCharacterIndex_5; }
inline void set_firstCharacterIndex_5(int32_t value)
{
___firstCharacterIndex_5 = value;
}
inline static int32_t get_offset_of_firstVisibleCharacterIndex_6() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___firstVisibleCharacterIndex_6)); }
inline int32_t get_firstVisibleCharacterIndex_6() const { return ___firstVisibleCharacterIndex_6; }
inline int32_t* get_address_of_firstVisibleCharacterIndex_6() { return &___firstVisibleCharacterIndex_6; }
inline void set_firstVisibleCharacterIndex_6(int32_t value)
{
___firstVisibleCharacterIndex_6 = value;
}
inline static int32_t get_offset_of_lastCharacterIndex_7() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___lastCharacterIndex_7)); }
inline int32_t get_lastCharacterIndex_7() const { return ___lastCharacterIndex_7; }
inline int32_t* get_address_of_lastCharacterIndex_7() { return &___lastCharacterIndex_7; }
inline void set_lastCharacterIndex_7(int32_t value)
{
___lastCharacterIndex_7 = value;
}
inline static int32_t get_offset_of_lastVisibleCharacterIndex_8() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___lastVisibleCharacterIndex_8)); }
inline int32_t get_lastVisibleCharacterIndex_8() const { return ___lastVisibleCharacterIndex_8; }
inline int32_t* get_address_of_lastVisibleCharacterIndex_8() { return &___lastVisibleCharacterIndex_8; }
inline void set_lastVisibleCharacterIndex_8(int32_t value)
{
___lastVisibleCharacterIndex_8 = value;
}
inline static int32_t get_offset_of_length_9() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___length_9)); }
inline float get_length_9() const { return ___length_9; }
inline float* get_address_of_length_9() { return &___length_9; }
inline void set_length_9(float value)
{
___length_9 = value;
}
inline static int32_t get_offset_of_lineHeight_10() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___lineHeight_10)); }
inline float get_lineHeight_10() const { return ___lineHeight_10; }
inline float* get_address_of_lineHeight_10() { return &___lineHeight_10; }
inline void set_lineHeight_10(float value)
{
___lineHeight_10 = value;
}
inline static int32_t get_offset_of_ascender_11() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___ascender_11)); }
inline float get_ascender_11() const { return ___ascender_11; }
inline float* get_address_of_ascender_11() { return &___ascender_11; }
inline void set_ascender_11(float value)
{
___ascender_11 = value;
}
inline static int32_t get_offset_of_baseline_12() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___baseline_12)); }
inline float get_baseline_12() const { return ___baseline_12; }
inline float* get_address_of_baseline_12() { return &___baseline_12; }
inline void set_baseline_12(float value)
{
___baseline_12 = value;
}
inline static int32_t get_offset_of_descender_13() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___descender_13)); }
inline float get_descender_13() const { return ___descender_13; }
inline float* get_address_of_descender_13() { return &___descender_13; }
inline void set_descender_13(float value)
{
___descender_13 = value;
}
inline static int32_t get_offset_of_maxAdvance_14() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___maxAdvance_14)); }
inline float get_maxAdvance_14() const { return ___maxAdvance_14; }
inline float* get_address_of_maxAdvance_14() { return &___maxAdvance_14; }
inline void set_maxAdvance_14(float value)
{
___maxAdvance_14 = value;
}
inline static int32_t get_offset_of_width_15() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___width_15)); }
inline float get_width_15() const { return ___width_15; }
inline float* get_address_of_width_15() { return &___width_15; }
inline void set_width_15(float value)
{
___width_15 = value;
}
inline static int32_t get_offset_of_marginLeft_16() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___marginLeft_16)); }
inline float get_marginLeft_16() const { return ___marginLeft_16; }
inline float* get_address_of_marginLeft_16() { return &___marginLeft_16; }
inline void set_marginLeft_16(float value)
{
___marginLeft_16 = value;
}
inline static int32_t get_offset_of_marginRight_17() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___marginRight_17)); }
inline float get_marginRight_17() const { return ___marginRight_17; }
inline float* get_address_of_marginRight_17() { return &___marginRight_17; }
inline void set_marginRight_17(float value)
{
___marginRight_17 = value;
}
inline static int32_t get_offset_of_alignment_18() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___alignment_18)); }
inline int32_t get_alignment_18() const { return ___alignment_18; }
inline int32_t* get_address_of_alignment_18() { return &___alignment_18; }
inline void set_alignment_18(int32_t value)
{
___alignment_18 = value;
}
inline static int32_t get_offset_of_lineExtents_19() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442, ___lineExtents_19)); }
inline Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 get_lineExtents_19() const { return ___lineExtents_19; }
inline Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 * get_address_of_lineExtents_19() { return &___lineExtents_19; }
inline void set_lineExtents_19(Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 value)
{
___lineExtents_19 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TMP_LINEINFO_TE89A82D872E55C3DDF29C4C8D862358633D0B442_H
#ifndef TMP_MESHINFO_T0140B4A33090360DC5CFB47CD8419369BBE3AD2E_H
#define TMP_MESHINFO_T0140B4A33090360DC5CFB47CD8419369BBE3AD2E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// TMPro.TMP_MeshInfo
struct TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E
{
public:
// UnityEngine.Mesh TMPro.TMP_MeshInfo::mesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh_4;
// System.Int32 TMPro.TMP_MeshInfo::vertexCount
int32_t ___vertexCount_5;
// UnityEngine.Vector3[] TMPro.TMP_MeshInfo::vertices
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___vertices_6;
// UnityEngine.Vector3[] TMPro.TMP_MeshInfo::normals
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___normals_7;
// UnityEngine.Vector4[] TMPro.TMP_MeshInfo::tangents
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___tangents_8;
// UnityEngine.Vector2[] TMPro.TMP_MeshInfo::uvs0
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___uvs0_9;
// UnityEngine.Vector2[] TMPro.TMP_MeshInfo::uvs2
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___uvs2_10;
// UnityEngine.Color32[] TMPro.TMP_MeshInfo::colors32
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* ___colors32_11;
// System.Int32[] TMPro.TMP_MeshInfo::triangles
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___triangles_12;
public:
inline static int32_t get_offset_of_mesh_4() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___mesh_4)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_mesh_4() const { return ___mesh_4; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_mesh_4() { return &___mesh_4; }
inline void set_mesh_4(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___mesh_4 = value;
Il2CppCodeGenWriteBarrier((&___mesh_4), value);
}
inline static int32_t get_offset_of_vertexCount_5() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___vertexCount_5)); }
inline int32_t get_vertexCount_5() const { return ___vertexCount_5; }
inline int32_t* get_address_of_vertexCount_5() { return &___vertexCount_5; }
inline void set_vertexCount_5(int32_t value)
{
___vertexCount_5 = value;
}
inline static int32_t get_offset_of_vertices_6() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___vertices_6)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_vertices_6() const { return ___vertices_6; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_vertices_6() { return &___vertices_6; }
inline void set_vertices_6(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___vertices_6 = value;
Il2CppCodeGenWriteBarrier((&___vertices_6), value);
}
inline static int32_t get_offset_of_normals_7() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___normals_7)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_normals_7() const { return ___normals_7; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_normals_7() { return &___normals_7; }
inline void set_normals_7(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___normals_7 = value;
Il2CppCodeGenWriteBarrier((&___normals_7), value);
}
inline static int32_t get_offset_of_tangents_8() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___tangents_8)); }
inline Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* get_tangents_8() const { return ___tangents_8; }
inline Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66** get_address_of_tangents_8() { return &___tangents_8; }
inline void set_tangents_8(Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* value)
{
___tangents_8 = value;
Il2CppCodeGenWriteBarrier((&___tangents_8), value);
}
inline static int32_t get_offset_of_uvs0_9() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___uvs0_9)); }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get_uvs0_9() const { return ___uvs0_9; }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of_uvs0_9() { return &___uvs0_9; }
inline void set_uvs0_9(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value)
{
___uvs0_9 = value;
Il2CppCodeGenWriteBarrier((&___uvs0_9), value);
}
inline static int32_t get_offset_of_uvs2_10() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___uvs2_10)); }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get_uvs2_10() const { return ___uvs2_10; }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of_uvs2_10() { return &___uvs2_10; }
inline void set_uvs2_10(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value)
{
___uvs2_10 = value;
Il2CppCodeGenWriteBarrier((&___uvs2_10), value);
}
inline static int32_t get_offset_of_colors32_11() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___colors32_11)); }
inline Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* get_colors32_11() const { return ___colors32_11; }
inline Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983** get_address_of_colors32_11() { return &___colors32_11; }
inline void set_colors32_11(Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* value)
{
___colors32_11 = value;
Il2CppCodeGenWriteBarrier((&___colors32_11), value);
}
inline static int32_t get_offset_of_triangles_12() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E, ___triangles_12)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_triangles_12() const { return ___triangles_12; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_triangles_12() { return &___triangles_12; }
inline void set_triangles_12(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___triangles_12 = value;
Il2CppCodeGenWriteBarrier((&___triangles_12), value);
}
};
struct TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields
{
public:
// UnityEngine.Color32 TMPro.TMP_MeshInfo::s_DefaultColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___s_DefaultColor_0;
// UnityEngine.Vector3 TMPro.TMP_MeshInfo::s_DefaultNormal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___s_DefaultNormal_1;
// UnityEngine.Vector4 TMPro.TMP_MeshInfo::s_DefaultTangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___s_DefaultTangent_2;
// UnityEngine.Bounds TMPro.TMP_MeshInfo::s_DefaultBounds
Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ___s_DefaultBounds_3;
public:
inline static int32_t get_offset_of_s_DefaultColor_0() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields, ___s_DefaultColor_0)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_s_DefaultColor_0() const { return ___s_DefaultColor_0; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_s_DefaultColor_0() { return &___s_DefaultColor_0; }
inline void set_s_DefaultColor_0(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___s_DefaultColor_0 = value;
}
inline static int32_t get_offset_of_s_DefaultNormal_1() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields, ___s_DefaultNormal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_s_DefaultNormal_1() const { return ___s_DefaultNormal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_s_DefaultNormal_1() { return &___s_DefaultNormal_1; }
inline void set_s_DefaultNormal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___s_DefaultNormal_1 = value;
}
inline static int32_t get_offset_of_s_DefaultTangent_2() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields, ___s_DefaultTangent_2)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_s_DefaultTangent_2() const { return ___s_DefaultTangent_2; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_s_DefaultTangent_2() { return &___s_DefaultTangent_2; }
inline void set_s_DefaultTangent_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___s_DefaultTangent_2 = value;
}
inline static int32_t get_offset_of_s_DefaultBounds_3() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_StaticFields, ___s_DefaultBounds_3)); }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 get_s_DefaultBounds_3() const { return ___s_DefaultBounds_3; }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 * get_address_of_s_DefaultBounds_3() { return &___s_DefaultBounds_3; }
inline void set_s_DefaultBounds_3(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 value)
{
___s_DefaultBounds_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of TMPro.TMP_MeshInfo
struct TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_marshaled_pinvoke
{
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh_4;
int32_t ___vertexCount_5;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___vertices_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___normals_7;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * ___tangents_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___uvs0_9;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___uvs2_10;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * ___colors32_11;
int32_t* ___triangles_12;
};
// Native definition for COM marshalling of TMPro.TMP_MeshInfo
struct TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_marshaled_com
{
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh_4;
int32_t ___vertexCount_5;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___vertices_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___normals_7;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * ___tangents_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___uvs0_9;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___uvs2_10;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * ___colors32_11;
int32_t* ___triangles_12;
};
#endif // TMP_MESHINFO_T0140B4A33090360DC5CFB47CD8419369BBE3AD2E_H
#ifndef PLAYABLEBINDING_T4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_H
#define PLAYABLEBINDING_T4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___m_StreamName_0), 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((&___m_SourceObject_1), 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((&___m_SourceBindingType_2), 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((&___m_CreateOutputMethod_3), 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((&___None_4), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // PLAYABLEBINDING_T4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_H
#ifndef SCRIPTABLEOBJECT_TAB015486CEAB714DA0D5C1BA389B84FB90427734_H
#define SCRIPTABLEOBJECT_TAB015486CEAB714DA0D5C1BA389B84FB90427734_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_pinvoke : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_com : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
};
#endif // SCRIPTABLEOBJECT_TAB015486CEAB714DA0D5C1BA389B84FB90427734_H
#ifndef GLYPHPAIRADJUSTMENTRECORD_T4D86058777EDA2219FB8211B4C63EDD2B090239C_H
#define GLYPHPAIRADJUSTMENTRECORD_T4D86058777EDA2219FB8211B4C63EDD2B090239C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord
struct GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C
{
public:
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::m_FirstAdjustmentRecord
GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 ___m_FirstAdjustmentRecord_0;
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::m_SecondAdjustmentRecord
GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 ___m_SecondAdjustmentRecord_1;
public:
inline static int32_t get_offset_of_m_FirstAdjustmentRecord_0() { return static_cast<int32_t>(offsetof(GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C, ___m_FirstAdjustmentRecord_0)); }
inline GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 get_m_FirstAdjustmentRecord_0() const { return ___m_FirstAdjustmentRecord_0; }
inline GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 * get_address_of_m_FirstAdjustmentRecord_0() { return &___m_FirstAdjustmentRecord_0; }
inline void set_m_FirstAdjustmentRecord_0(GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 value)
{
___m_FirstAdjustmentRecord_0 = value;
}
inline static int32_t get_offset_of_m_SecondAdjustmentRecord_1() { return static_cast<int32_t>(offsetof(GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C, ___m_SecondAdjustmentRecord_1)); }
inline GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 get_m_SecondAdjustmentRecord_1() const { return ___m_SecondAdjustmentRecord_1; }
inline GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 * get_address_of_m_SecondAdjustmentRecord_1() { return &___m_SecondAdjustmentRecord_1; }
inline void set_m_SecondAdjustmentRecord_1(GlyphAdjustmentRecord_t771BE41EF0B790AF1E65928F401E3AB0EE548D00 value)
{
___m_SecondAdjustmentRecord_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GLYPHPAIRADJUSTMENTRECORD_T4D86058777EDA2219FB8211B4C63EDD2B090239C_H
#ifndef TOUCH_T806752C775BA713A91B6588A07CA98417CABC003_H
#define TOUCH_T806752C775BA713A91B6588A07CA98417CABC003_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TOUCH_T806752C775BA713A91B6588A07CA98417CABC003_H
#ifndef NAVIGATION_T761250C05C09773B75F5E0D52DDCBBFE60288A07_H
#define NAVIGATION_T761250C05C09773B75F5E0D52DDCBBFE60288A07_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___m_SelectOnUp_1), 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((&___m_SelectOnDown_2), 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((&___m_SelectOnLeft_3), 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((&___m_SelectOnRight_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // NAVIGATION_T761250C05C09773B75F5E0D52DDCBBFE60288A07_H
#ifndef INTERACTIONSOURCE_T21335CC7BE7B9164D14283EEA3EC775AB2720DF6_H
#define INTERACTIONSOURCE_T21335CC7BE7B9164D14283EEA3EC775AB2720DF6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERACTIONSOURCE_T21335CC7BE7B9164D14283EEA3EC775AB2720DF6_H
#ifndef INTERACTIONSOURCEPOSE_T249CD43F634426269571F0E4689428ACC8C54F73_H
#define INTERACTIONSOURCEPOSE_T249CD43F634426269571F0E4689428ACC8C54F73_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERACTIONSOURCEPOSE_T249CD43F634426269571F0E4689428ACC8C54F73_H
#ifndef JOINTPOSE_TFD55E748576AC22B47EB160A821FCEAD75C509CE_H
#define JOINTPOSE_TFD55E748576AC22B47EB160A821FCEAD75C509CE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.Perception.People.JointPose
struct JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE
{
public:
// System.Numerics.Quaternion Windows.Perception.People.JointPose::Orientation
Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A ___Orientation_0;
// System.Numerics.Vector3 Windows.Perception.People.JointPose::Position
Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 ___Position_1;
// System.Single Windows.Perception.People.JointPose::Radius
float ___Radius_2;
// Windows.Perception.People.JointPoseAccuracy Windows.Perception.People.JointPose::Accuracy
int32_t ___Accuracy_3;
public:
inline static int32_t get_offset_of_Orientation_0() { return static_cast<int32_t>(offsetof(JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE, ___Orientation_0)); }
inline Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A get_Orientation_0() const { return ___Orientation_0; }
inline Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A * get_address_of_Orientation_0() { return &___Orientation_0; }
inline void set_Orientation_0(Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A value)
{
___Orientation_0 = value;
}
inline static int32_t get_offset_of_Position_1() { return static_cast<int32_t>(offsetof(JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE, ___Position_1)); }
inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 get_Position_1() const { return ___Position_1; }
inline Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 * get_address_of_Position_1() { return &___Position_1; }
inline void set_Position_1(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 value)
{
___Position_1 = value;
}
inline static int32_t get_offset_of_Radius_2() { return static_cast<int32_t>(offsetof(JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE, ___Radius_2)); }
inline float get_Radius_2() const { return ___Radius_2; }
inline float* get_address_of_Radius_2() { return &___Radius_2; }
inline void set_Radius_2(float value)
{
___Radius_2 = value;
}
inline static int32_t get_offset_of_Accuracy_3() { return static_cast<int32_t>(offsetof(JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE, ___Accuracy_3)); }
inline int32_t get_Accuracy_3() const { return ___Accuracy_3; }
inline int32_t* get_address_of_Accuracy_3() { return &___Accuracy_3; }
inline void set_Accuracy_3(int32_t value)
{
___Accuracy_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // JOINTPOSE_TFD55E748576AC22B47EB160A821FCEAD75C509CE_H
#ifndef TYPENAME_T17AF60463A5503D900B87745B0BF9C96F0F82EEC_H
#define TYPENAME_T17AF60463A5503D900B87745B0BF9C96F0F82EEC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Windows.UI.Xaml.Interop.TypeName
struct TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC
{
public:
// System.String Windows.UI.Xaml.Interop.TypeName::Name
String_t* ___Name_0;
// Windows.UI.Xaml.Interop.TypeKind Windows.UI.Xaml.Interop.TypeName::Kind
int32_t ___Kind_1;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC, ___Name_0)); }
inline String_t* get_Name_0() const { return ___Name_0; }
inline String_t** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(String_t* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((&___Name_0), value);
}
inline static int32_t get_offset_of_Kind_1() { return static_cast<int32_t>(offsetof(TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC, ___Kind_1)); }
inline int32_t get_Kind_1() const { return ___Kind_1; }
inline int32_t* get_address_of_Kind_1() { return &___Kind_1; }
inline void set_Kind_1(int32_t value)
{
___Kind_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Windows.UI.Xaml.Interop.TypeName
struct TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_pinvoke
{
char* ___Name_0;
int32_t ___Kind_1;
};
// Native definition for COM marshalling of Windows.UI.Xaml.Interop.TypeName
struct TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_com
{
Il2CppChar* ___Name_0;
int32_t ___Kind_1;
};
// Native definition for Windows Runtime marshalling of Windows.UI.Xaml.Interop.TypeName
struct TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_marshaled_windows_runtime
{
Il2CppHString ___Name_0;
int32_t ___Kind_1;
};
#endif // TYPENAME_T17AF60463A5503D900B87745B0BF9C96F0F82EEC_H
#ifndef INPUTACTIONRULEDIGITAL_TB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39_H
#define INPUTACTIONRULEDIGITAL_TB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital
struct InputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital::baseAction
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___baseAction_0;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital::ruleAction
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___ruleAction_1;
// System.Boolean Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital::criteria
bool ___criteria_2;
public:
inline static int32_t get_offset_of_baseAction_0() { return static_cast<int32_t>(offsetof(InputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39, ___baseAction_0)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_baseAction_0() const { return ___baseAction_0; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_baseAction_0() { return &___baseAction_0; }
inline void set_baseAction_0(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___baseAction_0 = value;
}
inline static int32_t get_offset_of_ruleAction_1() { return static_cast<int32_t>(offsetof(InputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39, ___ruleAction_1)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_ruleAction_1() const { return ___ruleAction_1; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_ruleAction_1() { return &___ruleAction_1; }
inline void set_ruleAction_1(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___ruleAction_1 = value;
}
inline static int32_t get_offset_of_criteria_2() { return static_cast<int32_t>(offsetof(InputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39, ___criteria_2)); }
inline bool get_criteria_2() const { return ___criteria_2; }
inline bool* get_address_of_criteria_2() { return &___criteria_2; }
inline void set_criteria_2(bool value)
{
___criteria_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital
struct InputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39_marshaled_pinvoke
{
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___baseAction_0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___ruleAction_1;
int32_t ___criteria_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital
struct InputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39_marshaled_com
{
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___baseAction_0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___ruleAction_1;
int32_t ___criteria_2;
};
#endif // INPUTACTIONRULEDIGITAL_TB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39_H
#ifndef INPUTACTIONRULEDUALAXIS_TABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47_H
#define INPUTACTIONRULEDUALAXIS_TABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis
struct InputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis::baseAction
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___baseAction_0;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis::ruleAction
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___ruleAction_1;
// UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis::criteria
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___criteria_2;
public:
inline static int32_t get_offset_of_baseAction_0() { return static_cast<int32_t>(offsetof(InputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47, ___baseAction_0)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_baseAction_0() const { return ___baseAction_0; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_baseAction_0() { return &___baseAction_0; }
inline void set_baseAction_0(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___baseAction_0 = value;
}
inline static int32_t get_offset_of_ruleAction_1() { return static_cast<int32_t>(offsetof(InputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47, ___ruleAction_1)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_ruleAction_1() const { return ___ruleAction_1; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_ruleAction_1() { return &___ruleAction_1; }
inline void set_ruleAction_1(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___ruleAction_1 = value;
}
inline static int32_t get_offset_of_criteria_2() { return static_cast<int32_t>(offsetof(InputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47, ___criteria_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_criteria_2() const { return ___criteria_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_criteria_2() { return &___criteria_2; }
inline void set_criteria_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___criteria_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis
struct InputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47_marshaled_pinvoke
{
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___baseAction_0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___ruleAction_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___criteria_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis
struct InputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47_marshaled_com
{
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___baseAction_0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___ruleAction_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___criteria_2;
};
#endif // INPUTACTIONRULEDUALAXIS_TABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47_H
#ifndef INPUTACTIONRULEPOSEAXIS_TF409AB8D153EC1DE00F17832B522FFD376FCF2AB_H
#define INPUTACTIONRULEPOSEAXIS_TF409AB8D153EC1DE00F17832B522FFD376FCF2AB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis
struct InputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis::baseAction
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___baseAction_0;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis::ruleAction
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___ruleAction_1;
// Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis::criteria
MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 ___criteria_2;
public:
inline static int32_t get_offset_of_baseAction_0() { return static_cast<int32_t>(offsetof(InputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB, ___baseAction_0)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_baseAction_0() const { return ___baseAction_0; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_baseAction_0() { return &___baseAction_0; }
inline void set_baseAction_0(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___baseAction_0 = value;
}
inline static int32_t get_offset_of_ruleAction_1() { return static_cast<int32_t>(offsetof(InputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB, ___ruleAction_1)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_ruleAction_1() const { return ___ruleAction_1; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_ruleAction_1() { return &___ruleAction_1; }
inline void set_ruleAction_1(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___ruleAction_1 = value;
}
inline static int32_t get_offset_of_criteria_2() { return static_cast<int32_t>(offsetof(InputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB, ___criteria_2)); }
inline MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 get_criteria_2() const { return ___criteria_2; }
inline MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 * get_address_of_criteria_2() { return &___criteria_2; }
inline void set_criteria_2(MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 value)
{
___criteria_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis
struct InputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB_marshaled_pinvoke
{
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___baseAction_0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___ruleAction_1;
MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 ___criteria_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis
struct InputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB_marshaled_com
{
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___baseAction_0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___ruleAction_1;
MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 ___criteria_2;
};
#endif // INPUTACTIONRULEPOSEAXIS_TF409AB8D153EC1DE00F17832B522FFD376FCF2AB_H
#ifndef INPUTACTIONRULEQUATERNIONAXIS_T09B22A90E70AB3888D4CA2661FCC5139E625B6C6_H
#define INPUTACTIONRULEQUATERNIONAXIS_T09B22A90E70AB3888D4CA2661FCC5139E625B6C6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis
struct InputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis::baseAction
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___baseAction_0;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis::ruleAction
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___ruleAction_1;
// UnityEngine.Quaternion Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis::criteria
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___criteria_2;
public:
inline static int32_t get_offset_of_baseAction_0() { return static_cast<int32_t>(offsetof(InputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6, ___baseAction_0)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_baseAction_0() const { return ___baseAction_0; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_baseAction_0() { return &___baseAction_0; }
inline void set_baseAction_0(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___baseAction_0 = value;
}
inline static int32_t get_offset_of_ruleAction_1() { return static_cast<int32_t>(offsetof(InputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6, ___ruleAction_1)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_ruleAction_1() const { return ___ruleAction_1; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_ruleAction_1() { return &___ruleAction_1; }
inline void set_ruleAction_1(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___ruleAction_1 = value;
}
inline static int32_t get_offset_of_criteria_2() { return static_cast<int32_t>(offsetof(InputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6, ___criteria_2)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_criteria_2() const { return ___criteria_2; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_criteria_2() { return &___criteria_2; }
inline void set_criteria_2(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___criteria_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis
struct InputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6_marshaled_pinvoke
{
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___baseAction_0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___ruleAction_1;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___criteria_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis
struct InputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6_marshaled_com
{
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___baseAction_0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___ruleAction_1;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___criteria_2;
};
#endif // INPUTACTIONRULEQUATERNIONAXIS_T09B22A90E70AB3888D4CA2661FCC5139E625B6C6_H
#ifndef INPUTACTIONRULESINGLEAXIS_T3BF3086675EF4986FFD82FF79D6871F349D48661_H
#define INPUTACTIONRULESINGLEAXIS_T3BF3086675EF4986FFD82FF79D6871F349D48661_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis
struct InputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis::baseAction
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___baseAction_0;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis::ruleAction
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___ruleAction_1;
// System.Single Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis::criteria
float ___criteria_2;
public:
inline static int32_t get_offset_of_baseAction_0() { return static_cast<int32_t>(offsetof(InputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661, ___baseAction_0)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_baseAction_0() const { return ___baseAction_0; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_baseAction_0() { return &___baseAction_0; }
inline void set_baseAction_0(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___baseAction_0 = value;
}
inline static int32_t get_offset_of_ruleAction_1() { return static_cast<int32_t>(offsetof(InputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661, ___ruleAction_1)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_ruleAction_1() const { return ___ruleAction_1; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_ruleAction_1() { return &___ruleAction_1; }
inline void set_ruleAction_1(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___ruleAction_1 = value;
}
inline static int32_t get_offset_of_criteria_2() { return static_cast<int32_t>(offsetof(InputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661, ___criteria_2)); }
inline float get_criteria_2() const { return ___criteria_2; }
inline float* get_address_of_criteria_2() { return &___criteria_2; }
inline void set_criteria_2(float value)
{
___criteria_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis
struct InputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661_marshaled_pinvoke
{
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___baseAction_0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___ruleAction_1;
float ___criteria_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis
struct InputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661_marshaled_com
{
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___baseAction_0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___ruleAction_1;
float ___criteria_2;
};
#endif // INPUTACTIONRULESINGLEAXIS_T3BF3086675EF4986FFD82FF79D6871F349D48661_H
#ifndef INPUTACTIONRULEVECTORAXIS_T60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67_H
#define INPUTACTIONRULEVECTORAXIS_T60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis
struct InputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67
{
public:
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis::baseAction
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___baseAction_0;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis::ruleAction
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___ruleAction_1;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis::criteria
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___criteria_2;
public:
inline static int32_t get_offset_of_baseAction_0() { return static_cast<int32_t>(offsetof(InputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67, ___baseAction_0)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_baseAction_0() const { return ___baseAction_0; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_baseAction_0() { return &___baseAction_0; }
inline void set_baseAction_0(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___baseAction_0 = value;
}
inline static int32_t get_offset_of_ruleAction_1() { return static_cast<int32_t>(offsetof(InputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67, ___ruleAction_1)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_ruleAction_1() const { return ___ruleAction_1; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_ruleAction_1() { return &___ruleAction_1; }
inline void set_ruleAction_1(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___ruleAction_1 = value;
}
inline static int32_t get_offset_of_criteria_2() { return static_cast<int32_t>(offsetof(InputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67, ___criteria_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_criteria_2() const { return ___criteria_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_criteria_2() { return &___criteria_2; }
inline void set_criteria_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___criteria_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis
struct InputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67_marshaled_pinvoke
{
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___baseAction_0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___ruleAction_1;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___criteria_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis
struct InputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67_marshaled_com
{
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___baseAction_0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___ruleAction_1;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___criteria_2;
};
#endif // INPUTACTIONRULEVECTORAXIS_T60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67_H
#ifndef MIXEDREALITYGESTUREMAPPING_TD31D2F4503989BE9493C8C8F835901A4C0EC771D_H
#define MIXEDREALITYGESTUREMAPPING_TD31D2F4503989BE9493C8C8F835901A4C0EC771D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping
struct MixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping::description
String_t* ___description_0;
// Microsoft.MixedReality.Toolkit.Input.GestureInputType Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping::gestureType
int32_t ___gestureType_1;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping::action
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___action_2;
public:
inline static int32_t get_offset_of_description_0() { return static_cast<int32_t>(offsetof(MixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D, ___description_0)); }
inline String_t* get_description_0() const { return ___description_0; }
inline String_t** get_address_of_description_0() { return &___description_0; }
inline void set_description_0(String_t* value)
{
___description_0 = value;
Il2CppCodeGenWriteBarrier((&___description_0), value);
}
inline static int32_t get_offset_of_gestureType_1() { return static_cast<int32_t>(offsetof(MixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D, ___gestureType_1)); }
inline int32_t get_gestureType_1() const { return ___gestureType_1; }
inline int32_t* get_address_of_gestureType_1() { return &___gestureType_1; }
inline void set_gestureType_1(int32_t value)
{
___gestureType_1 = value;
}
inline static int32_t get_offset_of_action_2() { return static_cast<int32_t>(offsetof(MixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D, ___action_2)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_action_2() const { return ___action_2; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_action_2() { return &___action_2; }
inline void set_action_2(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___action_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping
struct MixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D_marshaled_pinvoke
{
char* ___description_0;
int32_t ___gestureType_1;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___action_2;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping
struct MixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D_marshaled_com
{
Il2CppChar* ___description_0;
int32_t ___gestureType_1;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___action_2;
};
#endif // MIXEDREALITYGESTUREMAPPING_TD31D2F4503989BE9493C8C8F835901A4C0EC771D_H
#ifndef SPEECHCOMMANDS_T118A61B5F373C8C01323BFC936BB7CC9F05C7E11_H
#define SPEECHCOMMANDS_T118A61B5F373C8C01323BFC936BB7CC9F05C7E11_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Input.SpeechCommands
struct SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11
{
public:
// System.String Microsoft.MixedReality.Toolkit.Input.SpeechCommands::localizationKey
String_t* ___localizationKey_0;
// System.String Microsoft.MixedReality.Toolkit.Input.SpeechCommands::localizedKeyword
String_t* ___localizedKeyword_1;
// System.String Microsoft.MixedReality.Toolkit.Input.SpeechCommands::keyword
String_t* ___keyword_2;
// UnityEngine.KeyCode Microsoft.MixedReality.Toolkit.Input.SpeechCommands::keyCode
int32_t ___keyCode_3;
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction Microsoft.MixedReality.Toolkit.Input.SpeechCommands::action
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___action_4;
public:
inline static int32_t get_offset_of_localizationKey_0() { return static_cast<int32_t>(offsetof(SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11, ___localizationKey_0)); }
inline String_t* get_localizationKey_0() const { return ___localizationKey_0; }
inline String_t** get_address_of_localizationKey_0() { return &___localizationKey_0; }
inline void set_localizationKey_0(String_t* value)
{
___localizationKey_0 = value;
Il2CppCodeGenWriteBarrier((&___localizationKey_0), value);
}
inline static int32_t get_offset_of_localizedKeyword_1() { return static_cast<int32_t>(offsetof(SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11, ___localizedKeyword_1)); }
inline String_t* get_localizedKeyword_1() const { return ___localizedKeyword_1; }
inline String_t** get_address_of_localizedKeyword_1() { return &___localizedKeyword_1; }
inline void set_localizedKeyword_1(String_t* value)
{
___localizedKeyword_1 = value;
Il2CppCodeGenWriteBarrier((&___localizedKeyword_1), value);
}
inline static int32_t get_offset_of_keyword_2() { return static_cast<int32_t>(offsetof(SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11, ___keyword_2)); }
inline String_t* get_keyword_2() const { return ___keyword_2; }
inline String_t** get_address_of_keyword_2() { return &___keyword_2; }
inline void set_keyword_2(String_t* value)
{
___keyword_2 = value;
Il2CppCodeGenWriteBarrier((&___keyword_2), value);
}
inline static int32_t get_offset_of_keyCode_3() { return static_cast<int32_t>(offsetof(SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11, ___keyCode_3)); }
inline int32_t get_keyCode_3() const { return ___keyCode_3; }
inline int32_t* get_address_of_keyCode_3() { return &___keyCode_3; }
inline void set_keyCode_3(int32_t value)
{
___keyCode_3 = value;
}
inline static int32_t get_offset_of_action_4() { return static_cast<int32_t>(offsetof(SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11, ___action_4)); }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 get_action_4() const { return ___action_4; }
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * get_address_of_action_4() { return &___action_4; }
inline void set_action_4(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
___action_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Input.SpeechCommands
struct SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11_marshaled_pinvoke
{
char* ___localizationKey_0;
char* ___localizedKeyword_1;
char* ___keyword_2;
int32_t ___keyCode_3;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_pinvoke ___action_4;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Input.SpeechCommands
struct SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11_marshaled_com
{
Il2CppChar* ___localizationKey_0;
Il2CppChar* ___localizedKeyword_1;
Il2CppChar* ___keyword_2;
int32_t ___keyCode_3;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_marshaled_com ___action_4;
};
#endif // SPEECHCOMMANDS_T118A61B5F373C8C01323BFC936BB7CC9F05C7E11_H
#ifndef INSPECTORPROPERTYSETTING_TF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_H
#define INSPECTORPROPERTYSETTING_TF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting
struct InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorField_FieldTypes Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Type
int32_t ___Type_0;
// System.String Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Label
String_t* ___Label_1;
// System.String Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Name
String_t* ___Name_2;
// System.String Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Tooltip
String_t* ___Tooltip_3;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::IntValue
int32_t ___IntValue_4;
// System.String Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::StringValue
String_t* ___StringValue_5;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::FloatValue
float ___FloatValue_6;
// System.Boolean Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::BoolValue
bool ___BoolValue_7;
// UnityEngine.GameObject Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::GameObjectValue
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___GameObjectValue_8;
// UnityEngine.ScriptableObject Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::ScriptableObjectValue
ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 * ___ScriptableObjectValue_9;
// UnityEngine.Object Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::ObjectValue
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___ObjectValue_10;
// UnityEngine.Material Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::MaterialValue
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___MaterialValue_11;
// UnityEngine.Texture Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::TextureValue
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___TextureValue_12;
// UnityEngine.Color Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::ColorValue
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___ColorValue_13;
// UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Vector2Value
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Vector2Value_14;
// UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Vector3Value
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___Vector3Value_15;
// UnityEngine.Vector4 Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Vector4Value
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___Vector4Value_16;
// UnityEngine.AnimationCurve Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::CurveValue
AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * ___CurveValue_17;
// UnityEngine.AudioClip Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::AudioClipValue
AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 * ___AudioClipValue_18;
// UnityEngine.Quaternion Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::QuaternionValue
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___QuaternionValue_19;
// UnityEngine.Events.UnityEvent Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::EventValue
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___EventValue_20;
// System.String[] Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting::Options
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___Options_21;
public:
inline static int32_t get_offset_of_Type_0() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___Type_0)); }
inline int32_t get_Type_0() const { return ___Type_0; }
inline int32_t* get_address_of_Type_0() { return &___Type_0; }
inline void set_Type_0(int32_t value)
{
___Type_0 = value;
}
inline static int32_t get_offset_of_Label_1() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___Label_1)); }
inline String_t* get_Label_1() const { return ___Label_1; }
inline String_t** get_address_of_Label_1() { return &___Label_1; }
inline void set_Label_1(String_t* value)
{
___Label_1 = value;
Il2CppCodeGenWriteBarrier((&___Label_1), value);
}
inline static int32_t get_offset_of_Name_2() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___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((&___Name_2), value);
}
inline static int32_t get_offset_of_Tooltip_3() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___Tooltip_3)); }
inline String_t* get_Tooltip_3() const { return ___Tooltip_3; }
inline String_t** get_address_of_Tooltip_3() { return &___Tooltip_3; }
inline void set_Tooltip_3(String_t* value)
{
___Tooltip_3 = value;
Il2CppCodeGenWriteBarrier((&___Tooltip_3), value);
}
inline static int32_t get_offset_of_IntValue_4() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___IntValue_4)); }
inline int32_t get_IntValue_4() const { return ___IntValue_4; }
inline int32_t* get_address_of_IntValue_4() { return &___IntValue_4; }
inline void set_IntValue_4(int32_t value)
{
___IntValue_4 = value;
}
inline static int32_t get_offset_of_StringValue_5() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___StringValue_5)); }
inline String_t* get_StringValue_5() const { return ___StringValue_5; }
inline String_t** get_address_of_StringValue_5() { return &___StringValue_5; }
inline void set_StringValue_5(String_t* value)
{
___StringValue_5 = value;
Il2CppCodeGenWriteBarrier((&___StringValue_5), value);
}
inline static int32_t get_offset_of_FloatValue_6() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___FloatValue_6)); }
inline float get_FloatValue_6() const { return ___FloatValue_6; }
inline float* get_address_of_FloatValue_6() { return &___FloatValue_6; }
inline void set_FloatValue_6(float value)
{
___FloatValue_6 = value;
}
inline static int32_t get_offset_of_BoolValue_7() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___BoolValue_7)); }
inline bool get_BoolValue_7() const { return ___BoolValue_7; }
inline bool* get_address_of_BoolValue_7() { return &___BoolValue_7; }
inline void set_BoolValue_7(bool value)
{
___BoolValue_7 = value;
}
inline static int32_t get_offset_of_GameObjectValue_8() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___GameObjectValue_8)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_GameObjectValue_8() const { return ___GameObjectValue_8; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_GameObjectValue_8() { return &___GameObjectValue_8; }
inline void set_GameObjectValue_8(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___GameObjectValue_8 = value;
Il2CppCodeGenWriteBarrier((&___GameObjectValue_8), value);
}
inline static int32_t get_offset_of_ScriptableObjectValue_9() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___ScriptableObjectValue_9)); }
inline ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 * get_ScriptableObjectValue_9() const { return ___ScriptableObjectValue_9; }
inline ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 ** get_address_of_ScriptableObjectValue_9() { return &___ScriptableObjectValue_9; }
inline void set_ScriptableObjectValue_9(ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 * value)
{
___ScriptableObjectValue_9 = value;
Il2CppCodeGenWriteBarrier((&___ScriptableObjectValue_9), value);
}
inline static int32_t get_offset_of_ObjectValue_10() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___ObjectValue_10)); }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_ObjectValue_10() const { return ___ObjectValue_10; }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_ObjectValue_10() { return &___ObjectValue_10; }
inline void set_ObjectValue_10(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
___ObjectValue_10 = value;
Il2CppCodeGenWriteBarrier((&___ObjectValue_10), value);
}
inline static int32_t get_offset_of_MaterialValue_11() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___MaterialValue_11)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_MaterialValue_11() const { return ___MaterialValue_11; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_MaterialValue_11() { return &___MaterialValue_11; }
inline void set_MaterialValue_11(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___MaterialValue_11 = value;
Il2CppCodeGenWriteBarrier((&___MaterialValue_11), value);
}
inline static int32_t get_offset_of_TextureValue_12() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___TextureValue_12)); }
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * get_TextureValue_12() const { return ___TextureValue_12; }
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 ** get_address_of_TextureValue_12() { return &___TextureValue_12; }
inline void set_TextureValue_12(Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * value)
{
___TextureValue_12 = value;
Il2CppCodeGenWriteBarrier((&___TextureValue_12), value);
}
inline static int32_t get_offset_of_ColorValue_13() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___ColorValue_13)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_ColorValue_13() const { return ___ColorValue_13; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_ColorValue_13() { return &___ColorValue_13; }
inline void set_ColorValue_13(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___ColorValue_13 = value;
}
inline static int32_t get_offset_of_Vector2Value_14() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___Vector2Value_14)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_Vector2Value_14() const { return ___Vector2Value_14; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_Vector2Value_14() { return &___Vector2Value_14; }
inline void set_Vector2Value_14(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___Vector2Value_14 = value;
}
inline static int32_t get_offset_of_Vector3Value_15() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___Vector3Value_15)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_Vector3Value_15() const { return ___Vector3Value_15; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_Vector3Value_15() { return &___Vector3Value_15; }
inline void set_Vector3Value_15(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___Vector3Value_15 = value;
}
inline static int32_t get_offset_of_Vector4Value_16() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___Vector4Value_16)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_Vector4Value_16() const { return ___Vector4Value_16; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_Vector4Value_16() { return &___Vector4Value_16; }
inline void set_Vector4Value_16(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___Vector4Value_16 = value;
}
inline static int32_t get_offset_of_CurveValue_17() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___CurveValue_17)); }
inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * get_CurveValue_17() const { return ___CurveValue_17; }
inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C ** get_address_of_CurveValue_17() { return &___CurveValue_17; }
inline void set_CurveValue_17(AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * value)
{
___CurveValue_17 = value;
Il2CppCodeGenWriteBarrier((&___CurveValue_17), value);
}
inline static int32_t get_offset_of_AudioClipValue_18() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___AudioClipValue_18)); }
inline AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 * get_AudioClipValue_18() const { return ___AudioClipValue_18; }
inline AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 ** get_address_of_AudioClipValue_18() { return &___AudioClipValue_18; }
inline void set_AudioClipValue_18(AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 * value)
{
___AudioClipValue_18 = value;
Il2CppCodeGenWriteBarrier((&___AudioClipValue_18), value);
}
inline static int32_t get_offset_of_QuaternionValue_19() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___QuaternionValue_19)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_QuaternionValue_19() const { return ___QuaternionValue_19; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_QuaternionValue_19() { return &___QuaternionValue_19; }
inline void set_QuaternionValue_19(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___QuaternionValue_19 = value;
}
inline static int32_t get_offset_of_EventValue_20() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___EventValue_20)); }
inline UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * get_EventValue_20() const { return ___EventValue_20; }
inline UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F ** get_address_of_EventValue_20() { return &___EventValue_20; }
inline void set_EventValue_20(UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * value)
{
___EventValue_20 = value;
Il2CppCodeGenWriteBarrier((&___EventValue_20), value);
}
inline static int32_t get_offset_of_Options_21() { return static_cast<int32_t>(offsetof(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419, ___Options_21)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_Options_21() const { return ___Options_21; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_Options_21() { return &___Options_21; }
inline void set_Options_21(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___Options_21 = value;
Il2CppCodeGenWriteBarrier((&___Options_21), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting
struct InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_marshaled_pinvoke
{
int32_t ___Type_0;
char* ___Label_1;
char* ___Name_2;
char* ___Tooltip_3;
int32_t ___IntValue_4;
char* ___StringValue_5;
float ___FloatValue_6;
int32_t ___BoolValue_7;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___GameObjectValue_8;
ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_pinvoke ___ScriptableObjectValue_9;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke ___ObjectValue_10;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___MaterialValue_11;
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___TextureValue_12;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___ColorValue_13;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Vector2Value_14;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___Vector3Value_15;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___Vector4Value_16;
AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C_marshaled_pinvoke ___CurveValue_17;
AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 * ___AudioClipValue_18;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___QuaternionValue_19;
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___EventValue_20;
char** ___Options_21;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting
struct InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_marshaled_com
{
int32_t ___Type_0;
Il2CppChar* ___Label_1;
Il2CppChar* ___Name_2;
Il2CppChar* ___Tooltip_3;
int32_t ___IntValue_4;
Il2CppChar* ___StringValue_5;
float ___FloatValue_6;
int32_t ___BoolValue_7;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___GameObjectValue_8;
ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_com* ___ScriptableObjectValue_9;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com* ___ObjectValue_10;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___MaterialValue_11;
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___TextureValue_12;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___ColorValue_13;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Vector2Value_14;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___Vector3Value_15;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___Vector4Value_16;
AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C_marshaled_com* ___CurveValue_17;
AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 * ___AudioClipValue_18;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___QuaternionValue_19;
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___EventValue_20;
Il2CppChar** ___Options_21;
};
#endif // INSPECTORPROPERTYSETTING_TF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_H
#ifndef INTERACTIONSOURCEPROPERTIES_T4F09AE5472B080CF0CA6D8DB68B8D48E90FA455A_H
#define INTERACTIONSOURCEPROPERTIES_T4F09AE5472B080CF0CA6D8DB68B8D48E90FA455A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERACTIONSOURCEPROPERTIES_T4F09AE5472B080CF0CA6D8DB68B8D48E90FA455A_H
#ifndef INTERACTIONSOURCESTATE_T41A6FEEA413909D5D94BF48BC907FE5DBD162250_H
#define INTERACTIONSOURCESTATE_T41A6FEEA413909D5D94BF48BC907FE5DBD162250_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERACTIONSOURCESTATE_T41A6FEEA413909D5D94BF48BC907FE5DBD162250_H
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Il2CppChar m_Items[1];
public:
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Int32Enum[]
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Single[]
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5 : public RuntimeArray
{
public:
ALIGN_FIELD (8) float m_Items[1];
public:
inline float GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline float* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, float value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline float GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
{
m_Items[index] = value;
}
};
// System.Xml.Schema.SequenceNode_SequenceConstructPosContext[]
struct SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 m_Items[1];
public:
inline SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 value)
{
m_Items[index] = value;
}
};
// TMPro.MaterialReference[]
struct MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B : public RuntimeArray
{
public:
ALIGN_FIELD (8) MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F m_Items[1];
public:
inline MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F value)
{
m_Items[index] = value;
}
};
// TMPro.TMP_CharacterInfo[]
struct TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 m_Items[1];
public:
inline TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 value)
{
m_Items[index] = value;
}
};
// TMPro.TMP_LinkInfo[]
struct TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 m_Items[1];
public:
inline TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 value)
{
m_Items[index] = value;
}
};
// TMPro.TMP_MeshInfo[]
struct TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E m_Items[1];
public:
inline TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E value)
{
m_Items[index] = value;
}
};
// TMPro.TMP_PageInfo[]
struct TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 m_Items[1];
public:
inline TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 value)
{
m_Items[index] = value;
}
};
// TMPro.TMP_Text_UnicodeChar[]
struct UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505 : public RuntimeArray
{
public:
ALIGN_FIELD (8) UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A m_Items[1];
public:
inline UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A value)
{
m_Items[index] = value;
}
};
// TMPro.TMP_WordInfo[]
struct TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 m_Items[1];
public:
inline TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Color32[]
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 m_Items[1];
public:
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector2_tA85D2DD88578276CA8A8796756458277E72D073D m_Items[1];
public:
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 m_Items[1];
public:
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector4[]
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E m_Items[1];
public:
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
m_Items[index] = value;
}
};
// Microsoft.MixedReality.Toolkit.BaseEventSystem_EventHandlerEntry[]
struct EventHandlerEntryU5BU5D_t7D3B422539E522484BD470A429D090B18C7A492E : public RuntimeArray
{
public:
ALIGN_FIELD (8) EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 m_Items[1];
public:
inline EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 value)
{
m_Items[index] = value;
}
};
// Microsoft.MixedReality.Toolkit.Boundary.Edge[]
struct EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D m_Items[1];
public:
inline Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D value)
{
m_Items[index] = value;
}
};
// Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction[]
struct MixedRealityInputActionU5BU5D_t4FDC16B5B905261A6B1A4DDF75D4EF0296DD55E7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 m_Items[1];
public:
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 value)
{
m_Items[index] = value;
}
};
// Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo[]
struct SceneInfoU5BU5D_t53B51DB3A2A4B576992AFD774092D1A6010EC417 : public RuntimeArray
{
public:
ALIGN_FIELD (8) SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE m_Items[1];
public:
inline SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE value)
{
m_Items[index] = value;
}
};
// Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer[]
struct BlocksAndRendererU5BU5D_t121D8370D0807540C909B58C3122EDDA9DA622E1 : public RuntimeArray
{
public:
ALIGN_FIELD (8) BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 m_Items[1];
public:
inline BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 value)
{
m_Items[index] = value;
}
};
// Microsoft.MixedReality.Toolkit.UI.ShaderProperties[]
struct ShaderPropertiesU5BU5D_t14DC9156D548ED23B85310557E2F9BC6AF312E69 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 m_Items[1];
public:
inline ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 value)
{
m_Items[index] = value;
}
};
// Microsoft.MixedReality.Toolkit.UI.ThemeDefinition[]
struct ThemeDefinitionU5BU5D_t2F4682E8423138C6516DD064FC40EBB907755A97 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A m_Items[1];
public:
inline ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A value)
{
m_Items[index] = value;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting[]
struct InspectorPropertySettingU5BU5D_tAED0D945613EDA515065B5517B8062DF00981FF1 : public RuntimeArray
{
public:
ALIGN_FIELD (8) InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 m_Items[1];
public:
inline InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 value)
{
m_Items[index] = value;
}
};
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040 : public RuntimeArray
{
public:
ALIGN_FIELD (8) bool m_Items[1];
public:
inline bool GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline bool* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, bool value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
{
m_Items[index] = value;
}
};
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint8_t m_Items[1];
public:
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[]
struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B m_Items[1];
public:
inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Vector3>[]
struct KeyValuePair_2U5BU5D_t2056CEA4067E5A5D956F384D695B7295B83254B0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC m_Items[1];
public:
inline KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC value)
{
m_Items[index] = value;
}
};
// System.Void System.NotSupportedException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Int32 System.Array::get_Length()
extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisMixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88_m367632F4549B94B34ED771721FA1F1C2BCA32B80_gshared (RuntimeArray * __this, int32_t ___index0, MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisMixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88_m367632F4549B94B34ED771721FA1F1C2BCA32B80_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisMixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88_m367632F4549B94B34ED771721FA1F1C2BCA32B80_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.Input.ObjectCursor_ObjectCursorDatum>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE_mD833B193AAFF79216D599A5BF0EB5BBD7420178C_gshared (RuntimeArray * __this, int32_t ___index0, ObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE_mD833B193AAFF79216D599A5BF0EB5BBD7420178C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE_mD833B193AAFF79216D599A5BF0EB5BBD7420178C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.Input.PointerOption>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisPointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7_m3A4D75C8C42ED2091BE1FC3739138890A9CAD5A5_gshared (RuntimeArray * __this, int32_t ___index0, PointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisPointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7_m3A4D75C8C42ED2091BE1FC3739138890A9CAD5A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisPointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7_m3A4D75C8C42ED2091BE1FC3739138890A9CAD5A5_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.Input.SpeechCommands>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11_mB448B899E0CC7A592F28EF2DD14B3077DCB6B016_gshared (RuntimeArray * __this, int32_t ___index0, SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11_mB448B899E0CC7A592F28EF2DD14B3077DCB6B016_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11_mB448B899E0CC7A592F28EF2DD14B3077DCB6B016_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.Input.SpriteCursor_SpriteCursorDatum>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790_mDF08CEB9248B49B110F476D6DF2B8CA23F75CB13_gshared (RuntimeArray * __this, int32_t ___index0, SpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790_mDF08CEB9248B49B110F476D6DF2B8CA23F75CB13_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790_mDF08CEB9248B49B110F476D6DF2B8CA23F75CB13_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisMixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D_mBDFB09AF52AFFD2D5966DC5F8CF8F35B71652D4F_gshared (RuntimeArray * __this, int32_t ___index0, MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisMixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D_mBDFB09AF52AFFD2D5966DC5F8CF8F35B71652D4F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisMixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D_mBDFB09AF52AFFD2D5966DC5F8CF8F35B71652D4F_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.Physics.RayStep>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisRayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_m10BFC1DD54BB62E88E529FF8211A1906469C5BE9_gshared (RuntimeArray * __this, int32_t ___index0, RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisRayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_m10BFC1DD54BB62E88E529FF8211A1906469C5BE9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisRayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_m10BFC1DD54BB62E88E529FF8211A1906469C5BE9_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_m9684F21459B486374A9EDC147072EE89BA784625_gshared (RuntimeArray * __this, int32_t ___index0, SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_m9684F21459B486374A9EDC147072EE89BA784625_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_m9684F21459B486374A9EDC147072EE89BA784625_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisMixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3_m49C0216E65C8510757D1C9C8E17931F3F7A9D9D8_gshared (RuntimeArray * __this, int32_t ___index0, MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisMixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3_m49C0216E65C8510757D1C9C8E17931F3F7A9D9D8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisMixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3_m49C0216E65C8510757D1C9C8E17931F3F7A9D9D8_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_mE8A5FB4AA5D2DB10483FB652B675D5CEBC300B2A_gshared (RuntimeArray * __this, int32_t ___index0, BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_mE8A5FB4AA5D2DB10483FB652B675D5CEBC300B2A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_mE8A5FB4AA5D2DB10483FB652B675D5CEBC300B2A_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.UI.ManipulationHandler_PointerData>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisPointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4_mDCB97B0826A4C2A766091E37BEB955B33DC1A194_gshared (RuntimeArray * __this, int32_t ___index0, PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisPointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4_mDCB97B0826A4C2A766091E37BEB955B33DC1A194_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisPointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4_mDCB97B0826A4C2A766091E37BEB955B33DC1A194_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.UI.ShaderProperties>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_m74E18C2F6DF0494CD9FB51E854E4F00C9E7F6D2A_gshared (RuntimeArray * __this, int32_t ___index0, ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_m74E18C2F6DF0494CD9FB51E854E4F00C9E7F6D2A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_m74E18C2F6DF0494CD9FB51E854E4F00C9E7F6D2A_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_mE08EC7AEEBFE083BA46ED3F087D36695FDB3B9B2_gshared (RuntimeArray * __this, int32_t ___index0, ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_mE08EC7AEEBFE083BA46ED3F087D36695FDB3B9B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_mE08EC7AEEBFE083BA46ED3F087D36695FDB3B9B2_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisAnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B_mC30C59E4DB7E3316FD6B1D17F9230D77A645FAC3_gshared (RuntimeArray * __this, int32_t ___index0, AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisAnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B_mC30C59E4DB7E3316FD6B1D17F9230D77A645FAC3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisAnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B_mC30C59E4DB7E3316FD6B1D17F9230D77A645FAC3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.Utilities.ArticulatedHandPose_ArticulatedHandPoseItem>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_m8EB4CF7355F8E43BFD8595BEE92C30F8887A73A8_gshared (RuntimeArray * __this, int32_t ___index0, ArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_m8EB4CF7355F8E43BFD8595BEE92C30F8887A73A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_m8EB4CF7355F8E43BFD8595BEE92C30F8887A73A8_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m2A1567A4D9745A9504F2AEC669BFD142769D8B63_gshared (RuntimeArray * __this, int32_t ___index0, InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m2A1567A4D9745A9504F2AEC669BFD142769D8B63_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m2A1567A4D9745A9504F2AEC669BFD142769D8B63_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisMixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_mCC0C7E15A55D35636FB7B4C1AFB4ED1B57F4541C_gshared (RuntimeArray * __this, int32_t ___index0, MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisMixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_mCC0C7E15A55D35636FB7B4C1AFB4ED1B57F4541C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisMixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_mCC0C7E15A55D35636FB7B4C1AFB4ED1B57F4541C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisFileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_mC7DDA5D55D98FD5FB2EE123D42400F5B231B2455_gshared (RuntimeArray * __this, int32_t ___index0, FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisFileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_mC7DDA5D55D98FD5FB2EE123D42400F5B231B2455_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisFileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_mC7DDA5D55D98FD5FB2EE123D42400F5B231B2455_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m267C106765C42662477BE62A7981DEF7141F8BEC_gshared (RuntimeArray * __this, int32_t ___index0, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m267C106765C42662477BE62A7981DEF7141F8BEC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m267C106765C42662477BE62A7981DEF7141F8BEC_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Mono.Security.Uri_UriScheme>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m1505D6B8C208CF150CCE48EBFCEB48455326175C_gshared (RuntimeArray * __this, int32_t ___index0, UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m1505D6B8C208CF150CCE48EBFCEB48455326175C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m1505D6B8C208CF150CCE48EBFCEB48455326175C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.ArraySegment`1<System.Byte>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD8C12E9537ADB27575F599896B3D15D5BBA75D9B_gshared (RuntimeArray * __this, int32_t ___index0, ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD8C12E9537ADB27575F599896B3D15D5BBA75D9B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_mD8C12E9537ADB27575F599896B3D15D5BBA75D9B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Boolean>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE9F6E0D310E603EA96A953EF1DD6C68F39730C9C_gshared (RuntimeArray * __this, int32_t ___index0, bool ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE9F6E0D310E603EA96A953EF1DD6C68F39730C9C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE9F6E0D310E603EA96A953EF1DD6C68F39730C9C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Byte>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39C0E1BB2E4639B675A0B24E8F7C369E05F25685_gshared (RuntimeArray * __this, int32_t ___index0, uint8_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39C0E1BB2E4639B675A0B24E8F7C369E05F25685_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39C0E1BB2E4639B675A0B24E8F7C369E05F25685_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.ByteEnum>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m7F6A6780F368FE04054FC52535DA7A65F71EEAA9_gshared (RuntimeArray * __this, int32_t ___index0, uint8_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m7F6A6780F368FE04054FC52535DA7A65F71EEAA9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_m7F6A6780F368FE04054FC52535DA7A65F71EEAA9_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Char>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2E9DF91734F88A23FAB1941B8BEB5A251046DF63_gshared (RuntimeArray * __this, int32_t ___index0, Il2CppChar ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2E9DF91734F88A23FAB1941B8BEB5A251046DF63_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2E9DF91734F88A23FAB1941B8BEB5A251046DF63_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.DictionaryEntry>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mC3AAD833A34DF3BF2CD9916A94EEBF85F84571D8_gshared (RuntimeArray * __this, int32_t ___index0, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mC3AAD833A34DF3BF2CD9916A94EEBF85F84571D8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mC3AAD833A34DF3BF2CD9916A94EEBF85F84571D8_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m23A4919E880F5BC6B4A8E4E947CFC6865CE7BD54_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tC1463A26CB3583633B8650196083947E916945AD ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m23A4919E880F5BC6B4A8E4E947CFC6865CE7BD54_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m23A4919E880F5BC6B4A8E4E947CFC6865CE7BD54_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.ByteEnum,UnityEngine.Bounds>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t3A99E3574F89658F38564648536BBF4389E095FC_m861CDF7DB362DD2CD2F061CE9015A9289F0E6CC5_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t3A99E3574F89658F38564648536BBF4389E095FC ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t3A99E3574F89658F38564648536BBF4389E095FC_m861CDF7DB362DD2CD2F061CE9015A9289F0E6CC5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t3A99E3574F89658F38564648536BBF4389E095FC_m861CDF7DB362DD2CD2F061CE9015A9289F0E6CC5_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Guid,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mBF0F64B2BA1CEA72F9E93BF8D1CE8B760D30FE6E_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mBF0F64B2BA1CEA72F9E93BF8D1CE8B760D30FE6E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mBF0F64B2BA1CEA72F9E93BF8D1CE8B760D30FE6E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Boolean>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m0E2EF8F3992A2D2193DA91A85BA4EB37ECE69F36_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m0E2EF8F3992A2D2193DA91A85BA4EB37ECE69F36_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m0E2EF8F3992A2D2193DA91A85BA4EB37ECE69F36_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Char>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m5DD9AC37E36287E7452B482A18D7BB198974274A_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m5DD9AC37E36287E7452B482A18D7BB198974274A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m5DD9AC37E36287E7452B482A18D7BB198974274A_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m640B87319C6D2DFCC1A5FB7DBD24015FD4EEB1A4_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m640B87319C6D2DFCC1A5FB7DBD24015FD4EEB1A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m640B87319C6D2DFCC1A5FB7DBD24015FD4EEB1A4_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int64>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_mEFD58605BD0E1293E1FF5BB462A7A2C8C594BFD6_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_mEFD58605BD0E1293E1FF5BB462A7A2C8C594BFD6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_mEFD58605BD0E1293E1FF5BB462A7A2C8C594BFD6_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mFC47BD3B041BC417842362A130A22922CA9D5210_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mFC47BD3B041BC417842362A130A22922CA9D5210_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mFC47BD3B041BC417842362A130A22922CA9D5210_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC_m8A50C95722718B77C3D5FAC7DBBB544423839A1E_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC_m8A50C95722718B77C3D5FAC7DBBB544423839A1E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC_m8A50C95722718B77C3D5FAC7DBBB544423839A1E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488_mB0FCD430D1AC8C3D90667F16572398C52EF49A25_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488_mB0FCD430D1AC8C3D90667F16572398C52EF49A25_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488_mB0FCD430D1AC8C3D90667F16572398C52EF49A25_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD_mF8870E87C412CBE073CEE17DEE66C6CCD50E41D6_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD_mF8870E87C412CBE073CEE17DEE66C6CCD50E41D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD_mF8870E87C412CBE073CEE17DEE66C6CCD50E41D6_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_m884D02C12BDFF597EE9D9EBA4176EFDFB4C231A0_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_m884D02C12BDFF597EE9D9EBA4176EFDFB4C231A0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_m884D02C12BDFF597EE9D9EBA4176EFDFB4C231A0_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E_mE9ECF8FE382D6EAC560C9F4601EC9894B7C2D7DC_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E_mE9ECF8FE382D6EAC560C9F4601EC9894B7C2D7DC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E_mE9ECF8FE382D6EAC560C9F4601EC9894B7C2D7DC_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mBC990E523C5FAC4D18228EE959A605F31DE2DBA9_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mBC990E523C5FAC4D18228EE959A605F31DE2DBA9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mBC990E523C5FAC4D18228EE959A605F31DE2DBA9_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m04DE7DE6F8761B7C1A649CB503F3FB80435FAF53_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m04DE7DE6F8761B7C1A649CB503F3FB80435FAF53_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m04DE7DE6F8761B7C1A649CB503F3FB80435FAF53_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m80D0262056AB6132787D162EC685AC57C2ABBF51_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m80D0262056AB6132787D162EC685AC57C2ABBF51_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m80D0262056AB6132787D162EC685AC57C2ABBF51_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBFA6837DC3148B8268BBDC819CC2B30C9B98D344_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBFA6837DC3148B8268BBDC819CC2B30C9B98D344_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBFA6837DC3148B8268BBDC819CC2B30C9B98D344_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_EventRegistrationTokenList>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF_mDDBCD0A8E3093C871FCAB7C9BC2C0AD12FAF1B60_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF_mDDBCD0A8E3093C871FCAB7C9BC2C0AD12FAF1B60_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF_mDDBCD0A8E3093C871FCAB7C9BC2C0AD12FAF1B60_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Vector3>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m27402EA336921B905B28D9D5C41AC7DF1C599BCB_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m27402EA336921B905B28D9D5C41AC7DF1C599BCB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m27402EA336921B905B28D9D5C41AC7DF1C599BCB_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheEntry>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E_m936E9A10E648C9A9DC21B213BFF3AB6ACC932417_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E_m936E9A10E648C9A9DC21B213BFF3AB6ACC932417_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E_m936E9A10E648C9A9DC21B213BFF3AB6ACC932417_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,Microsoft.MixedReality.Toolkit.UI.ManipulationHandler_PointerData>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688_m80DE9C7640F0776B75568F662A120994A93848A1_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688_m80DE9C7640F0776B75568F662A120994A93848A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688_m80DE9C7640F0776B75568F662A120994A93848A1_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Boolean>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m366CB0ADB17FEC25A6773D3155FF562FC4554B3D_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m366CB0ADB17FEC25A6773D3155FF562FC4554B3D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m366CB0ADB17FEC25A6773D3155FF562FC4554B3D_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mC746C2502A46D02D0916861AFD6E010266505986_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mC746C2502A46D02D0916861AFD6E010266505986_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mC746C2502A46D02D0916861AFD6E010266505986_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m795F453B39D52A9A0CDFA4849B8EAB8B432A46C5_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m795F453B39D52A9A0CDFA4849B8EAB8B432A46C5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m795F453B39D52A9A0CDFA4849B8EAB8B432A46C5_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,UnityEngine.Vector3>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m3700CDFD6D670C936C8F6CBEF92A9D1D1EB8F2C2_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m3700CDFD6D670C936C8F6CBEF92A9D1D1EB8F2C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m3700CDFD6D670C936C8F6CBEF92A9D1D1EB8F2C2_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m59785DEDD32E06384722D716EB1122FA165DC164_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t687188C87EF1FD0D50038E634676DBC449857B8E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m59785DEDD32E06384722D716EB1122FA165DC164_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m59785DEDD32E06384722D716EB1122FA165DC164_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Vector3,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t266C0028DBD75C5E784224261B95300BB5315207_m9A0162CB40F27A97A135D483C9A2BAF3379410EC_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t266C0028DBD75C5E784224261B95300BB5315207 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t266C0028DBD75C5E784224261B95300BB5315207_m9A0162CB40F27A97A135D483C9A2BAF3379410EC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEntry_t266C0028DBD75C5E784224261B95300BB5315207_m9A0162CB40F27A97A135D483C9A2BAF3379410EC_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.HashSet`1_Slot<System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m19FA73D72D42E6AC04D0BE3ED2E272046A792E49_gshared (RuntimeArray * __this, int32_t ___index0, Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m19FA73D72D42E6AC04D0BE3ED2E272046A792E49_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m19FA73D72D42E6AC04D0BE3ED2E272046A792E49_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.HashSet`1_Slot<System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mA7BC4F9F207588AB3833593BCEAAA3AF827EC496_gshared (RuntimeArray * __this, int32_t ___index0, Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mA7BC4F9F207588AB3833593BCEAAA3AF827EC496_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mA7BC4F9F207588AB3833593BCEAAA3AF827EC496_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m8117EAB836397B8746CE03DC38BDBE3688F41A5A_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m8117EAB836397B8746CE03DC38BDBE3688F41A5A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m8117EAB836397B8746CE03DC38BDBE3688F41A5A_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.ByteEnum,UnityEngine.Bounds>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238_mE7710DF6E5823547D7DA6FFF63A58193A69DFD0B_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238_mE7710DF6E5823547D7DA6FFF63A58193A69DFD0B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238_mE7710DF6E5823547D7DA6FFF63A58193A69DFD0B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mFF6322E2EE3565369974ADC72D6091611498CEFB_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mFF6322E2EE3565369974ADC72D6091611498CEFB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mFF6322E2EE3565369974ADC72D6091611498CEFB_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1DC1D2CE7F27B6861D32667F792056810F14E6A2_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1DC1D2CE7F27B6861D32667F792056810F14E6A2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1DC1D2CE7F27B6861D32667F792056810F14E6A2_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_mF3E52E6B89CC10EED23F76C275DEEB462FB1BFE5_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_mF3E52E6B89CC10EED23F76C275DEEB462FB1BFE5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_mF3E52E6B89CC10EED23F76C275DEEB462FB1BFE5_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mC6F9F51E5F4362482BD5714FA3D66C3022DB4A44_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mC6F9F51E5F4362482BD5714FA3D66C3022DB4A44_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mC6F9F51E5F4362482BD5714FA3D66C3022DB4A44_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m3FECC49D66B6A51DACC6BD52FDD25846EFDAD881_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m3FECC49D66B6A51DACC6BD52FDD25846EFDAD881_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m3FECC49D66B6A51DACC6BD52FDD25846EFDAD881_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mE0E3F1583DBA4DAF18CC3300DE3C6916ED13EA65_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mE0E3F1583DBA4DAF18CC3300DE3C6916ED13EA65_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mE0E3F1583DBA4DAF18CC3300DE3C6916ED13EA65_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26_m982908B8D1321B92E6706BA118232673F1FCB2CD_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26_m982908B8D1321B92E6706BA118232673F1FCB2CD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26_m982908B8D1321B92E6706BA118232673F1FCB2CD_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Vector3>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_mD83E61B5572BB7E8087280B15BE4F7C9A2C21C98_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_mD83E61B5572BB7E8087280B15BE4F7C9A2C21C98_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_mD83E61B5572BB7E8087280B15BE4F7C9A2C21C98_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187_m0F74212D98315E1A363AD383E491301670DDD0AA_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187_m0F74212D98315E1A363AD383E491301670DDD0AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187_m0F74212D98315E1A363AD383E491301670DDD0AA_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7_m768FB8BFF448EE65058A948794AFA9DE706019A2_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7_m768FB8BFF448EE65058A948794AFA9DE706019A2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7_m768FB8BFF448EE65058A948794AFA9DE706019A2_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_m65D8913E3C1D28DD0A041C608E7AA6A292F183A7_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_m65D8913E3C1D28DD0A041C608E7AA6A292F183A7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_m65D8913E3C1D28DD0A041C608E7AA6A292F183A7_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m01AE1836246A090293461E55415D13408A161066_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m01AE1836246A090293461E55415D13408A161066_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m01AE1836246A090293461E55415D13408A161066_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4_m59694BF544A142468E435385C14EE9784CF88E02_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4_m59694BF544A142468E435385C14EE9784CF88E02_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4_m59694BF544A142468E435385C14EE9784CF88E02_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mCE8A2D462A033FB0B3BEC9AC0EA8A1AE4F880E8C_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mCE8A2D462A033FB0B3BEC9AC0EA8A1AE4F880E8C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_mCE8A2D462A033FB0B3BEC9AC0EA8A1AE4F880E8C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m0AA4311C56D9888BBA00A9F3E6FE48C48E62C104_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m0AA4311C56D9888BBA00A9F3E6FE48C48E62C104_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m0AA4311C56D9888BBA00A9F3E6FE48C48E62C104_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m5AAE842F1F6C7FAE42D1DBE719201D49C6205C8A_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m5AAE842F1F6C7FAE42D1DBE719201D49C6205C8A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m5AAE842F1F6C7FAE42D1DBE719201D49C6205C8A_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m0D2B5DDB8A92DC3C243626688F7C70607526A03D_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m0D2B5DDB8A92DC3C243626688F7C70607526A03D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m0D2B5DDB8A92DC3C243626688F7C70607526A03D_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_EventRegistrationTokenList>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3_m0D57123466BA771F272D2C76D5FCD8F230E353A0_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3_m0D57123466BA771F272D2C76D5FCD8F230E353A0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3_m0D57123466BA771F272D2C76D5FCD8F230E353A0_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822_m0DC2FA2B3D58A1BB4D95E7F70CEB5CE98B2EE584_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822_m0DC2FA2B3D58A1BB4D95E7F70CEB5CE98B2EE584_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822_m0DC2FA2B3D58A1BB4D95E7F70CEB5CE98B2EE584_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheEntry>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46_mB6D8F83BF370324FE434040068C17E32E8244DCA_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46_mB6D8F83BF370324FE434040068C17E32E8244DCA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46_mB6D8F83BF370324FE434040068C17E32E8244DCA_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.UInt32,Microsoft.MixedReality.Toolkit.UI.ManipulationHandler_PointerData>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B_mB9B24A70CAF3D84C6DD5C9FA58B7E6030B256E62_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B_mB9B24A70CAF3D84C6DD5C9FA58B7E6030B256E62_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B_mB9B24A70CAF3D84C6DD5C9FA58B7E6030B256E62_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_m35D547D9DE08BF517B74BF9C691B5E36B6B0CE21_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_m35D547D9DE08BF517B74BF9C691B5E36B6B0CE21_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_m35D547D9DE08BF517B74BF9C691B5E36B6B0CE21_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA0B4CB939AEBF8A592DA52B197572428F43EB20B_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA0B4CB939AEBF8A592DA52B197572428F43EB20B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA0B4CB939AEBF8A592DA52B197572428F43EB20B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_mAC671FDB5325B51248B56AC79F51CA059A5EC445_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_mAC671FDB5325B51248B56AC79F51CA059A5EC445_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_mAC671FDB5325B51248B56AC79F51CA059A5EC445_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF_mE9E59CD0B33D6B243F118DE8C75CC5575C785B22_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF_mE9E59CD0B33D6B243F118DE8C75CC5575C785B22_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF_mE9E59CD0B33D6B243F118DE8C75CC5575C785B22_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27_mC1C99E3AE87AC84E2085EC562DE7A9F22F628C4F_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27_mC1C99E3AE87AC84E2085EC562DE7A9F22F628C4F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27_mC1C99E3AE87AC84E2085EC562DE7A9F22F628C4F_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2_m1D64FB5CD56942B749C26B7B39A2897A9AFB0467_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2_m1D64FB5CD56942B749C26B7B39A2897A9AFB0467_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2_m1D64FB5CD56942B749C26B7B39A2897A9AFB0467_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Hashtable_bucket>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mEE93EA250C3399D4F5A3779DB444AF83C9A2BB11_gshared (RuntimeArray * __this, int32_t ___index0, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mEE93EA250C3399D4F5A3779DB444AF83C9A2BB11_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mEE93EA250C3399D4F5A3779DB444AF83C9A2BB11_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.DateTime>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC1A470EC548C3EECA307AB7491C7C03ACBEB6295_gshared (RuntimeArray * __this, int32_t ___index0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC1A470EC548C3EECA307AB7491C7C03ACBEB6295_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC1A470EC548C3EECA307AB7491C7C03ACBEB6295_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.DateTimeOffset>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m5B1BFF4BD07F7DE1A1F0AA346CAB42D57B22D1F2_gshared (RuntimeArray * __this, int32_t ___index0, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m5B1BFF4BD07F7DE1A1F0AA346CAB42D57B22D1F2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m5B1BFF4BD07F7DE1A1F0AA346CAB42D57B22D1F2_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Decimal>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m506AB5C14FB35E185FF78BED19CFF4B12D2D79E2_gshared (RuntimeArray * __this, int32_t ___index0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m506AB5C14FB35E185FF78BED19CFF4B12D2D79E2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m506AB5C14FB35E185FF78BED19CFF4B12D2D79E2_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Double>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m1F8E0FD15BFA1B3337DB17BB8862E5E7FDE3E7BE_gshared (RuntimeArray * __this, int32_t ___index0, double ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m1F8E0FD15BFA1B3337DB17BB8862E5E7FDE3E7BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m1F8E0FD15BFA1B3337DB17BB8862E5E7FDE3E7BE_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Globalization.InternalCodePageDataItem>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01B1B14297575D96EE9191074E5632BC0B51A914_gshared (RuntimeArray * __this, int32_t ___index0, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01B1B14297575D96EE9191074E5632BC0B51A914_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01B1B14297575D96EE9191074E5632BC0B51A914_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Globalization.InternalEncodingDataItem>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mF0B68FA4FB992EB82E6A755613ED52A537C1D7D7_gshared (RuntimeArray * __this, int32_t ___index0, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mF0B68FA4FB992EB82E6A755613ED52A537C1D7D7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mF0B68FA4FB992EB82E6A755613ED52A537C1D7D7_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Guid>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisGuid_t_m9FD816450B7080391B67F48C9E123DB561466EF2_gshared (RuntimeArray * __this, int32_t ___index0, Guid_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisGuid_t_m9FD816450B7080391B67F48C9E123DB561466EF2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisGuid_t_m9FD816450B7080391B67F48C9E123DB561466EF2_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Int16>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF074234522318193EE734BC9138E605CD9622EB5_gshared (RuntimeArray * __this, int32_t ___index0, int16_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF074234522318193EE734BC9138E605CD9622EB5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF074234522318193EE734BC9138E605CD9622EB5_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Int32>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m87666E66010673C970F94E1C303DE5E8FAE0C8C3_gshared (RuntimeArray * __this, int32_t ___index0, int32_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m87666E66010673C970F94E1C303DE5E8FAE0C8C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m87666E66010673C970F94E1C303DE5E8FAE0C8C3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Int32Enum>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mAF387A609B4339D2D5B2A4E8863A5D517599D7B1_gshared (RuntimeArray * __this, int32_t ___index0, int32_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mAF387A609B4339D2D5B2A4E8863A5D517599D7B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mAF387A609B4339D2D5B2A4E8863A5D517599D7B1_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Int64>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4A9A88250BBA3249C36F53140B0F15D826777325_gshared (RuntimeArray * __this, int32_t ___index0, int64_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4A9A88250BBA3249C36F53140B0F15D826777325_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4A9A88250BBA3249C36F53140B0F15D826777325_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.IntPtr>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisIntPtr_t_mEF1B13612BA6200225FA42B47519FD25D74B81B1_gshared (RuntimeArray * __this, int32_t ___index0, intptr_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisIntPtr_t_mEF1B13612BA6200225FA42B47519FD25D74B81B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisIntPtr_t_mEF1B13612BA6200225FA42B47519FD25D74B81B1_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Linq.Set`1_Slot<System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_m8B9456345FBFC805FC8504CA72DB6ED8531D49CA_gshared (RuntimeArray * __this, int32_t ___index0, Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_m8B9456345FBFC805FC8504CA72DB6ED8531D49CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_m8B9456345FBFC805FC8504CA72DB6ED8531D49CA_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Net.CookieTokenizer_RecognizedAttribute>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m0EA2E0CEAB796505E0618FD2931EEE5BFF7E5507_gshared (RuntimeArray * __this, int32_t ___index0, RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m0EA2E0CEAB796505E0618FD2931EEE5BFF7E5507_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m0EA2E0CEAB796505E0618FD2931EEE5BFF7E5507_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Net.HeaderVariantInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mAF811887FDC7242E77CBC4B52D8BCB59C50603F4_gshared (RuntimeArray * __this, int32_t ___index0, HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mAF811887FDC7242E77CBC4B52D8BCB59C50603F4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mAF811887FDC7242E77CBC4B52D8BCB59C50603F4_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Net.Sockets.Socket_WSABUF>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m33154784D5C9F542C931B2806494AD1443E8757B_gshared (RuntimeArray * __this, int32_t ___index0, WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m33154784D5C9F542C931B2806494AD1443E8757B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m33154784D5C9F542C931B2806494AD1443E8757B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Numerics.Matrix4x4>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisMatrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_m35628AE6A7530CF5E67752613BBB16AB2F0BD045_gshared (RuntimeArray * __this, int32_t ___index0, Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisMatrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_m35628AE6A7530CF5E67752613BBB16AB2F0BD045_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisMatrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_m35628AE6A7530CF5E67752613BBB16AB2F0BD045_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Numerics.Quaternion>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisQuaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A_m55DC483C759E7EA51CC47DC89D8D1C485FDDEAF0_gshared (RuntimeArray * __this, int32_t ___index0, Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisQuaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A_m55DC483C759E7EA51CC47DC89D8D1C485FDDEAF0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisQuaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A_m55DC483C759E7EA51CC47DC89D8D1C485FDDEAF0_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Numerics.Vector3>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisVector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65_mC32E8C028DB1FC2E3E7F3F8F3189956CE2ABE370_gshared (RuntimeArray * __this, int32_t ___index0, Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisVector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65_mC32E8C028DB1FC2E3E7F3F8F3189956CE2ABE370_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisVector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65_mC32E8C028DB1FC2E3E7F3F8F3189956CE2ABE370_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Object>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisRuntimeObject_m2621683E821AC4AE9C55CD7C1DA21EBCC57807D1_gshared (RuntimeArray * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisRuntimeObject_m2621683E821AC4AE9C55CD7C1DA21EBCC57807D1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisRuntimeObject_m2621683E821AC4AE9C55CD7C1DA21EBCC57807D1_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.ParameterizedStrings_FormatParam>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mC0FD985A43489A501E702CA511A3859032A6CE9A_gshared (RuntimeArray * __this, int32_t ___index0, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mC0FD985A43489A501E702CA511A3859032A6CE9A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mC0FD985A43489A501E702CA511A3859032A6CE9A_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Reflection.CustomAttributeNamedArgument>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mD4885C4B8D8E8E3097D1765E6A92ECF8F94AE5C7_gshared (RuntimeArray * __this, int32_t ___index0, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mD4885C4B8D8E8E3097D1765E6A92ECF8F94AE5C7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mD4885C4B8D8E8E3097D1765E6A92ECF8F94AE5C7_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Reflection.CustomAttributeTypedArgument>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m07D073239E468F11F0A92423F8C45E08E1B6D21E_gshared (RuntimeArray * __this, int32_t ___index0, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m07D073239E468F11F0A92423F8C45E08E1B6D21E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m07D073239E468F11F0A92423F8C45E08E1B6D21E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Reflection.ParameterModifier>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m71900E28A11269D320A0F0CBFBD9355A0451531C_gshared (RuntimeArray * __this, int32_t ___index0, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m71900E28A11269D320A0F0CBFBD9355A0451531C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m71900E28A11269D320A0F0CBFBD9355A0451531C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Resources.ResourceLocator>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m8957E8B1D262157330910E34C749D6A0FBF12005_gshared (RuntimeArray * __this, int32_t ___index0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m8957E8B1D262157330910E34C749D6A0FBF12005_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m8957E8B1D262157330910E34C749D6A0FBF12005_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Runtime.CompilerServices.Ephemeron>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m658F98B159EDE3EB39E0C386903E16BA2002FF44_gshared (RuntimeArray * __this, int32_t ___index0, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m658F98B159EDE3EB39E0C386903E16BA2002FF44_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m658F98B159EDE3EB39E0C386903E16BA2002FF44_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Runtime.InteropServices.GCHandle>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m2256A0CF02F23CF41324F1D4CE6212928B4CAD7A_gshared (RuntimeArray * __this, int32_t ___index0, GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m2256A0CF02F23CF41324F1D4CE6212928B4CAD7A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m2256A0CF02F23CF41324F1D4CE6212928B4CAD7A_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7_m48A14FC6614A61DFABB1114898D296698713FDFE_gshared (RuntimeArray * __this, int32_t ___index0, EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7_m48A14FC6614A61DFABB1114898D296698713FDFE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7_m48A14FC6614A61DFABB1114898D296698713FDFE_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_EventRegistrationTokenList>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_m0E4979F0AF86A1D91A92AD0002DA6071E8BF4349_gshared (RuntimeArray * __this, int32_t ___index0, EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_m0E4979F0AF86A1D91A92AD0002DA6071E8BF4349_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_m0E4979F0AF86A1D91A92AD0002DA6071E8BF4349_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheEntry>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6_m09A50E4F048BC03BA21D121C808206319F3DBA03_gshared (RuntimeArray * __this, int32_t ___index0, EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6_m09A50E4F048BC03BA21D121C808206319F3DBA03_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6_m09A50E4F048BC03BA21D121C808206319F3DBA03_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheKey>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A_m9C3BE935E6B070C35DB0E96BF270D856327FB50E_gshared (RuntimeArray * __this, int32_t ___index0, EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A_m9C3BE935E6B070C35DB0E96BF270D856327FB50E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A_m9C3BE935E6B070C35DB0E96BF270D856327FB50E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.SByte>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m0FA77EEA9554B1BFC19FF42D1F5855E48A0D0576_gshared (RuntimeArray * __this, int32_t ___index0, int8_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m0FA77EEA9554B1BFC19FF42D1F5855E48A0D0576_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m0FA77EEA9554B1BFC19FF42D1F5855E48A0D0576_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_mC34C7EE0C657A7A2ECD59A49D3C4119D7B351C8E_gshared (RuntimeArray * __this, int32_t ___index0, X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_mC34C7EE0C657A7A2ECD59A49D3C4119D7B351C8E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_mC34C7EE0C657A7A2ECD59A49D3C4119D7B351C8E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Single>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mAB37BBB9EF7D4C308D99207D279EC86DA722CA7C_gshared (RuntimeArray * __this, int32_t ___index0, float ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mAB37BBB9EF7D4C308D99207D279EC86DA722CA7C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mAB37BBB9EF7D4C308D99207D279EC86DA722CA7C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mA2AA8A2A95A3FEF70897324987502AD1FE53E6F0_gshared (RuntimeArray * __this, int32_t ___index0, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mA2AA8A2A95A3FEF70897324987502AD1FE53E6F0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_mA2AA8A2A95A3FEF70897324987502AD1FE53E6F0_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Threading.CancellationTokenRegistration>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m306EA880334E146139F06691FA435F36589DDB63_gshared (RuntimeArray * __this, int32_t ___index0, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m306EA880334E146139F06691FA435F36589DDB63_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m306EA880334E146139F06691FA435F36589DDB63_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Threading.Tasks.IndexRange>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisIndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251_m97803224AAFDEE1D4ABE86AF963C8D370BE7F5B0_gshared (RuntimeArray * __this, int32_t ___index0, IndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisIndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251_m97803224AAFDEE1D4ABE86AF963C8D370BE7F5B0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisIndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251_m97803224AAFDEE1D4ABE86AF963C8D370BE7F5B0_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.TimeSpan>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mF4A9D9A3E13AE916760E1657B1D4660B6A07AEBB_gshared (RuntimeArray * __this, int32_t ___index0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mF4A9D9A3E13AE916760E1657B1D4660B6A07AEBB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mF4A9D9A3E13AE916760E1657B1D4660B6A07AEBB_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.UInt16>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mA151CCECC244AE62A4B8B19078AEDE5BFD0717DC_gshared (RuntimeArray * __this, int32_t ___index0, uint16_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mA151CCECC244AE62A4B8B19078AEDE5BFD0717DC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mA151CCECC244AE62A4B8B19078AEDE5BFD0717DC_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.UInt16Enum>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mD3EC6C124E65BE8F0737D39BC922938073D5BDC6_gshared (RuntimeArray * __this, int32_t ___index0, uint16_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mD3EC6C124E65BE8F0737D39BC922938073D5BDC6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_mD3EC6C124E65BE8F0737D39BC922938073D5BDC6_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.UInt32>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m18E5BCFA5461B75371A4DB4699F58B1475EA38FF_gshared (RuntimeArray * __this, int32_t ___index0, uint32_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m18E5BCFA5461B75371A4DB4699F58B1475EA38FF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m18E5BCFA5461B75371A4DB4699F58B1475EA38FF_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.UInt32Enum>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mA2F7CF78455B07E081841B7C94161A3ABA89817B_gshared (RuntimeArray * __this, int32_t ___index0, uint32_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mA2F7CF78455B07E081841B7C94161A3ABA89817B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_mA2F7CF78455B07E081841B7C94161A3ABA89817B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.UInt64>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mA37D54F63F446397EF7403D2E47F9E498D2F845D_gshared (RuntimeArray * __this, int32_t ___index0, uint64_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mA37D54F63F446397EF7403D2E47F9E498D2F845D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mA37D54F63F446397EF7403D2E47F9E498D2F845D_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Xml.Schema.SequenceNode_SequenceConstructPosContext>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m59902BE357936A7D2C61F26C3E99E9FFB4515D8A_gshared (RuntimeArray * __this, int32_t ___index0, SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m59902BE357936A7D2C61F26C3E99E9FFB4515D8A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m59902BE357936A7D2C61F26C3E99E9FFB4515D8A_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Xml.XmlNamespaceManager_NamespaceDeclaration>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_mE3564ADC7AFC168B70B3AEEBBDB30F1C791D4712_gshared (RuntimeArray * __this, int32_t ___index0, NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_mE3564ADC7AFC168B70B3AEEBBDB30F1C791D4712_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_mE3564ADC7AFC168B70B3AEEBBDB30F1C791D4712_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Xml.XmlTextReaderImpl_ParsingState>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mC7B4F06520A4EEAFF045AF217D29F9A4AC243ED3_gshared (RuntimeArray * __this, int32_t ___index0, ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mC7B4F06520A4EEAFF045AF217D29F9A4AC243ED3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mC7B4F06520A4EEAFF045AF217D29F9A4AC243ED3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<TMPro.MaterialReference>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m080E94A7C7205907F8F346A15616AE2DF9FF433B_gshared (RuntimeArray * __this, int32_t ___index0, MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m080E94A7C7205907F8F346A15616AE2DF9FF433B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m080E94A7C7205907F8F346A15616AE2DF9FF433B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<TMPro.RichTextTagAttribute>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mFD51B3BE1ADDD9FD4C1B2EB187FC778A6208CD2E_gshared (RuntimeArray * __this, int32_t ___index0, RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mFD51B3BE1ADDD9FD4C1B2EB187FC778A6208CD2E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mFD51B3BE1ADDD9FD4C1B2EB187FC778A6208CD2E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<TMPro.TMP_CharacterInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB8D59B73D2EA88BECEF52DEF1FD5F3460E460150_gshared (RuntimeArray * __this, int32_t ___index0, TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB8D59B73D2EA88BECEF52DEF1FD5F3460E460150_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB8D59B73D2EA88BECEF52DEF1FD5F3460E460150_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<TMPro.TMP_FontWeightPair>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mB4ED3B109F5C7884C62CDBBF1F5C44786BF5D8AC_gshared (RuntimeArray * __this, int32_t ___index0, TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mB4ED3B109F5C7884C62CDBBF1F5C44786BF5D8AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mB4ED3B109F5C7884C62CDBBF1F5C44786BF5D8AC_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<TMPro.TMP_LineInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_mFE26E8EA4C9671C4DFB9DBFB8A3CE928D66CC46D_gshared (RuntimeArray * __this, int32_t ___index0, TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_mFE26E8EA4C9671C4DFB9DBFB8A3CE928D66CC46D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_mFE26E8EA4C9671C4DFB9DBFB8A3CE928D66CC46D_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<TMPro.TMP_LinkInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mC0137D127933CE8BD34F125A7DBE998123F98EB3_gshared (RuntimeArray * __this, int32_t ___index0, TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mC0137D127933CE8BD34F125A7DBE998123F98EB3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mC0137D127933CE8BD34F125A7DBE998123F98EB3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<TMPro.TMP_MeshInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mAAF13F4BC51D9C58DD9B74284E6269389937092F_gshared (RuntimeArray * __this, int32_t ___index0, TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mAAF13F4BC51D9C58DD9B74284E6269389937092F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mAAF13F4BC51D9C58DD9B74284E6269389937092F_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<TMPro.TMP_PageInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m3A2AB3FB93CFE99A986CFDA6D00F37E044A8C573_gshared (RuntimeArray * __this, int32_t ___index0, TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m3A2AB3FB93CFE99A986CFDA6D00F37E044A8C573_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m3A2AB3FB93CFE99A986CFDA6D00F37E044A8C573_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<TMPro.TMP_Text_UnicodeChar>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m48AEC387203A69552324E975B93C9AD12682A2F0_gshared (RuntimeArray * __this, int32_t ___index0, UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m48AEC387203A69552324E975B93C9AD12682A2F0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m48AEC387203A69552324E975B93C9AD12682A2F0_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<TMPro.TMP_WordInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_mCAFFB20C76EFFF6819170E1124DAB998D50387DB_gshared (RuntimeArray * __this, int32_t ___index0, TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_mCAFFB20C76EFFF6819170E1124DAB998D50387DB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_mCAFFB20C76EFFF6819170E1124DAB998D50387DB_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.BeforeRenderHelper_OrderBlock>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m88C1919D27F6B04E25EE64B03245DB35B5211870_gshared (RuntimeArray * __this, int32_t ___index0, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m88C1919D27F6B04E25EE64B03245DB35B5211870_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m88C1919D27F6B04E25EE64B03245DB35B5211870_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.BoneWeight>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisBoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1_m1D025D9015A8EADB44F77F010EC2FE585B21F02D_gshared (RuntimeArray * __this, int32_t ___index0, BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisBoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1_m1D025D9015A8EADB44F77F010EC2FE585B21F02D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisBoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1_m1D025D9015A8EADB44F77F010EC2FE585B21F02D_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Bounds>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_m4AFED5E146200A6855FA67408DE761A45116DEF5_gshared (RuntimeArray * __this, int32_t ___index0, Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_m4AFED5E146200A6855FA67408DE761A45116DEF5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_m4AFED5E146200A6855FA67408DE761A45116DEF5_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Color32>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m6DA9330FD631DC94510393402C2F75A6CA557E00_gshared (RuntimeArray * __this, int32_t ___index0, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m6DA9330FD631DC94510393402C2F75A6CA557E00_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m6DA9330FD631DC94510393402C2F75A6CA557E00_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Color>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mF502555E1F2540AED54DA5ACF2EFF7A2605E86AC_gshared (RuntimeArray * __this, int32_t ___index0, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mF502555E1F2540AED54DA5ACF2EFF7A2605E86AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mF502555E1F2540AED54DA5ACF2EFF7A2605E86AC_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.CombineInstance>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisCombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28_mE633650608F60D8C4D2D4EB57C7A5B49297D67DA_gshared (RuntimeArray * __this, int32_t ___index0, CombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisCombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28_mE633650608F60D8C4D2D4EB57C7A5B49297D67DA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisCombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28_mE633650608F60D8C4D2D4EB57C7A5B49297D67DA_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.ContactPoint2D>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m1F2E7E0302C817DECFA7BB2827614250B76DA075_gshared (RuntimeArray * __this, int32_t ___index0, ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m1F2E7E0302C817DECFA7BB2827614250B76DA075_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m1F2E7E0302C817DECFA7BB2827614250B76DA075_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.ContactPoint>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_mBD2212C6C5C4AE60EA0795979993BA2A26CE4E8B_gshared (RuntimeArray * __this, int32_t ___index0, ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_mBD2212C6C5C4AE60EA0795979993BA2A26CE4E8B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_mBD2212C6C5C4AE60EA0795979993BA2A26CE4E8B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.EventSystems.RaycastResult>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m7E00C777837180B0E0E0E7E2E008D0239C31BBB5_gshared (RuntimeArray * __this, int32_t ___index0, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m7E00C777837180B0E0E0E7E2E008D0239C31BBB5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m7E00C777837180B0E0E0E7E2E008D0239C31BBB5_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF5D0703796BCE5A44665238F9AB08E5BB84A4AC6_gshared (RuntimeArray * __this, int32_t ___index0, PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF5D0703796BCE5A44665238F9AB08E5BB84A4AC6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_mF5D0703796BCE5A44665238F9AB08E5BB84A4AC6_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m98D7653CFEB82E7CF33FFD863491C990BE846302_gshared (RuntimeArray * __this, int32_t ___index0, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m98D7653CFEB82E7CF33FFD863491C990BE846302_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m98D7653CFEB82E7CF33FFD863491C990BE846302_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.FrameTiming>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisFrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC_mB3F8892B8FBC3C798668A4F727C59A991554DBB5_gshared (RuntimeArray * __this, int32_t ___index0, FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisFrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC_mB3F8892B8FBC3C798668A4F727C59A991554DBB5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisFrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC_mB3F8892B8FBC3C798668A4F727C59A991554DBB5_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.GradientAlphaKey>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisGradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_m184988B0186FD32114AFFE0FFA6D1A52F75B39D1_gshared (RuntimeArray * __this, int32_t ___index0, GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisGradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_m184988B0186FD32114AFFE0FFA6D1A52F75B39D1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisGradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_m184988B0186FD32114AFFE0FFA6D1A52F75B39D1_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Keyframe>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m814415ACE0DDA6F9C3599F01F4BCCFF52739BEDF_gshared (RuntimeArray * __this, int32_t ___index0, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m814415ACE0DDA6F9C3599F01F4BCCFF52739BEDF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m814415ACE0DDA6F9C3599F01F4BCCFF52739BEDF_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.LayerMask>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m43590D8BDBACC116DB476E0B9BEAB3AB720A40AF_gshared (RuntimeArray * __this, int32_t ___index0, LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m43590D8BDBACC116DB476E0B9BEAB3AB720A40AF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m43590D8BDBACC116DB476E0B9BEAB3AB720A40AF_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Matrix4x4>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m73B391F1899670C483DE38BB50FF2E693835DB1A_gshared (RuntimeArray * __this, int32_t ___index0, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m73B391F1899670C483DE38BB50FF2E693835DB1A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m73B391F1899670C483DE38BB50FF2E693835DB1A_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.ParticleSystem_Particle>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mA9D5F62A1A9186A23DE150EDB18117D53D3742CC_gshared (RuntimeArray * __this, int32_t ___index0, Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mA9D5F62A1A9186A23DE150EDB18117D53D3742CC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mA9D5F62A1A9186A23DE150EDB18117D53D3742CC_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Plane>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m194B92BDF48E9D276C6442C3C1BF073C821DBBC4_gshared (RuntimeArray * __this, int32_t ___index0, Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m194B92BDF48E9D276C6442C3C1BF073C821DBBC4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_m194B92BDF48E9D276C6442C3C1BF073C821DBBC4_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Playables.PlayableBinding>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m84D093DCACA5ECE7F072D319DD1210DFE9800023_gshared (RuntimeArray * __this, int32_t ___index0, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m84D093DCACA5ECE7F072D319DD1210DFE9800023_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m84D093DCACA5ECE7F072D319DD1210DFE9800023_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Quaternion>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_m1948E7097EB6B4EA248736E3FC2C196542E09CED_gshared (RuntimeArray * __this, int32_t ___index0, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_m1948E7097EB6B4EA248736E3FC2C196542E09CED_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_m1948E7097EB6B4EA248736E3FC2C196542E09CED_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Ray>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_mE4AFCA29808B499F97910F7FDC966BE5D9551C18_gshared (RuntimeArray * __this, int32_t ___index0, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_mE4AFCA29808B499F97910F7FDC966BE5D9551C18_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_mE4AFCA29808B499F97910F7FDC966BE5D9551C18_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.RaycastHit2D>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m308D20824E0EEE9179C05DCA5121423EDB625B14_gshared (RuntimeArray * __this, int32_t ___index0, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m308D20824E0EEE9179C05DCA5121423EDB625B14_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m308D20824E0EEE9179C05DCA5121423EDB625B14_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.RaycastHit>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m047B94B06ED6514328636242E434382F92CDFE70_gshared (RuntimeArray * __this, int32_t ___index0, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m047B94B06ED6514328636242E434382F92CDFE70_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m047B94B06ED6514328636242E434382F92CDFE70_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.SceneManagement.Scene>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_m4DE8DD68662123D5464249FD974871C0A7C2DB83_gshared (RuntimeArray * __this, int32_t ___index0, Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_m4DE8DD68662123D5464249FD974871C0A7C2DB83_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_m4DE8DD68662123D5464249FD974871C0A7C2DB83_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.SendMouseEvents_HitInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_mB217196A981DF20A78F821A5676196C3E1EB852B_gshared (RuntimeArray * __this, int32_t ___index0, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_mB217196A981DF20A78F821A5676196C3E1EB852B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_mB217196A981DF20A78F821A5676196C3E1EB852B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.TextCore.GlyphRect>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_mC67856AB0B5F4907AFDBDFB5A1C21F6017A117BB_gshared (RuntimeArray * __this, int32_t ___index0, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_mC67856AB0B5F4907AFDBDFB5A1C21F6017A117BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_mC67856AB0B5F4907AFDBDFB5A1C21F6017A117BB_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m31EED9C8136B7BF065A07E548F83E3142FF324C8_gshared (RuntimeArray * __this, int32_t ___index0, GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m31EED9C8136B7BF065A07E548F83E3142FF324C8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m31EED9C8136B7BF065A07E548F83E3142FF324C8_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_mFCE80587C2394A8FEDD0A53D7AFB37F8A258C58C_gshared (RuntimeArray * __this, int32_t ___index0, GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_mFCE80587C2394A8FEDD0A53D7AFB37F8A258C58C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_mFCE80587C2394A8FEDD0A53D7AFB37F8A258C58C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Touch>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTouch_t806752C775BA713A91B6588A07CA98417CABC003_m4252D084ADE5907EFD1EFDA867679C687B2D4CEE_gshared (RuntimeArray * __this, int32_t ___index0, Touch_t806752C775BA713A91B6588A07CA98417CABC003 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTouch_t806752C775BA713A91B6588A07CA98417CABC003_m4252D084ADE5907EFD1EFDA867679C687B2D4CEE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTouch_t806752C775BA713A91B6588A07CA98417CABC003_m4252D084ADE5907EFD1EFDA867679C687B2D4CEE_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.UI.ColorBlock>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m750BF7E84A41DDD54D6C89E22CB616187405A81C_gshared (RuntimeArray * __this, int32_t ___index0, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m750BF7E84A41DDD54D6C89E22CB616187405A81C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m750BF7E84A41DDD54D6C89E22CB616187405A81C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.UI.Navigation>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m96A7775C85D62573DF6DE140C929E9CA0CA2F34C_gshared (RuntimeArray * __this, int32_t ___index0, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m96A7775C85D62573DF6DE140C929E9CA0CA2F34C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m96A7775C85D62573DF6DE140C929E9CA0CA2F34C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.UI.SpriteState>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m8A62CF16FEBC3BDA1D36E4B4FBE4BC40A55DCF83_gshared (RuntimeArray * __this, int32_t ___index0, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m8A62CF16FEBC3BDA1D36E4B4FBE4BC40A55DCF83_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m8A62CF16FEBC3BDA1D36E4B4FBE4BC40A55DCF83_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.UICharInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m67D7F1E3AF7644990858C7427636DFF846CEF0B3_gshared (RuntimeArray * __this, int32_t ___index0, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m67D7F1E3AF7644990858C7427636DFF846CEF0B3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m67D7F1E3AF7644990858C7427636DFF846CEF0B3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.UILineInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m2C25B046CAD3442CA5EB374C6FF6A77DDB905901_gshared (RuntimeArray * __this, int32_t ___index0, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m2C25B046CAD3442CA5EB374C6FF6A77DDB905901_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m2C25B046CAD3442CA5EB374C6FF6A77DDB905901_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.UIVertex>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m799069358A4B82CF630AF60AC897C6780872B1B3_gshared (RuntimeArray * __this, int32_t ___index0, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m799069358A4B82CF630AF60AC897C6780872B1B3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m799069358A4B82CF630AF60AC897C6780872B1B3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.UnitySynchronizationContext_WorkRequest>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mBEBE18F36496F5A8B9D865FB0B5AEE286734BE33_gshared (RuntimeArray * __this, int32_t ___index0, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mBEBE18F36496F5A8B9D865FB0B5AEE286734BE33_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_mBEBE18F36496F5A8B9D865FB0B5AEE286734BE33_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Vector2>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m90788E74415998C6339BE4925AFEC633123F3D3E_gshared (RuntimeArray * __this, int32_t ___index0, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m90788E74415998C6339BE4925AFEC633123F3D3E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m90788E74415998C6339BE4925AFEC633123F3D3E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Vector3>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m4D3A633FA6A0EB506015A5739DF97EC8AB45D707_gshared (RuntimeArray * __this, int32_t ___index0, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m4D3A633FA6A0EB506015A5739DF97EC8AB45D707_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m4D3A633FA6A0EB506015A5739DF97EC8AB45D707_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Vector4>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m8FF6DB071540907741521B310F9665D58F16D683_gshared (RuntimeArray * __this, int32_t ___index0, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m8FF6DB071540907741521B310F9665D58F16D683_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m8FF6DB071540907741521B310F9665D58F16D683_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.Windows.Speech.SemanticMeaning>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_mEEACCCF9FB82D93E9A44A791D94EE07786AC3D79_gshared (RuntimeArray * __this, int32_t ___index0, SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_mEEACCCF9FB82D93E9A44A791D94EE07786AC3D79_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_mEEACCCF9FB82D93E9A44A791D94EE07786AC3D79_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.XR.WSA.Input.InteractionSourceState>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisInteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_mE9D9D785677750CB2DA1C0D198ECF6BD26C6F2C2_gshared (RuntimeArray * __this, int32_t ___index0, InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisInteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_mE9D9D785677750CB2DA1C0D198ECF6BD26C6F2C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisInteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_mE9D9D785677750CB2DA1C0D198ECF6BD26C6F2C2_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<UnityEngine.XR.WSA.SurfaceId>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_mF80B437879D375253A37A95DD1E03BAE1BD556AD_gshared (RuntimeArray * __this, int32_t ___index0, SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_mF80B437879D375253A37A95DD1E03BAE1BD556AD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_mF80B437879D375253A37A95DD1E03BAE1BD556AD_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.DateTime>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisDateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_mE5952C9504F7CA2EC544180B976850ECB6D58550_gshared (RuntimeArray * __this, int32_t ___index0, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisDateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_mE5952C9504F7CA2EC544180B976850ECB6D58550_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisDateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_mE5952C9504F7CA2EC544180B976850ECB6D58550_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.EventRegistrationToken>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_m1B4EB755BEFF4B018B3BB4D11655BD5CB55A69D8_gshared (RuntimeArray * __this, int32_t ___index0, EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_m1B4EB755BEFF4B018B3BB4D11655BD5CB55A69D8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisEventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_m1B4EB755BEFF4B018B3BB4D11655BD5CB55A69D8_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.FoundationContract>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisFoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_m2CD453F38CA167C631847FDCCEFA78B4DAE53D45_gshared (RuntimeArray * __this, int32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisFoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_m2CD453F38CA167C631847FDCCEFA78B4DAE53D45_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisFoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_m2CD453F38CA167C631847FDCCEFA78B4DAE53D45_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.HResult>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisHResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_m3C156AE08D59858A0283BEEF262A8749D5D8914C_gshared (RuntimeArray * __this, int32_t ___index0, HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisHResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_m3C156AE08D59858A0283BEEF262A8749D5D8914C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisHResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_m3C156AE08D59858A0283BEEF262A8749D5D8914C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.Numerics.Matrix4x4>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisMatrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_m194AC3D772CAAAE60DE2D96CF32453D8629FE362_gshared (RuntimeArray * __this, int32_t ___index0, Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisMatrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_m194AC3D772CAAAE60DE2D96CF32453D8629FE362_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisMatrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_m194AC3D772CAAAE60DE2D96CF32453D8629FE362_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.Numerics.Quaternion>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisQuaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_m37EBBBAB3721A607752BD7DB64B166FDB6AC3DAC_gshared (RuntimeArray * __this, int32_t ___index0, Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisQuaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_m37EBBBAB3721A607752BD7DB64B166FDB6AC3DAC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisQuaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_m37EBBBAB3721A607752BD7DB64B166FDB6AC3DAC_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.Numerics.Vector3>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisVector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_mFC8283B175483A285DD50219680D3D407866131B_gshared (RuntimeArray * __this, int32_t ___index0, Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisVector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_mFC8283B175483A285DD50219680D3D407866131B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisVector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_mFC8283B175483A285DD50219680D3D407866131B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.Point>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisPoint_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_m8DD5E07A116C2DE3ED1FFB55C6B714ECAAE4AC56_gshared (RuntimeArray * __this, int32_t ___index0, Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisPoint_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_m8DD5E07A116C2DE3ED1FFB55C6B714ECAAE4AC56_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisPoint_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_m8DD5E07A116C2DE3ED1FFB55C6B714ECAAE4AC56_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.Point>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisPoint_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC_m91D87ECA71D8932F37A51611F3627F17DFF19EBF_gshared (RuntimeArray * __this, int32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisPoint_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC_m91D87ECA71D8932F37A51611F3627F17DFF19EBF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisPoint_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC_m91D87ECA71D8932F37A51611F3627F17DFF19EBF_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.Rect>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisRect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_mBDAC8697C665E2F56EE66F4249A1656C43890C23_gshared (RuntimeArray * __this, int32_t ___index0, Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisRect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_mBDAC8697C665E2F56EE66F4249A1656C43890C23_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisRect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_mBDAC8697C665E2F56EE66F4249A1656C43890C23_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.Rect>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisRect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0_m5A6A9924A5E66E67AACE5E684C882976B3FDB463_gshared (RuntimeArray * __this, int32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisRect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0_m5A6A9924A5E66E67AACE5E684C882976B3FDB463_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisRect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0_m5A6A9924A5E66E67AACE5E684C882976B3FDB463_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.Size>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSize_tBE9F75FCA10276DC3998237A8906733B64FB75A2_m58738072DC6A9F50C7B358FFAD9B698F92CE7E3B_gshared (RuntimeArray * __this, int32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSize_tBE9F75FCA10276DC3998237A8906733B64FB75A2_m58738072DC6A9F50C7B358FFAD9B698F92CE7E3B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSize_tBE9F75FCA10276DC3998237A8906733B64FB75A2_m58738072DC6A9F50C7B358FFAD9B698F92CE7E3B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.Size>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSize_t4766FF009097CE547F699B69250246058DA664D9_m78388965EF938E8AD7C2FD0F2D69C76CAFE387AE_gshared (RuntimeArray * __this, int32_t ___index0, Size_t4766FF009097CE547F699B69250246058DA664D9 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSize_t4766FF009097CE547F699B69250246058DA664D9_m78388965EF938E8AD7C2FD0F2D69C76CAFE387AE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSize_t4766FF009097CE547F699B69250246058DA664D9_m78388965EF938E8AD7C2FD0F2D69C76CAFE387AE_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.TimeSpan>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTimeSpan_tD18885B289077804D4E82931E68E84181C072755_m67950908F11BD50C2FDF345075A01E85F921EC53_gshared (RuntimeArray * __this, int32_t ___index0, TimeSpan_tD18885B289077804D4E82931E68E84181C072755 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTimeSpan_tD18885B289077804D4E82931E68E84181C072755_m67950908F11BD50C2FDF345075A01E85F921EC53_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTimeSpan_tD18885B289077804D4E82931E68E84181C072755_m67950908F11BD50C2FDF345075A01E85F921EC53_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Foundation.UniversalApiContract>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisUniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_mEC93B1104225E1F169D30DCB92728D5B566C8306_gshared (RuntimeArray * __this, int32_t ___index0, UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisUniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_mEC93B1104225E1F169D30DCB92728D5B566C8306_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisUniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_mEC93B1104225E1F169D30DCB92728D5B566C8306_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Perception.People.HandMeshVertex>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisHandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_m68031079D408D08ADF4AF87B3C03655EAC7C645E_gshared (RuntimeArray * __this, int32_t ___index0, HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisHandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_m68031079D408D08ADF4AF87B3C03655EAC7C645E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisHandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_m68031079D408D08ADF4AF87B3C03655EAC7C645E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Perception.People.JointPose>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisJointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_mAD10C1CDA876833A05DE67042DF13294A8D5E997_gshared (RuntimeArray * __this, int32_t ___index0, JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisJointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_mAD10C1CDA876833A05DE67042DF13294A8D5E997_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisJointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_mAD10C1CDA876833A05DE67042DF13294A8D5E997_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.Perception.Spatial.SpatialRay>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_m83C3C32ED09DC632A2DBCC70161ABF8C902D2ECD_gshared (RuntimeArray * __this, int32_t ___index0, SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_m83C3C32ED09DC632A2DBCC70161ABF8C902D2ECD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisSpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_m83C3C32ED09DC632A2DBCC70161ABF8C902D2ECD_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Windows.UI.Xaml.Interop.TypeName>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisTypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_m836C90C786D993728CE05DDD980F21AFC2626946_gshared (RuntimeArray * __this, int32_t ___index0, TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisTypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_m836C90C786D993728CE05DDD980F21AFC2626946_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__Insert_TisTypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_m836C90C786D993728CE05DDD980F21AFC2626946_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__set_Item<MS.Internal.Xml.Cache.XPathNode>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mFE35EEA664F4AFF1B9DA92B5656485E9655C4DCA_gshared (RuntimeArray * __this, int32_t ___index0, XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mFE35EEA664F4AFF1B9DA92B5656485E9655C4DCA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisXPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_mFE35EEA664F4AFF1B9DA92B5656485E9655C4DCA_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 L_6 = ___item1;
XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 *)(XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<MS.Internal.Xml.Cache.XPathNodeRef>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_mA19E1C4BB875ED58BB61451E5B0EB428F7A93576_gshared (RuntimeArray * __this, int32_t ___index0, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_mA19E1C4BB875ED58BB61451E5B0EB428F7A93576_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisXPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_mA19E1C4BB875ED58BB61451E5B0EB428F7A93576_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 L_6 = ___item1;
XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 *)(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisAudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21_mFD1168404FCCA86916CFD0BE959BD0FACF9E53E6_gshared (RuntimeArray * __this, int32_t ___index0, AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisAudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21_mFD1168404FCCA86916CFD0BE959BD0FACF9E53E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisAudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21_mFD1168404FCCA86916CFD0BE959BD0FACF9E53E6_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21 L_6 = ___item1;
AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21 *)(AudioLoFiFilterSettings_t0D2C05E0AA001E266BCD21DFED083AAC3A3DFF21 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.BaseEventSystem_EventHandlerEntry>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_mBF8B8C343DABC0A72786A6D9FB854C194B5D6ADF_gshared (RuntimeArray * __this, int32_t ___index0, EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_mBF8B8C343DABC0A72786A6D9FB854C194B5D6ADF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_mBF8B8C343DABC0A72786A6D9FB854C194B5D6ADF_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 L_6 = ___item1;
EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 *)(EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Boundary.Edge>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEdge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_mE92E1E4C0F77069369E8297E9CD1C5E9C25D426E_gshared (RuntimeArray * __this, int32_t ___index0, Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEdge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_mE92E1E4C0F77069369E8297E9CD1C5E9C25D426E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEdge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_mE92E1E4C0F77069369E8297E9CD1C5E9C25D426E_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D L_6 = ___item1;
Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D *)(Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.CameraSystem.MixedRealityCameraSettingsConfiguration>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F_mC390F048FD6434EADE2C2D785A34FE831AB9792E_gshared (RuntimeArray * __this, int32_t ___index0, MixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F_mC390F048FD6434EADE2C2D785A34FE831AB9792E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F_mC390F048FD6434EADE2C2D785A34FE831AB9792E_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
MixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F L_6 = ___item1;
MixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (MixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F *)(MixedRealityCameraSettingsConfiguration_t852153BDF75B66256441DE78702A02A2AFF36B2F *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Diagnostics.MixedRealityToolkitVisualProfiler_FrameRateColor>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisFrameRateColor_t12534EF70F7B693ED9FA0166B31144F5CD48AFBD_m531C9987041346E252D0B9A6A9A3FCBD075CD242_gshared (RuntimeArray * __this, int32_t ___index0, FrameRateColor_t12534EF70F7B693ED9FA0166B31144F5CD48AFBD ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisFrameRateColor_t12534EF70F7B693ED9FA0166B31144F5CD48AFBD_m531C9987041346E252D0B9A6A9A3FCBD075CD242_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisFrameRateColor_t12534EF70F7B693ED9FA0166B31144F5CD48AFBD_m531C9987041346E252D0B9A6A9A3FCBD075CD242_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
FrameRateColor_t12534EF70F7B693ED9FA0166B31144F5CD48AFBD L_6 = ___item1;
FrameRateColor_t12534EF70F7B693ED9FA0166B31144F5CD48AFBD L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (FrameRateColor_t12534EF70F7B693ED9FA0166B31144F5CD48AFBD *)(FrameRateColor_t12534EF70F7B693ED9FA0166B31144F5CD48AFBD *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Experimental.Utilities.WorldAnchorManager_AnchorAttachmentInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisAnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA_m4A2AB39A47EED417B333C00BA23EEE40DDE7B0B7_gshared (RuntimeArray * __this, int32_t ___index0, AnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisAnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA_m4A2AB39A47EED417B333C00BA23EEE40DDE7B0B7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisAnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA_m4A2AB39A47EED417B333C00BA23EEE40DDE7B0B7_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
AnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA L_6 = ___item1;
AnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (AnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA *)(AnchorAttachmentInfo_t943AF31788A22BE419CA043DF2B721037E0795FA *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.InputActionRuleDigital>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39_m8C0DCA5DE23B46836722507D1EC044BCC02918B8_gshared (RuntimeArray * __this, int32_t ___index0, InputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39_m8C0DCA5DE23B46836722507D1EC044BCC02918B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39_m8C0DCA5DE23B46836722507D1EC044BCC02918B8_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
InputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39 L_6 = ___item1;
InputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (InputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39 *)(InputActionRuleDigital_tB38CFF835EC6DEDDAE493F24ABB9435F0C2E0F39 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.InputActionRuleDualAxis>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47_mD1D7688ED465893401587F51C6E86E6B0807411E_gshared (RuntimeArray * __this, int32_t ___index0, InputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47_mD1D7688ED465893401587F51C6E86E6B0807411E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47_mD1D7688ED465893401587F51C6E86E6B0807411E_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
InputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47 L_6 = ___item1;
InputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (InputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47 *)(InputActionRuleDualAxis_tABCD7C4BA436C1D88CFCD7B4EF3850ECB015CB47 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.InputActionRulePoseAxis>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB_m422C87A1088E46B8DAB8371E279DAE596A39C480_gshared (RuntimeArray * __this, int32_t ___index0, InputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB_m422C87A1088E46B8DAB8371E279DAE596A39C480_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB_m422C87A1088E46B8DAB8371E279DAE596A39C480_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
InputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB L_6 = ___item1;
InputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (InputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB *)(InputActionRulePoseAxis_tF409AB8D153EC1DE00F17832B522FFD376FCF2AB *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.InputActionRuleQuaternionAxis>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6_mD8ED31FFD16F92D91FE94FD97F8CA173F9289504_gshared (RuntimeArray * __this, int32_t ___index0, InputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6_mD8ED31FFD16F92D91FE94FD97F8CA173F9289504_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6_mD8ED31FFD16F92D91FE94FD97F8CA173F9289504_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
InputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6 L_6 = ___item1;
InputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (InputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6 *)(InputActionRuleQuaternionAxis_t09B22A90E70AB3888D4CA2661FCC5139E625B6C6 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.InputActionRuleSingleAxis>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661_m0267C40A2A6B7E2F1E71B6B6D8EF1FC6D10968BC_gshared (RuntimeArray * __this, int32_t ___index0, InputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661_m0267C40A2A6B7E2F1E71B6B6D8EF1FC6D10968BC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661_m0267C40A2A6B7E2F1E71B6B6D8EF1FC6D10968BC_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
InputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661 L_6 = ___item1;
InputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (InputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661 *)(InputActionRuleSingleAxis_t3BF3086675EF4986FFD82FF79D6871F349D48661 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.InputActionRuleVectorAxis>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67_m222628D7583C15430363A7BC97657EDCDC7F0210_gshared (RuntimeArray * __this, int32_t ___index0, InputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67_m222628D7583C15430363A7BC97657EDCDC7F0210_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67_m222628D7583C15430363A7BC97657EDCDC7F0210_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
InputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67 L_6 = ___item1;
InputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (InputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67 *)(InputActionRuleVectorAxis_t60D7C49612B2F5C6E0BAA0660BC3E0DF5B9F1C67 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.KeywordAndResponse>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962_mCF49042570AD5E7E18F3D6758E018CE6E17513C6_gshared (RuntimeArray * __this, int32_t ___index0, KeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962_mCF49042570AD5E7E18F3D6758E018CE6E17513C6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962_mCF49042570AD5E7E18F3D6758E018CE6E17513C6_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962 L_6 = ___item1;
KeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962 *)(KeywordAndResponse_t52BCAB04D9C4B6DB9FC43AA1AB0B57408BA6A962 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.MeshCursor_MeshCursorDatum>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE_m276A04DA59EA6081EB36E296CC48AD1042DD68C2_gshared (RuntimeArray * __this, int32_t ___index0, MeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE_m276A04DA59EA6081EB36E296CC48AD1042DD68C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE_m276A04DA59EA6081EB36E296CC48AD1042DD68C2_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
MeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE L_6 = ___item1;
MeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (MeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE *)(MeshCursorDatum_t32F705F843704F7CA71B74254532872E1A4C5EFE *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerMapping>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C_m835F4CD404793FDA722480F5506294637DA28C5C_gshared (RuntimeArray * __this, int32_t ___index0, MixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C_m835F4CD404793FDA722480F5506294637DA28C5C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C_m835F4CD404793FDA722480F5506294637DA28C5C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
MixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C L_6 = ___item1;
MixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (MixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C *)(MixedRealityControllerMapping_tF69D1391F414B595E967C9573B8EF3A8CFE0C13C *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.MixedRealityControllerVisualizationSetting>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38_m39341CE378484FAB0C001D0802C23A8719765C9C_gshared (RuntimeArray * __this, int32_t ___index0, MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38_m39341CE378484FAB0C001D0802C23A8719765C9C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38_m39341CE378484FAB0C001D0802C23A8719765C9C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38 L_6 = ___item1;
MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38 *)(MixedRealityControllerVisualizationSetting_tCDF745D9C58DB3D7CF38F02BA1622F0E879E9B38 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.MixedRealityGestureMapping>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D_m4430AB7A66F2E2D90A71965C81616322D0672C42_gshared (RuntimeArray * __this, int32_t ___index0, MixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D_m4430AB7A66F2E2D90A71965C81616322D0672C42_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D_m4430AB7A66F2E2D90A71965C81616322D0672C42_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
MixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D L_6 = ___item1;
MixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (MixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D *)(MixedRealityGestureMapping_tD31D2F4503989BE9493C8C8F835901A4C0EC771D *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_m347F8027CCCB02BD89CF91F339D32B2CC1B56D95_gshared (RuntimeArray * __this, int32_t ___index0, MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_m347F8027CCCB02BD89CF91F339D32B2CC1B56D95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_m347F8027CCCB02BD89CF91F339D32B2CC1B56D95_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 L_6 = ___item1;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 *)(MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.MixedRealityInputDataProviderConfiguration>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88_mC3425D9A2DE73ABF02641386FF9086965FD82125_gshared (RuntimeArray * __this, int32_t ___index0, MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88_mC3425D9A2DE73ABF02641386FF9086965FD82125_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88_mC3425D9A2DE73ABF02641386FF9086965FD82125_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88 L_6 = ___item1;
MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88 *)(MixedRealityInputDataProviderConfiguration_t57425B585BCCDB29913B17979632C146BA13DF88 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.ObjectCursor_ObjectCursorDatum>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE_m39AE1B0F0E20E37B18003693B2FB7C1D94C9135E_gshared (RuntimeArray * __this, int32_t ___index0, ObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE_m39AE1B0F0E20E37B18003693B2FB7C1D94C9135E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE_m39AE1B0F0E20E37B18003693B2FB7C1D94C9135E_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
ObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE L_6 = ___item1;
ObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE *)(ObjectCursorDatum_tB247D684A965D591706DF322528DFAC9AE4C9BDE *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.PointerOption>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisPointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7_m7DA5735D9694060DE34BEE85736120E45935B84B_gshared (RuntimeArray * __this, int32_t ___index0, PointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisPointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7_m7DA5735D9694060DE34BEE85736120E45935B84B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisPointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7_m7DA5735D9694060DE34BEE85736120E45935B84B_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
PointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7 L_6 = ___item1;
PointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (PointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7 *)(PointerOption_t45D589489410654B8E3BB749A0C524B22540CAB7 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.SpeechCommands>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11_m270A4A3E498D6E5FDFAE36E233D0D21F959A6EB5_gshared (RuntimeArray * __this, int32_t ___index0, SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11_m270A4A3E498D6E5FDFAE36E233D0D21F959A6EB5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11_m270A4A3E498D6E5FDFAE36E233D0D21F959A6EB5_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11 L_6 = ___item1;
SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11 *)(SpeechCommands_t118A61B5F373C8C01323BFC936BB7CC9F05C7E11 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Input.SpriteCursor_SpriteCursorDatum>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790_m7182C2DC8460815645BE1645293F85648C7E7793_gshared (RuntimeArray * __this, int32_t ___index0, SpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790_m7182C2DC8460815645BE1645293F85648C7E7793_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790_m7182C2DC8460815645BE1645293F85648C7E7793_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
SpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790 L_6 = ___item1;
SpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (SpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790 *)(SpriteCursorDatum_t6FB829FC559BB109D678BC07D75982261B785790 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.MixedRealityServiceConfiguration>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D_m94DA721AA1DBC1F16AB9CCAD0ABCB74D028917D6_gshared (RuntimeArray * __this, int32_t ___index0, MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D_m94DA721AA1DBC1F16AB9CCAD0ABCB74D028917D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D_m94DA721AA1DBC1F16AB9CCAD0ABCB74D028917D6_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D L_6 = ___item1;
MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D *)(MixedRealityServiceConfiguration_t7CF40F89F0B67415C8B3B46E81DB26B75284E57D *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Physics.RayStep>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisRayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_mB22D08523A5781BAE12A72EE3BD2CC1A3C3C0FB9_gshared (RuntimeArray * __this, int32_t ___index0, RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisRayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_mB22D08523A5781BAE12A72EE3BD2CC1A3C3C0FB9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisRayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B_mB22D08523A5781BAE12A72EE3BD2CC1A3C3C0FB9_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B L_6 = ___item1;
RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B *)(RayStep_tD600880A950E7AD2CC628F821E4C9936DEAA262B *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_m69D96BD6513828B7C0D73653D7D5F3E723998F25_gshared (RuntimeArray * __this, int32_t ___index0, SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_m69D96BD6513828B7C0D73653D7D5F3E723998F25_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_m69D96BD6513828B7C0D73653D7D5F3E723998F25_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE L_6 = ___item1;
SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE *)(SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.SpatialAwareness.MixedRealitySpatialObserverConfiguration>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3_m86189513A9239CCD556E45888D8B1B70A3EC549F_gshared (RuntimeArray * __this, int32_t ___index0, MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3_m86189513A9239CCD556E45888D8B1B70A3EC549F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3_m86189513A9239CCD556E45888D8B1B70A3EC549F_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3 L_6 = ___item1;
MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3 *)(MixedRealitySpatialObserverConfiguration_t7E12C5058E1E5B12622B646007E936D0AEDEFCB3 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_m843A34C763A5BF86E4EBC175C268B026659938FE_gshared (RuntimeArray * __this, int32_t ___index0, BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_m843A34C763A5BF86E4EBC175C268B026659938FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_m843A34C763A5BF86E4EBC175C268B026659938FE_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 L_6 = ___item1;
BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 *)(BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.UI.ManipulationHandler_PointerData>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisPointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4_mA5D5CD246276E313BF408D26B0352EBD1958303C_gshared (RuntimeArray * __this, int32_t ___index0, PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisPointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4_mA5D5CD246276E313BF408D26B0352EBD1958303C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisPointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4_mA5D5CD246276E313BF408D26B0352EBD1958303C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 L_6 = ___item1;
PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 *)(PointerData_tCA87EC0989560B4660B77ED6A02912E3FAACF2C4 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.UI.ShaderProperties>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_mD109D1A97E5233346D492F2EFD3BC84CDDFA32C3_gshared (RuntimeArray * __this, int32_t ___index0, ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_mD109D1A97E5233346D492F2EFD3BC84CDDFA32C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_mD109D1A97E5233346D492F2EFD3BC84CDDFA32C3_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 L_6 = ___item1;
ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 *)(ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_m10BE16A7486494F7151D0D2F4F821A022FF79319_gshared (RuntimeArray * __this, int32_t ___index0, ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_m10BE16A7486494F7151D0D2F4F821A022FF79319_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_m10BE16A7486494F7151D0D2F4F821A022FF79319_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A L_6 = ___item1;
ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A *)(ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Utilities.AnimatorParameter>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisAnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B_m088DA3C871A7B097F083ECD772CDA3024AE3980C_gshared (RuntimeArray * __this, int32_t ___index0, AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisAnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B_m088DA3C871A7B097F083ECD772CDA3024AE3980C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisAnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B_m088DA3C871A7B097F083ECD772CDA3024AE3980C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B L_6 = ___item1;
AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B *)(AnimatorParameter_t5CAF630F90E53D8CFD8FC3130D487174209B4D7B *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Utilities.ArticulatedHandPose_ArticulatedHandPoseItem>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_mE6EC1B2A8B3B1DFE4123CC2F8EE7CEED70EB3FBA_gshared (RuntimeArray * __this, int32_t ___index0, ArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_mE6EC1B2A8B3B1DFE4123CC2F8EE7CEED70EB3FBA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1_mE6EC1B2A8B3B1DFE4123CC2F8EE7CEED70EB3FBA_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
ArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1 L_6 = ___item1;
ArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1 *)(ArticulatedHandPoseItem_t371D5DF51C5F2EB98A3739D79317506A23AFE3D1 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m2FC551D5E554E22F790C6D8FBCE0916B20316832_gshared (RuntimeArray * __this, int32_t ___index0, InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m2FC551D5E554E22F790C6D8FBCE0916B20316832_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m2FC551D5E554E22F790C6D8FBCE0916B20316832_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 L_6 = ___item1;
InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 *)(InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_m97F66EE771D491AB817653B7AD475525C02B276A_gshared (RuntimeArray * __this, int32_t ___index0, MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_m97F66EE771D491AB817653B7AD475525C02B276A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8_m97F66EE771D491AB817653B7AD475525C02B276A_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 L_6 = ___item1;
MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 *)(MixedRealityPose_t5F81F81CD99FCC1AD1AC2CC9EC5515A8BD8BA3E8 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Microsoft.MixedReality.Toolkit.WindowsDevicePortal.FileInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisFileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_m761065A46D8299009424B135C281AD54E8897180_gshared (RuntimeArray * __this, int32_t ___index0, FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisFileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_m761065A46D8299009424B135C281AD54E8897180_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisFileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6_m761065A46D8299009424B135C281AD54E8897180_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6 L_6 = ___item1;
FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6 *)(FileInfo_tE24B26A0BA1F8275C5D10EBD7525B8352D4FDAD6 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1E3FB931A3C3E10DD605E8840C2EAA72C76E7B93_gshared (RuntimeArray * __this, int32_t ___index0, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1E3FB931A3C3E10DD605E8840C2EAA72C76E7B93_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m1E3FB931A3C3E10DD605E8840C2EAA72C76E7B93_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_6 = ___item1;
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Mono.Security.Uri_UriScheme>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m8C08AA8A5C06DC5CC2E158EFD21864B76434F119_gshared (RuntimeArray * __this, int32_t ___index0, UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m8C08AA8A5C06DC5CC2E158EFD21864B76434F119_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m8C08AA8A5C06DC5CC2E158EFD21864B76434F119_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 L_6 = ___item1;
UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 *)(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.ArraySegment`1<System.Byte>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m81CC827C340D0C5C16F52071A5919E9E17A430C4_gshared (RuntimeArray * __this, int32_t ___index0, ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m81CC827C340D0C5C16F52071A5919E9E17A430C4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA_m81CC827C340D0C5C16F52071A5919E9E17A430C4_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_6 = ___item1;
ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA *)(ArraySegment_1_t5B17204266E698CC035E2A7F6435A4F78286D0FA *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Boolean>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mB9E04DFA60220793747B0BADE85AE771411DE6DE_gshared (RuntimeArray * __this, int32_t ___index0, bool ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mB9E04DFA60220793747B0BADE85AE771411DE6DE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mB9E04DFA60220793747B0BADE85AE771411DE6DE_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
bool L_6 = ___item1;
bool L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (bool*)(bool*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Byte>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m2315763EAE562CFBE6768B790ACAB530EFED59DD_gshared (RuntimeArray * __this, int32_t ___index0, uint8_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m2315763EAE562CFBE6768B790ACAB530EFED59DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m2315763EAE562CFBE6768B790ACAB530EFED59DD_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
uint8_t L_6 = ___item1;
uint8_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint8_t*)(uint8_t*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.ByteEnum>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mBD0AEC628B67C57DAEA5BE0B927BBCC23D681BD7_gshared (RuntimeArray * __this, int32_t ___index0, uint8_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mBD0AEC628B67C57DAEA5BE0B927BBCC23D681BD7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD_mBD0AEC628B67C57DAEA5BE0B927BBCC23D681BD7_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
uint8_t L_6 = ___item1;
uint8_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint8_t*)(uint8_t*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Char>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m46A5FA0AE653560A66BD34B6645630720A80A1B4_gshared (RuntimeArray * __this, int32_t ___index0, Il2CppChar ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m46A5FA0AE653560A66BD34B6645630720A80A1B4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m46A5FA0AE653560A66BD34B6645630720A80A1B4_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Il2CppChar L_6 = ___item1;
Il2CppChar L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Il2CppChar*)(Il2CppChar*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.DictionaryEntry>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mCA9729A1813FE31DF596F39E419B8010BBEEB973_gshared (RuntimeArray * __this, int32_t ___index0, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mCA9729A1813FE31DF596F39E419B8010BBEEB973_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mCA9729A1813FE31DF596F39E419B8010BBEEB973_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_6 = ___item1;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m61D547E71DB2B8DB94B8C060A09809419C801944_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tC1463A26CB3583633B8650196083947E916945AD ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m61D547E71DB2B8DB94B8C060A09809419C801944_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_tC1463A26CB3583633B8650196083947E916945AD_m61D547E71DB2B8DB94B8C060A09809419C801944_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_tC1463A26CB3583633B8650196083947E916945AD L_6 = ___item1;
Entry_tC1463A26CB3583633B8650196083947E916945AD L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_tC1463A26CB3583633B8650196083947E916945AD *)(Entry_tC1463A26CB3583633B8650196083947E916945AD *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.ByteEnum,UnityEngine.Bounds>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t3A99E3574F89658F38564648536BBF4389E095FC_m4B6866562E86766D6C3D5CEE8A1B2DFBA6F4A365_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t3A99E3574F89658F38564648536BBF4389E095FC ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t3A99E3574F89658F38564648536BBF4389E095FC_m4B6866562E86766D6C3D5CEE8A1B2DFBA6F4A365_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t3A99E3574F89658F38564648536BBF4389E095FC_m4B6866562E86766D6C3D5CEE8A1B2DFBA6F4A365_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t3A99E3574F89658F38564648536BBF4389E095FC L_6 = ___item1;
Entry_t3A99E3574F89658F38564648536BBF4389E095FC L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t3A99E3574F89658F38564648536BBF4389E095FC *)(Entry_t3A99E3574F89658F38564648536BBF4389E095FC *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Guid,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mA4F36AD2B0748741888E3AB54E767EF770459EFF_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mA4F36AD2B0748741888E3AB54E767EF770459EFF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_mA4F36AD2B0748741888E3AB54E767EF770459EFF_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B L_6 = ___item1;
Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B *)(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Boolean>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_mB7FDEA01B4C02F09A464645621C84CA612ECEBA6_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_mB7FDEA01B4C02F09A464645621C84CA612ECEBA6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_mB7FDEA01B4C02F09A464645621C84CA612ECEBA6_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 L_6 = ___item1;
Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 *)(Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Char>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_mAD22F37B82FD1D452C75E5215CB763638B1181FE_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_mAD22F37B82FD1D452C75E5215CB763638B1181FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_mAD22F37B82FD1D452C75E5215CB763638B1181FE_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A L_6 = ___item1;
Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A *)(Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m0B16743AF30852F60FF04A33A7E1702385BEE2DF_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m0B16743AF30852F60FF04A33A7E1702385BEE2DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m0B16743AF30852F60FF04A33A7E1702385BEE2DF_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 L_6 = ___item1;
Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 *)(Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int64>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m073AE4694020E9D6EF25031F1B5A03F1CBD26492_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m073AE4694020E9D6EF25031F1B5A03F1CBD26492_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m073AE4694020E9D6EF25031F1B5A03F1CBD26492_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A L_6 = ___item1;
Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A *)(Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m7488CF10C54CA7604BCB1CCB55DED55EA17257A6_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m7488CF10C54CA7604BCB1CCB55DED55EA17257A6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m7488CF10C54CA7604BCB1CCB55DED55EA17257A6_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_6 = ___item1;
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC_m2B4B1EA9A24C7F756C5C645847C83C5A5E537E6D_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC_m2B4B1EA9A24C7F756C5C645847C83C5A5E537E6D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC_m2B4B1EA9A24C7F756C5C645847C83C5A5E537E6D_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC L_6 = ___item1;
Entry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC *)(Entry_t9A9C4AC9C6C4BA5BB10A3D7CC807C4221A763EAC *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488_m9C387E8FB0DDE80F3629A389B68CFE1750DAACDD_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488_m9C387E8FB0DDE80F3629A389B68CFE1750DAACDD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488_m9C387E8FB0DDE80F3629A389B68CFE1750DAACDD_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488 L_6 = ___item1;
Entry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488 *)(Entry_t96E5884D311BFAEFD0EC3E423F4601CF4E06C488 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD_mC1A1C9359CC9BE9BD90B3A6BC280D90AD4718069_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD_mC1A1C9359CC9BE9BD90B3A6BC280D90AD4718069_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD_mC1A1C9359CC9BE9BD90B3A6BC280D90AD4718069_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD L_6 = ___item1;
Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD *)(Entry_t49F9C4F801ED373E9E3EF1356529574A83EE14AD *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_m2559E1C80DFE45B9628CED45B38F83F0F7579DA8_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_m2559E1C80DFE45B9628CED45B38F83F0F7579DA8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_m2559E1C80DFE45B9628CED45B38F83F0F7579DA8_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 L_6 = ___item1;
Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 *)(Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E_m665EDA33D09B1CBA6A0E78F083E3D6F39E292C5C_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E_m665EDA33D09B1CBA6A0E78F083E3D6F39E292C5C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E_m665EDA33D09B1CBA6A0E78F083E3D6F39E292C5C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E L_6 = ___item1;
Entry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E *)(Entry_tC81DC086E52BA56ECAF3E30BB8EF3C4E4FB7319E *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mB455BAB142D1A043E32226158D446F3BAA7036CF_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mB455BAB142D1A043E32226158D446F3BAA7036CF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t495C47A91D5A1899AF832D603308B663495EC5A8_mB455BAB142D1A043E32226158D446F3BAA7036CF_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 L_6 = ___item1;
Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 *)(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m5814A5A9E71DE6ED93768D79458CA91590D61472_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m5814A5A9E71DE6ED93768D79458CA91590D61472_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m5814A5A9E71DE6ED93768D79458CA91590D61472_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_6 = ___item1;
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m083A2C255147C4C62B2DB027B133172B9879D882_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m083A2C255147C4C62B2DB027B133172B9879D882_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m083A2C255147C4C62B2DB027B133172B9879D882_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_6 = ___item1;
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE6457E2A2BE2EE3F14218AE6531C96F30356C5E0_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE6457E2A2BE2EE3F14218AE6531C96F30356C5E0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE6457E2A2BE2EE3F14218AE6531C96F30356C5E0_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_6 = ___item1;
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_EventRegistrationTokenList>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF_mB571E505C950D4DF151D9156947E2D9E6F78FB95_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF_mB571E505C950D4DF151D9156947E2D9E6F78FB95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF_mB571E505C950D4DF151D9156947E2D9E6F78FB95_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF L_6 = ___item1;
Entry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF *)(Entry_t6C60854618AC115A9E98AA3EBDA3A9EF2386A0DF *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Object,UnityEngine.Vector3>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m2DDC1110EC7C8F311D3FE0E3106C65C08C64A279_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m2DDC1110EC7C8F311D3FE0E3106C65C08C64A279_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t7F6EFCC50C152F187A40F83B2412AA3926B29874_m2DDC1110EC7C8F311D3FE0E3106C65C08C64A279_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874 L_6 = ___item1;
Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874 *)(Entry_t7F6EFCC50C152F187A40F83B2412AA3926B29874 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheEntry>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E_m589994B566785C7D70B3E9EEAB05C64D436D4495_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E_m589994B566785C7D70B3E9EEAB05C64D436D4495_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E_m589994B566785C7D70B3E9EEAB05C64D436D4495_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E L_6 = ___item1;
Entry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E *)(Entry_t9DC6733782668F2DBED2EA3EE0BBEE23B29D671E *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,Microsoft.MixedReality.Toolkit.UI.ManipulationHandler_PointerData>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688_mEAA797F07A1E914768AA64141564877EE2BD0856_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688_mEAA797F07A1E914768AA64141564877EE2BD0856_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688_mEAA797F07A1E914768AA64141564877EE2BD0856_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688 L_6 = ___item1;
Entry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688 *)(Entry_t26A885C5EFCA1C6F7EF370430D0E0EC0D65FD688 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Boolean>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m0837BCD6CAF72AE7C028EF64660DDF9B904DA1BC_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m0837BCD6CAF72AE7C028EF64660DDF9B904DA1BC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2_m0837BCD6CAF72AE7C028EF64660DDF9B904DA1BC_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2 L_6 = ___item1;
Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2 *)(Entry_t1248B1345CDA796FEA6F632C5E6F2BD9463754D2 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mCA5AB22A63514B3676E0227DB836648B041CBE3A_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mCA5AB22A63514B3676E0227DB836648B041CBE3A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mCA5AB22A63514B3676E0227DB836648B041CBE3A_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 L_6 = ___item1;
Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 *)(Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m1C35A2606967D2362CC7CED53B57950E9D9F5D97_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m1C35A2606967D2362CC7CED53B57950E9D9F5D97_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m1C35A2606967D2362CC7CED53B57950E9D9F5D97_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A L_6 = ___item1;
Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A *)(Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,UnityEngine.Vector3>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m0BAC1876D618DFB2773F1E71CB53AAC94A56C288_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m0BAC1876D618DFB2773F1E71CB53AAC94A56C288_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8_m0BAC1876D618DFB2773F1E71CB53AAC94A56C288_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8 L_6 = ___item1;
Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8 *)(Entry_tD2E1C8AE63504220F6AD1FCA3DDFB4427A3458B8 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m6DF14DE5D43B6F6727D18E4B97B84159A32F2F0F_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t687188C87EF1FD0D50038E634676DBC449857B8E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m6DF14DE5D43B6F6727D18E4B97B84159A32F2F0F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m6DF14DE5D43B6F6727D18E4B97B84159A32F2F0F_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t687188C87EF1FD0D50038E634676DBC449857B8E L_6 = ___item1;
Entry_t687188C87EF1FD0D50038E634676DBC449857B8E L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t687188C87EF1FD0D50038E634676DBC449857B8E *)(Entry_t687188C87EF1FD0D50038E634676DBC449857B8E *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Vector3,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEntry_t266C0028DBD75C5E784224261B95300BB5315207_mDC34C5BDB1122109C1FEC52834EC470F6E4A8755_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t266C0028DBD75C5E784224261B95300BB5315207 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEntry_t266C0028DBD75C5E784224261B95300BB5315207_mDC34C5BDB1122109C1FEC52834EC470F6E4A8755_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEntry_t266C0028DBD75C5E784224261B95300BB5315207_mDC34C5BDB1122109C1FEC52834EC470F6E4A8755_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Entry_t266C0028DBD75C5E784224261B95300BB5315207 L_6 = ___item1;
Entry_t266C0028DBD75C5E784224261B95300BB5315207 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Entry_t266C0028DBD75C5E784224261B95300BB5315207 *)(Entry_t266C0028DBD75C5E784224261B95300BB5315207 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.HashSet`1_Slot<System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m6FCA1E20E280AC35D092ED564C8FBE90446DAB2D_gshared (RuntimeArray * __this, int32_t ___index0, Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m6FCA1E20E280AC35D092ED564C8FBE90446DAB2D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSlot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7_m6FCA1E20E280AC35D092ED564C8FBE90446DAB2D_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 L_6 = ___item1;
Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 *)(Slot_tA9C054FB11E759FD9D735BB5697A90ACE12D6FA7 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.HashSet`1_Slot<System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mF77C146C40073AD87671021AC3432399B456D83F_gshared (RuntimeArray * __this, int32_t ___index0, Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mF77C146C40073AD87671021AC3432399B456D83F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mF77C146C40073AD87671021AC3432399B456D83F_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_6 = ___item1;
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m18D3FDD2AC51D4E5865CA5B88707340A6B8C098D_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m18D3FDD2AC51D4E5865CA5B88707340A6B8C098D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443_m18D3FDD2AC51D4E5865CA5B88707340A6B8C098D_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 L_6 = ___item1;
KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 *)(KeyValuePair_2_t7021B3989E46B5E2ED55D76D82C8176A7AF6B443 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.ByteEnum,UnityEngine.Bounds>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238_m493531D87F5883F39C20CF503BDEC18126429CBF_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238_m493531D87F5883F39C20CF503BDEC18126429CBF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238_m493531D87F5883F39C20CF503BDEC18126429CBF_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238 L_6 = ___item1;
KeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238 *)(KeyValuePair_2_tBFE6061382ECFB951EF82A74BB248F225B781238 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mF2E103D39EC274030BB69C6CFFED255712EB5332_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mF2E103D39EC274030BB69C6CFFED255712EB5332_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mF2E103D39EC274030BB69C6CFFED255712EB5332_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_6 = ___item1;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mAEDCD5F9CDC7238903F102934677BB6694BBD9D4_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mAEDCD5F9CDC7238903F102934677BB6694BBD9D4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mAEDCD5F9CDC7238903F102934677BB6694BBD9D4_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_6 = ___item1;
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m23E2930F9BDFFDD16DED991033268DBCE9DD3331_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m23E2930F9BDFFDD16DED991033268DBCE9DD3331_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m23E2930F9BDFFDD16DED991033268DBCE9DD3331_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 L_6 = ___item1;
KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 *)(KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mCD6433FDA32B9B1574DD1A04C556C577666F8A72_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mCD6433FDA32B9B1574DD1A04C556C577666F8A72_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mCD6433FDA32B9B1574DD1A04C556C577666F8A72_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F L_6 = ___item1;
KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F *)(KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mF3864DDA726E3CE194601BDF91769AA45373C657_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mF3864DDA726E3CE194601BDF91769AA45373C657_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_mF3864DDA726E3CE194601BDF91769AA45373C657_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 L_6 = ___item1;
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *)(KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mD577753A217FC6AF0F89478404C301E523C6251A_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mD577753A217FC6AF0F89478404C301E523C6251A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mD577753A217FC6AF0F89478404C301E523C6251A_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 L_6 = ___item1;
KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 *)(KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26_mBA59CD16C7B776DB1D433ADB02059F0C03F5BE2E_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26_mBA59CD16C7B776DB1D433ADB02059F0C03F5BE2E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26_mBA59CD16C7B776DB1D433ADB02059F0C03F5BE2E_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 L_6 = ___item1;
KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Vector3>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_m4C47CD2F47D5B2EB44B7E91F475100C8DA829DA4_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_m4C47CD2F47D5B2EB44B7E91F475100C8DA829DA4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_m4C47CD2F47D5B2EB44B7E91F475100C8DA829DA4_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC L_6 = ___item1;
KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC *)(KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect_AudioLoFiFilterSettings>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187_mE3A1B2F85253F7D17D46B4DC86A95B5FB58BC019_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187_mE3A1B2F85253F7D17D46B4DC86A95B5FB58BC019_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187_mE3A1B2F85253F7D17D46B4DC86A95B5FB58BC019_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187 L_6 = ___item1;
KeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187 *)(KeyValuePair_2_t313C688709339B65356C7987905E2242EF4A8187 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7_m4851FB9248F2F27CEC7956385CF623374ECC1ECD_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7_m4851FB9248F2F27CEC7956385CF623374ECC1ECD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7_m4851FB9248F2F27CEC7956385CF623374ECC1ECD_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7 L_6 = ___item1;
KeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7 *)(KeyValuePair_2_t720314488017FB37ED4D1F358118D2B39C522DF7 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_m2F551BA3C8BF8F9DD496C45B62F5E0F6717359FD_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_m2F551BA3C8BF8F9DD496C45B62F5E0F6717359FD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0_m2F551BA3C8BF8F9DD496C45B62F5E0F6717359FD_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 L_6 = ___item1;
KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 *)(KeyValuePair_2_t69CC9209E494AB6BA5729796FBBBAFB5F933F3F0 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_mF890B24E4759F3926B7936494DA4765BB842EB8D_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_mF890B24E4759F3926B7936494DA4765BB842EB8D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_mF890B24E4759F3926B7936494DA4765BB842EB8D_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA L_6 = ___item1;
KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA *)(KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4_mC9C25653860E15CDCEBEEE894602812060556962_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4_mC9C25653860E15CDCEBEEE894602812060556962_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4_mC9C25653860E15CDCEBEEE894602812060556962_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4 L_6 = ___item1;
KeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4 *)(KeyValuePair_2_t12BAA60E1CA1D950B9624A69F215A0614C92CBE4 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m657785C7F9593EC322747AD1567BA87494FF4410_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m657785C7F9593EC322747AD1567BA87494FF4410_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1_m657785C7F9593EC322747AD1567BA87494FF4410_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 L_6 = ___item1;
KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m5A46A4E4EF23FD4ADFB21D892EEE6ABF9B7CBC6B_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m5A46A4E4EF23FD4ADFB21D892EEE6ABF9B7CBC6B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m5A46A4E4EF23FD4ADFB21D892EEE6ABF9B7CBC6B_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_6 = ___item1;
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mCDA3FBE262877EEF5D0FABB97F1834EF45F01E9C_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mCDA3FBE262877EEF5D0FABB97F1834EF45F01E9C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mCDA3FBE262877EEF5D0FABB97F1834EF45F01E9C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_6 = ___item1;
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m469D5CF79A08F150A62943BED71A8E21B25BE679_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m469D5CF79A08F150A62943BED71A8E21B25BE679_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m469D5CF79A08F150A62943BED71A8E21B25BE679_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_6 = ___item1;
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_EventRegistrationTokenList>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3_mE01CD575F98FBF0D3F5083D6CB4AFA0B3B2105CF_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3_mE01CD575F98FBF0D3F5083D6CB4AFA0B3B2105CF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3_mE01CD575F98FBF0D3F5083D6CB4AFA0B3B2105CF_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3 L_6 = ___item1;
KeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3 *)(KeyValuePair_2_t9166121F7D0104D469E8B23CA0CC235A379281B3 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822_mEEC63FFB620FBE9220BCD3AB8141C8A797B5A52F_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822_mEEC63FFB620FBE9220BCD3AB8141C8A797B5A52F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822_mEEC63FFB620FBE9220BCD3AB8141C8A797B5A52F_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822 L_6 = ___item1;
KeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822 *)(KeyValuePair_2_tB2B1BDB4860CA12D10ED64E7D3B112421CADA822 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheKey,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheEntry>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46_m623CAB301D07FE8AE992698D5291394039A31AB2_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46_m623CAB301D07FE8AE992698D5291394039A31AB2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46_m623CAB301D07FE8AE992698D5291394039A31AB2_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46 L_6 = ___item1;
KeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46 *)(KeyValuePair_2_t92BE7B4140821DBA942F4ECA4925CC7B7494EC46 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.UInt32,Microsoft.MixedReality.Toolkit.UI.ManipulationHandler_PointerData>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B_m09ED0EEFEE1201A26BCDFD88D5467B6E01B16F6D_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B_m09ED0EEFEE1201A26BCDFD88D5467B6E01B16F6D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B_m09ED0EEFEE1201A26BCDFD88D5467B6E01B16F6D_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B L_6 = ___item1;
KeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B *)(KeyValuePair_2_tD89E1D57E7F1C4ED97B8C55BFB8F5FE0BC13B47B *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_mB06017A2BBD21EFB94EDFD0F5BEF3C3B1B274441_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_mB06017A2BBD21EFB94EDFD0F5BEF3C3B1B274441_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE_mB06017A2BBD21EFB94EDFD0F5BEF3C3B1B274441_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE L_6 = ___item1;
KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE *)(KeyValuePair_2_t4924C8EC65AAF8D242A28DB259AE14F25055A7EE *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m237ED9EAC7D04AB2E8255AA5747DD19C2EE98F80_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m237ED9EAC7D04AB2E8255AA5747DD19C2EE98F80_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m237ED9EAC7D04AB2E8255AA5747DD19C2EE98F80_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C L_6 = ___item1;
KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C *)(KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_m35F5904F9D21684740EB028BEF63609986C5F4F4_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_m35F5904F9D21684740EB028BEF63609986C5F4F4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA_m35F5904F9D21684740EB028BEF63609986C5F4F4_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA L_6 = ___item1;
KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA *)(KeyValuePair_2_t471E2DF36C9849B1488F87CC6C0EA0F6B6224DBA *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.UInt32,UnityEngine.Vector3>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF_mE826FA9E3FAEFCF04DE46975D80252CC87B97837_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF_mE826FA9E3FAEFCF04DE46975D80252CC87B97837_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF_mE826FA9E3FAEFCF04DE46975D80252CC87B97837_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF L_6 = ___item1;
KeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF *)(KeyValuePair_2_tD7757B69726FBA1C83AAD9BC8771401D3F1971AF *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27_m3316A7E44209472FB8895A6F9908AECAD9B81846_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27_m3316A7E44209472FB8895A6F9908AECAD9B81846_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27_m3316A7E44209472FB8895A6F9908AECAD9B81846_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 L_6 = ___item1;
KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 *)(KeyValuePair_2_tBF49E6D84C3874E47C1681064699318B6BBA4A27 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<UnityEngine.Vector3,System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2_m75E317A71B7AAF1E9C25599E9450278CFB105C40_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2_m75E317A71B7AAF1E9C25599E9450278CFB105C40_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2_m75E317A71B7AAF1E9C25599E9450278CFB105C40_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
KeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2 L_6 = ___item1;
KeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (KeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2 *)(KeyValuePair_2_tA374291DE9B97B6A3CEA3A0AE3C074BE033F03E2 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Collections.Hashtable_bucket>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m74A70583E6C9B4212D199F1B1E5FF06158C913BE_gshared (RuntimeArray * __this, int32_t ___index0, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m74A70583E6C9B4212D199F1B1E5FF06158C913BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m74A70583E6C9B4212D199F1B1E5FF06158C913BE_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_6 = ___item1;
bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.DateTime>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA2EF7A58C4ACCA4433B7332867EB6A62C14C2819_gshared (RuntimeArray * __this, int32_t ___index0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA2EF7A58C4ACCA4433B7332867EB6A62C14C2819_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA2EF7A58C4ACCA4433B7332867EB6A62C14C2819_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6 = ___item1;
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.DateTimeOffset>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m7C8FB45D060CA50EDD5B5C225EE4509E3F742D42_gshared (RuntimeArray * __this, int32_t ___index0, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m7C8FB45D060CA50EDD5B5C225EE4509E3F742D42_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisDateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_m7C8FB45D060CA50EDD5B5C225EE4509E3F742D42_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_6 = ___item1;
DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Decimal>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m8E583065C3CD257589C4429EE98FE2B50D545FAC_gshared (RuntimeArray * __this, int32_t ___index0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m8E583065C3CD257589C4429EE98FE2B50D545FAC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m8E583065C3CD257589C4429EE98FE2B50D545FAC_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_6 = ___item1;
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Double>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mF5A23A42B5B90A3C220801FA122C97860E711C3D_gshared (RuntimeArray * __this, int32_t ___index0, double ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mF5A23A42B5B90A3C220801FA122C97860E711C3D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mF5A23A42B5B90A3C220801FA122C97860E711C3D_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
double L_6 = ___item1;
double L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (double*)(double*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Globalization.InternalCodePageDataItem>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01421A3FB2F89AEC3CF2DF7FBC708921953DEB81_gshared (RuntimeArray * __this, int32_t ___index0, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01421A3FB2F89AEC3CF2DF7FBC708921953DEB81_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01421A3FB2F89AEC3CF2DF7FBC708921953DEB81_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 L_6 = ___item1;
InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Globalization.InternalEncodingDataItem>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m51EDD22D64367274BA4B0ED594BB6D34508E90D7_gshared (RuntimeArray * __this, int32_t ___index0, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m51EDD22D64367274BA4B0ED594BB6D34508E90D7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m51EDD22D64367274BA4B0ED594BB6D34508E90D7_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 L_6 = ___item1;
InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Guid>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisGuid_t_m9FDD0AC842503D6E29C8E53FB550982C2230CF0F_gshared (RuntimeArray * __this, int32_t ___index0, Guid_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisGuid_t_m9FDD0AC842503D6E29C8E53FB550982C2230CF0F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisGuid_t_m9FDD0AC842503D6E29C8E53FB550982C2230CF0F_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Guid_t L_6 = ___item1;
Guid_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Guid_t *)(Guid_t *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Int16>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mA74AF4E123BCFF15EEA312570636C08F5880316D_gshared (RuntimeArray * __this, int32_t ___index0, int16_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mA74AF4E123BCFF15EEA312570636C08F5880316D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mA74AF4E123BCFF15EEA312570636C08F5880316D_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
int16_t L_6 = ___item1;
int16_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (int16_t*)(int16_t*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Int32>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7FE5131FCEEB55A0429D246C4AC726EE85232F71_gshared (RuntimeArray * __this, int32_t ___index0, int32_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7FE5131FCEEB55A0429D246C4AC726EE85232F71_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7FE5131FCEEB55A0429D246C4AC726EE85232F71_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
int32_t L_6 = ___item1;
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (int32_t*)(int32_t*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Int32Enum>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m7FCC674B564F0B8C20DC59A4B5EE9CBD9F2C02AB_gshared (RuntimeArray * __this, int32_t ___index0, int32_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m7FCC674B564F0B8C20DC59A4B5EE9CBD9F2C02AB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m7FCC674B564F0B8C20DC59A4B5EE9CBD9F2C02AB_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
int32_t L_6 = ___item1;
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (int32_t*)(int32_t*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Int64>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4FC592A9C1479783C221F1A0CCC037BB73E1F056_gshared (RuntimeArray * __this, int32_t ___index0, int64_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4FC592A9C1479783C221F1A0CCC037BB73E1F056_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4FC592A9C1479783C221F1A0CCC037BB73E1F056_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
int64_t L_6 = ___item1;
int64_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (int64_t*)(int64_t*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.IntPtr>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisIntPtr_t_m7BAFE0B0F88A620FF81E179BCE3A57BACD0ED0E7_gshared (RuntimeArray * __this, int32_t ___index0, intptr_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisIntPtr_t_m7BAFE0B0F88A620FF81E179BCE3A57BACD0ED0E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisIntPtr_t_m7BAFE0B0F88A620FF81E179BCE3A57BACD0ED0E7_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
intptr_t L_6 = ___item1;
intptr_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (intptr_t*)(intptr_t*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Linq.Set`1_Slot<System.Object>>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_mB1972EC11FBE32288139D07072648D51CFAE4961_gshared (RuntimeArray * __this, int32_t ___index0, Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_mB1972EC11FBE32288139D07072648D51CFAE4961_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSlot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55_mB1972EC11FBE32288139D07072648D51CFAE4961_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 L_6 = ___item1;
Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 *)(Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Net.CookieTokenizer_RecognizedAttribute>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m6ECC7721B4496EEDC51766A22FFE1135262E601D_gshared (RuntimeArray * __this, int32_t ___index0, RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m6ECC7721B4496EEDC51766A22FFE1135262E601D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisRecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B_m6ECC7721B4496EEDC51766A22FFE1135262E601D_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B L_6 = ___item1;
RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B *)(RecognizedAttribute_t300D9F628CDAED6F665BFE996936B9CE0FA0D95B *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Net.HeaderVariantInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mFDA0A9185276BCF79A0A695E6E458771496533FD_gshared (RuntimeArray * __this, int32_t ___index0, HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mFDA0A9185276BCF79A0A695E6E458771496533FD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisHeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64_mFDA0A9185276BCF79A0A695E6E458771496533FD_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 L_6 = ___item1;
HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 *)(HeaderVariantInfo_tFF12EDB71F2B9508779B160689F99BA209DA9E64 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Net.Sockets.Socket_WSABUF>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m9DCFFB6848DF1AA9BC6E62F9018AD5245E27A703_gshared (RuntimeArray * __this, int32_t ___index0, WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m9DCFFB6848DF1AA9BC6E62F9018AD5245E27A703_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisWSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE_m9DCFFB6848DF1AA9BC6E62F9018AD5245E27A703_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE L_6 = ___item1;
WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE *)(WSABUF_tFC99449E36506806B55A93B6293AC7D2D10D3CEE *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Numerics.Matrix4x4>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMatrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_m9520DD4CE65D2CCC5B24E072FE25B351AB9533D3_gshared (RuntimeArray * __this, int32_t ___index0, Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMatrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_m9520DD4CE65D2CCC5B24E072FE25B351AB9533D3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMatrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0_m9520DD4CE65D2CCC5B24E072FE25B351AB9533D3_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0 L_6 = ___item1;
Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0 *)(Matrix4x4_t962F654FB75C9A7E336E7DB54DBFCEC2B7B8B4B0 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Numerics.Quaternion>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisQuaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A_m2F52A9294AE6DB74DC04287D639E4389407810DD_gshared (RuntimeArray * __this, int32_t ___index0, Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisQuaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A_m2F52A9294AE6DB74DC04287D639E4389407810DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisQuaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A_m2F52A9294AE6DB74DC04287D639E4389407810DD_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A L_6 = ___item1;
Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A *)(Quaternion_t67580554B28ABC8A5384F3B4FF4E679FC6D38D4A *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Numerics.Vector3>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisVector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65_m2434C4F08DC7CB890508EFF8E10B818E69D9E986_gshared (RuntimeArray * __this, int32_t ___index0, Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisVector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65_m2434C4F08DC7CB890508EFF8E10B818E69D9E986_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisVector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65_m2434C4F08DC7CB890508EFF8E10B818E69D9E986_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 L_6 = ___item1;
Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 *)(Vector3_tA1B8517EED04F753987922C4361B51A4F3AE8C65 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Object>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisRuntimeObject_m84D4DC68A1BAC27655D58180AE6E26C0544F3D2A_gshared (RuntimeArray * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisRuntimeObject_m84D4DC68A1BAC27655D58180AE6E26C0544F3D2A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisRuntimeObject_m84D4DC68A1BAC27655D58180AE6E26C0544F3D2A_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
RuntimeObject * L_6 = ___item1;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_6);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_6);
return;
}
IL_0028:
{
int32_t L_7 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_7, (RuntimeObject **)(RuntimeObject **)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.ParameterizedStrings_FormatParam>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m5965B9608DC4898C968E4E05ABF2796E3490AC38_gshared (RuntimeArray * __this, int32_t ___index0, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m5965B9608DC4898C968E4E05ABF2796E3490AC38_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m5965B9608DC4898C968E4E05ABF2796E3490AC38_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_6 = ___item1;
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAC4F4CA3698520D49EE6BB44ABE2BBC0A37EE067_gshared (RuntimeArray * __this, int32_t ___index0, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAC4F4CA3698520D49EE6BB44ABE2BBC0A37EE067_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAC4F4CA3698520D49EE6BB44ABE2BBC0A37EE067_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E L_6 = ___item1;
CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mC9140CDF26AC80354547CC651B0E757E367A6F38_gshared (RuntimeArray * __this, int32_t ___index0, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mC9140CDF26AC80354547CC651B0E757E367A6F38_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mC9140CDF26AC80354547CC651B0E757E367A6F38_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 L_6 = ___item1;
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Reflection.ParameterModifier>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m14F79BE795265B3A064C920941AB20EF80837C55_gshared (RuntimeArray * __this, int32_t ___index0, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m14F79BE795265B3A064C920941AB20EF80837C55_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m14F79BE795265B3A064C920941AB20EF80837C55_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E L_6 = ___item1;
ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Resources.ResourceLocator>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m4FFDCA3412C2992784DBE5BF1803BAF71928C129_gshared (RuntimeArray * __this, int32_t ___index0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m4FFDCA3412C2992784DBE5BF1803BAF71928C129_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m4FFDCA3412C2992784DBE5BF1803BAF71928C129_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_6 = ___item1;
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Runtime.CompilerServices.Ephemeron>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mFCD14858BB3985147E82A080074A3C6A4D66D81B_gshared (RuntimeArray * __this, int32_t ___index0, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mFCD14858BB3985147E82A080074A3C6A4D66D81B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mFCD14858BB3985147E82A080074A3C6A4D66D81B_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA L_6 = ___item1;
Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Runtime.InteropServices.GCHandle>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mAD2875DFFF3C67D3752B6E49D8E9B0E78F4787E3_gshared (RuntimeArray * __this, int32_t ___index0, GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mAD2875DFFF3C67D3752B6E49D8E9B0E78F4787E3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mAD2875DFFF3C67D3752B6E49D8E9B0E78F4787E3_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_6 = ___item1;
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7_m17B71394E52F701C4D5D337D63A69963105223D1_gshared (RuntimeArray * __this, int32_t ___index0, EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7_m17B71394E52F701C4D5D337D63A69963105223D1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7_m17B71394E52F701C4D5D337D63A69963105223D1_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7 L_6 = ___item1;
EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7 *)(EventRegistrationToken_tE1F3FD8339DB10082B4291DE47C45A352DCB08A7 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_EventRegistrationTokenList>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_mD6850227157197D715212668191BF67E55942C58_gshared (RuntimeArray * __this, int32_t ___index0, EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_mD6850227157197D715212668191BF67E55942C58_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A_mD6850227157197D715212668191BF67E55942C58_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A L_6 = ___item1;
EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A *)(EventRegistrationTokenList_t0154EA1C87B64FAF2E8FABFAB1398B021FE4E08A *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheEntry>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6_mDD7D9664BB71A52579C384AC5777CA4669CDD902_gshared (RuntimeArray * __this, int32_t ___index0, EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6_mDD7D9664BB71A52579C384AC5777CA4669CDD902_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6_mDD7D9664BB71A52579C384AC5777CA4669CDD902_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 L_6 = ___item1;
EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 *)(EventCacheEntry_tAF077295F4A679ADA9C1442FCD4110C841FE47E6 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal_NativeOrStaticEventRegistrationImpl_EventCacheKey>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A_m00AC4F2D4C30FBBFAE4C5247D7EBBFDC1F61C3D6_gshared (RuntimeArray * __this, int32_t ___index0, EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A_m00AC4F2D4C30FBBFAE4C5247D7EBBFDC1F61C3D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A_m00AC4F2D4C30FBBFAE4C5247D7EBBFDC1F61C3D6_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A L_6 = ___item1;
EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A *)(EventCacheKey_t049C851B67DA89C466CF3B568E2BB3C3BE7C854A *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.SByte>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mBAC38A7C35E4854032C95707A505B884BB39E874_gshared (RuntimeArray * __this, int32_t ___index0, int8_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mBAC38A7C35E4854032C95707A505B884BB39E874_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mBAC38A7C35E4854032C95707A505B884BB39E874_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
int8_t L_6 = ___item1;
int8_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (int8_t*)(int8_t*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m76BCDEC0C6DD3F60200FE513484FF5A10A9BC18A_gshared (RuntimeArray * __this, int32_t ___index0, X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m76BCDEC0C6DD3F60200FE513484FF5A10A9BC18A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisX509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C_m76BCDEC0C6DD3F60200FE513484FF5A10A9BC18A_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C L_6 = ___item1;
X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C *)(X509ChainStatus_t9E05BD8700EA6158AC82F71CBE53AD20F6B99B0C *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Single>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8C9703F6B9F64F8CD5706B3540D7F9A800AEC130_gshared (RuntimeArray * __this, int32_t ___index0, float ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8C9703F6B9F64F8CD5706B3540D7F9A800AEC130_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m8C9703F6B9F64F8CD5706B3540D7F9A800AEC130_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
float L_6 = ___item1;
float L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (float*)(float*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m88D31F15A9828B472A8FBD06CE6499A4B9AA5095_gshared (RuntimeArray * __this, int32_t ___index0, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m88D31F15A9828B472A8FBD06CE6499A4B9AA5095_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m88D31F15A9828B472A8FBD06CE6499A4B9AA5095_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B L_6 = ___item1;
LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Threading.CancellationTokenRegistration>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_mDA777866F7C2C3DF5607C5E02203D0E4AD21F84C_gshared (RuntimeArray * __this, int32_t ___index0, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_mDA777866F7C2C3DF5607C5E02203D0E4AD21F84C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_mDA777866F7C2C3DF5607C5E02203D0E4AD21F84C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_6 = ___item1;
CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Threading.Tasks.IndexRange>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisIndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251_mB111F59E216F229B6FBE3E0B18B2EA5BBE55BE5B_gshared (RuntimeArray * __this, int32_t ___index0, IndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisIndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251_mB111F59E216F229B6FBE3E0B18B2EA5BBE55BE5B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisIndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251_mB111F59E216F229B6FBE3E0B18B2EA5BBE55BE5B_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
IndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251 L_6 = ___item1;
IndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (IndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251 *)(IndexRange_tF93C5B850DC728C38488CD590D3810F2B2F84251 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.TimeSpan>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mDA3BD26CE863007EBB9125B0B5F01EF95A47FCC2_gshared (RuntimeArray * __this, int32_t ___index0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mDA3BD26CE863007EBB9125B0B5F01EF95A47FCC2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mDA3BD26CE863007EBB9125B0B5F01EF95A47FCC2_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_6 = ___item1;
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.UInt16>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m1B9EF7FC63165E4C71551F5CEE2D365C782B76D7_gshared (RuntimeArray * __this, int32_t ___index0, uint16_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m1B9EF7FC63165E4C71551F5CEE2D365C782B76D7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m1B9EF7FC63165E4C71551F5CEE2D365C782B76D7_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
uint16_t L_6 = ___item1;
uint16_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint16_t*)(uint16_t*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.UInt16Enum>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m914235EFA3494019D9B603F7DDF34C27FBC41C00_gshared (RuntimeArray * __this, int32_t ___index0, uint16_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m914235EFA3494019D9B603F7DDF34C27FBC41C00_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUInt16Enum_tB3380938EFBC6B524E2C8143A7982637F0EA4456_m914235EFA3494019D9B603F7DDF34C27FBC41C00_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
uint16_t L_6 = ___item1;
uint16_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint16_t*)(uint16_t*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.UInt32>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mE83E8853FB0AA3C1C84FB6D5F188A7DFBF7B58E0_gshared (RuntimeArray * __this, int32_t ___index0, uint32_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mE83E8853FB0AA3C1C84FB6D5F188A7DFBF7B58E0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mE83E8853FB0AA3C1C84FB6D5F188A7DFBF7B58E0_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
uint32_t L_6 = ___item1;
uint32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint32_t*)(uint32_t*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.UInt32Enum>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m60DE3B4B58501B91F9E6E51B5696412405C7303D_gshared (RuntimeArray * __this, int32_t ___index0, uint32_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m60DE3B4B58501B91F9E6E51B5696412405C7303D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUInt32Enum_tE44175EB3151A633676D60A642EDA3BD5C6760DA_m60DE3B4B58501B91F9E6E51B5696412405C7303D_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
uint32_t L_6 = ___item1;
uint32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint32_t*)(uint32_t*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.UInt64>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2BEE0E74F5ACF236586C3154499DA4DF4B764AD2_gshared (RuntimeArray * __this, int32_t ___index0, uint64_t ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2BEE0E74F5ACF236586C3154499DA4DF4B764AD2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m2BEE0E74F5ACF236586C3154499DA4DF4B764AD2_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
uint64_t L_6 = ___item1;
uint64_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (uint64_t*)(uint64_t*)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Xml.Schema.SequenceNode_SequenceConstructPosContext>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m8A8858F5E13DEB3C5B2A24037554624E8E8B720C_gshared (RuntimeArray * __this, int32_t ___index0, SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m8A8858F5E13DEB3C5B2A24037554624E8E8B720C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m8A8858F5E13DEB3C5B2A24037554624E8E8B720C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 L_6 = ___item1;
SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 *)(SequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Xml.XmlNamespaceManager_NamespaceDeclaration>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m041818B062D2A9874641ACC96D97BBDDFC518C52_gshared (RuntimeArray * __this, int32_t ___index0, NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m041818B062D2A9874641ACC96D97BBDDFC518C52_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisNamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A_m041818B062D2A9874641ACC96D97BBDDFC518C52_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A L_6 = ___item1;
NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A *)(NamespaceDeclaration_tFD9A771E0585F887CE869FA7D0FAD365A40D436A *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<System.Xml.XmlTextReaderImpl_ParsingState>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mE9F2B59D6000F54B4632CAA735F1A2A34139E037_gshared (RuntimeArray * __this, int32_t ___index0, ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mE9F2B59D6000F54B4632CAA735F1A2A34139E037_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2_mE9F2B59D6000F54B4632CAA735F1A2A34139E037_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 L_6 = ___item1;
ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 *)(ParsingState_tE4A8E7F14B2068AE43ECF99F81F55B0301A551A2 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<TMPro.MaterialReference>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_mA74E21A64605C11D5E0338AA796110A547859E34_gshared (RuntimeArray * __this, int32_t ___index0, MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_mA74E21A64605C11D5E0338AA796110A547859E34_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_mA74E21A64605C11D5E0338AA796110A547859E34_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F L_6 = ___item1;
MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F *)(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<TMPro.RichTextTagAttribute>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mA7EB6B1CDAFE02C9A6FF3BB5BE4E2DE79C1E09A4_gshared (RuntimeArray * __this, int32_t ___index0, RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mA7EB6B1CDAFE02C9A6FF3BB5BE4E2DE79C1E09A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mA7EB6B1CDAFE02C9A6FF3BB5BE4E2DE79C1E09A4_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 L_6 = ___item1;
RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 *)(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<TMPro.TMP_CharacterInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_m897215EDD442D0CC6A1B9DD97B6C5CEEE580F0E6_gshared (RuntimeArray * __this, int32_t ___index0, TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_m897215EDD442D0CC6A1B9DD97B6C5CEEE580F0E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_m897215EDD442D0CC6A1B9DD97B6C5CEEE580F0E6_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 L_6 = ___item1;
TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 *)(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<TMPro.TMP_FontWeightPair>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mDB2D952C17AE03A662E161A05A975AFFD34B1D0A_gshared (RuntimeArray * __this, int32_t ___index0, TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mDB2D952C17AE03A662E161A05A975AFFD34B1D0A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mDB2D952C17AE03A662E161A05A975AFFD34B1D0A_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 L_6 = ___item1;
TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 *)(TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<TMPro.TMP_LineInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m377AEF5F67BABFFD15D04DD9A60F517CA9BEF12F_gshared (RuntimeArray * __this, int32_t ___index0, TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m377AEF5F67BABFFD15D04DD9A60F517CA9BEF12F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m377AEF5F67BABFFD15D04DD9A60F517CA9BEF12F_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 L_6 = ___item1;
TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 *)(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<TMPro.TMP_LinkInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mCB1715609E2FC590C977E4E40386776AF7A4CF51_gshared (RuntimeArray * __this, int32_t ___index0, TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mCB1715609E2FC590C977E4E40386776AF7A4CF51_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mCB1715609E2FC590C977E4E40386776AF7A4CF51_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 L_6 = ___item1;
TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 *)(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<TMPro.TMP_MeshInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mABAAD0D14AFB4DEE7DB6EB26D6CA8FEE08F78E03_gshared (RuntimeArray * __this, int32_t ___index0, TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mABAAD0D14AFB4DEE7DB6EB26D6CA8FEE08F78E03_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mABAAD0D14AFB4DEE7DB6EB26D6CA8FEE08F78E03_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E L_6 = ___item1;
TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E *)(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<TMPro.TMP_PageInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m4748D7A1229D7885D86E3C0289956634CD1918DD_gshared (RuntimeArray * __this, int32_t ___index0, TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m4748D7A1229D7885D86E3C0289956634CD1918DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m4748D7A1229D7885D86E3C0289956634CD1918DD_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 L_6 = ___item1;
TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 *)(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<TMPro.TMP_Text_UnicodeChar>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mE3BE69A5C3B447CED0EE2C2C9DE34F3CB66C83F6_gshared (RuntimeArray * __this, int32_t ___index0, UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mE3BE69A5C3B447CED0EE2C2C9DE34F3CB66C83F6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mE3BE69A5C3B447CED0EE2C2C9DE34F3CB66C83F6_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A L_6 = ___item1;
UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A *)(UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<TMPro.TMP_WordInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m1ECCF2C4515968D2AD52EEEBC15B91F14A3211D0_gshared (RuntimeArray * __this, int32_t ___index0, TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m1ECCF2C4515968D2AD52EEEBC15B91F14A3211D0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m1ECCF2C4515968D2AD52EEEBC15B91F14A3211D0_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 L_6 = ___item1;
TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 *)(TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.BeforeRenderHelper_OrderBlock>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mF8D46CC13EFBC4D2AE93483CCDD2E6B01CC689F9_gshared (RuntimeArray * __this, int32_t ___index0, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mF8D46CC13EFBC4D2AE93483CCDD2E6B01CC689F9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mF8D46CC13EFBC4D2AE93483CCDD2E6B01CC689F9_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_6 = ___item1;
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.BoneWeight>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisBoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1_mE23A3B18E5D65CEFE592563C6396D0B8D5B34ECB_gshared (RuntimeArray * __this, int32_t ___index0, BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisBoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1_mE23A3B18E5D65CEFE592563C6396D0B8D5B34ECB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisBoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1_mE23A3B18E5D65CEFE592563C6396D0B8D5B34ECB_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1 L_6 = ___item1;
BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1 *)(BoneWeight_t9D77A4964F9376FE7E46CA6997882B91B8AAA9A1 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Bounds>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_m31637056BEDD0A417EDA2B6EA51736A65990D0F4_gshared (RuntimeArray * __this, int32_t ___index0, Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_m31637056BEDD0A417EDA2B6EA51736A65990D0F4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisBounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890_m31637056BEDD0A417EDA2B6EA51736A65990D0F4_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 L_6 = ___item1;
Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 *)(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Color32>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mF5EE60F1E53920FB056A472DA6DC917BCC631C3C_gshared (RuntimeArray * __this, int32_t ___index0, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mF5EE60F1E53920FB056A472DA6DC917BCC631C3C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mF5EE60F1E53920FB056A472DA6DC917BCC631C3C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_6 = ___item1;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Color>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_m2BA86015892099D1C8AE441DEA6A5425188B848A_gshared (RuntimeArray * __this, int32_t ___index0, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_m2BA86015892099D1C8AE441DEA6A5425188B848A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_m2BA86015892099D1C8AE441DEA6A5425188B848A_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_6 = ___item1;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.CombineInstance>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisCombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28_mD5A5BEC8636BF02D9C0FDD1EEFB018219EE9C585_gshared (RuntimeArray * __this, int32_t ___index0, CombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisCombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28_mD5A5BEC8636BF02D9C0FDD1EEFB018219EE9C585_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisCombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28_mD5A5BEC8636BF02D9C0FDD1EEFB018219EE9C585_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
CombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28 L_6 = ___item1;
CombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (CombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28 *)(CombineInstance_t096DFC9075A3AAA2F0830C19073BC86927DDFA28 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.ContactPoint2D>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m83B902932E700A236743247F4F26F845510703A8_gshared (RuntimeArray * __this, int32_t ___index0, ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m83B902932E700A236743247F4F26F845510703A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m83B902932E700A236743247F4F26F845510703A8_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 L_6 = ___item1;
ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.ContactPoint>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_mB01967007BCD5ABE2F2E984A4A24F3A06D83971D_gshared (RuntimeArray * __this, int32_t ___index0, ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_mB01967007BCD5ABE2F2E984A4A24F3A06D83971D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_mB01967007BCD5ABE2F2E984A4A24F3A06D83971D_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 L_6 = ___item1;
ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.EventSystems.RaycastResult>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m43976339EB0637792536F612CE3B0770985F072B_gshared (RuntimeArray * __this, int32_t ___index0, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m43976339EB0637792536F612CE3B0770985F072B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m43976339EB0637792536F612CE3B0770985F072B_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_6 = ___item1;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m6A076451AA3F77754FFF77EF535DEA8A9128740C_gshared (RuntimeArray * __this, int32_t ___index0, PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m6A076451AA3F77754FFF77EF535DEA8A9128740C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisPlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D_m6A076451AA3F77754FFF77EF535DEA8A9128740C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D L_6 = ___item1;
PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)(PlayerLoopSystem_t89BC6208BDD3B7C57FED7B0201341A7D4E846A6D *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m851D07F28D87FFE49B60FD952C28F6ACD701253C_gshared (RuntimeArray * __this, int32_t ___index0, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m851D07F28D87FFE49B60FD952C28F6ACD701253C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m851D07F28D87FFE49B60FD952C28F6ACD701253C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA L_6 = ___item1;
TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.FrameTiming>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisFrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC_m5F7556610813CC43030119F48A253E3CA5B1E5C2_gshared (RuntimeArray * __this, int32_t ___index0, FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisFrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC_m5F7556610813CC43030119F48A253E3CA5B1E5C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisFrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC_m5F7556610813CC43030119F48A253E3CA5B1E5C2_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC L_6 = ___item1;
FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC *)(FrameTiming_tAF2F0C7558BD0631E69FC0D0A5ADCE90EDC166FC *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.GradientAlphaKey>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisGradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_mD482DA45D0355495FB8DAE26FD09146805EC7885_gshared (RuntimeArray * __this, int32_t ___index0, GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisGradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_mD482DA45D0355495FB8DAE26FD09146805EC7885_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisGradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_mD482DA45D0355495FB8DAE26FD09146805EC7885_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 L_6 = ___item1;
GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 *)(GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Keyframe>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m647D9E49C5279A4E2EFF764FC1B3B787E97ECC12_gshared (RuntimeArray * __this, int32_t ___index0, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m647D9E49C5279A4E2EFF764FC1B3B787E97ECC12_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m647D9E49C5279A4E2EFF764FC1B3B787E97ECC12_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 L_6 = ___item1;
Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.LayerMask>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m1A723EBA2595AE3DD25A5258C8F01B93994FF381_gshared (RuntimeArray * __this, int32_t ___index0, LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m1A723EBA2595AE3DD25A5258C8F01B93994FF381_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisLayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0_m1A723EBA2595AE3DD25A5258C8F01B93994FF381_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 L_6 = ___item1;
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 *)(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Matrix4x4>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m860C1A2E5DF86D94436E5D41DAE951EC2AE4DCDD_gshared (RuntimeArray * __this, int32_t ___index0, Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m860C1A2E5DF86D94436E5D41DAE951EC2AE4DCDD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m860C1A2E5DF86D94436E5D41DAE951EC2AE4DCDD_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA L_6 = ___item1;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.ParticleSystem_Particle>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mD37AF2C226215331F3F2727C5BE0631695BB1AEF_gshared (RuntimeArray * __this, int32_t ___index0, Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mD37AF2C226215331F3F2727C5BE0631695BB1AEF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisParticle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E_mD37AF2C226215331F3F2727C5BE0631695BB1AEF_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E L_6 = ___item1;
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E *)(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Plane>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mD758990DE7C36C2680EC805CEBC1CBDED4286471_gshared (RuntimeArray * __this, int32_t ___index0, Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mD758990DE7C36C2680EC805CEBC1CBDED4286471_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mD758990DE7C36C2680EC805CEBC1CBDED4286471_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED L_6 = ___item1;
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Playables.PlayableBinding>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mAF5BFF3E5EF25739091384771958CE9F7B36E8F5_gshared (RuntimeArray * __this, int32_t ___index0, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mAF5BFF3E5EF25739091384771958CE9F7B36E8F5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mAF5BFF3E5EF25739091384771958CE9F7B36E8F5_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_6 = ___item1;
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Quaternion>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_m674CA2107B9B9B0F6EA9CDFEC44180264A05458B_gshared (RuntimeArray * __this, int32_t ___index0, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_m674CA2107B9B9B0F6EA9CDFEC44180264A05458B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisQuaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_m674CA2107B9B9B0F6EA9CDFEC44180264A05458B_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_6 = ___item1;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Ray>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_mA56650FF92BDAF14F5AF3CA26CF17FC893DF591B_gshared (RuntimeArray * __this, int32_t ___index0, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_mA56650FF92BDAF14F5AF3CA26CF17FC893DF591B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisRay_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2_mA56650FF92BDAF14F5AF3CA26CF17FC893DF591B_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 L_6 = ___item1;
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.RaycastHit2D>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m75CEE3863FA9C89E0277D0A6CBBCB4B78421F623_gshared (RuntimeArray * __this, int32_t ___index0, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m75CEE3863FA9C89E0277D0A6CBBCB4B78421F623_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m75CEE3863FA9C89E0277D0A6CBBCB4B78421F623_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_6 = ___item1;
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.RaycastHit>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m9C01ECC56E5FE6E9D33831551E5C34D6CA259B4D_gshared (RuntimeArray * __this, int32_t ___index0, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m9C01ECC56E5FE6E9D33831551E5C34D6CA259B4D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m9C01ECC56E5FE6E9D33831551E5C34D6CA259B4D_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 L_6 = ___item1;
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.SceneManagement.Scene>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_m7449434ED8781E13C4A15A1E73672344C4A79A71_gshared (RuntimeArray * __this, int32_t ___index0, Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_m7449434ED8781E13C4A15A1E73672344C4A79A71_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisScene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2_m7449434ED8781E13C4A15A1E73672344C4A79A71_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 L_6 = ___item1;
Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)(Scene_t942E023788C2BC9FBB7EC8356B4FB0088B2CFED2 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.SendMouseEvents_HitInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m49F0BDE5938059294C1227B99C92773DEEA415D0_gshared (RuntimeArray * __this, int32_t ___index0, HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m49F0BDE5938059294C1227B99C92773DEEA415D0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisHitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12_m49F0BDE5938059294C1227B99C92773DEEA415D0_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 L_6 = ___item1;
HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)(HitInfo_t3DDACA0CB28E94463E17542FA7F04245A8AE1C12 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.TextCore.GlyphRect>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m7359C5010E5CAF53A2AABB426A0B0AE4AD39CE70_gshared (RuntimeArray * __this, int32_t ___index0, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m7359C5010E5CAF53A2AABB426A0B0AE4AD39CE70_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m7359C5010E5CAF53A2AABB426A0B0AE4AD39CE70_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C L_6 = ___item1;
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C *)(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mD8DCAB2332A9BAF1ABE6176BF46254FB23E52662_gshared (RuntimeArray * __this, int32_t ___index0, GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mD8DCAB2332A9BAF1ABE6176BF46254FB23E52662_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mD8DCAB2332A9BAF1ABE6176BF46254FB23E52662_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 L_6 = ___item1;
GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 *)(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m5126FE9D06C758DADD2092A59A687FF91C8ED973_gshared (RuntimeArray * __this, int32_t ___index0, GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m5126FE9D06C758DADD2092A59A687FF91C8ED973_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m5126FE9D06C758DADD2092A59A687FF91C8ED973_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C L_6 = ___item1;
GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C *)(GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Touch>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTouch_t806752C775BA713A91B6588A07CA98417CABC003_m96544F55E60FF0F0157C3409A86B26B57837E1EF_gshared (RuntimeArray * __this, int32_t ___index0, Touch_t806752C775BA713A91B6588A07CA98417CABC003 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTouch_t806752C775BA713A91B6588A07CA98417CABC003_m96544F55E60FF0F0157C3409A86B26B57837E1EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTouch_t806752C775BA713A91B6588A07CA98417CABC003_m96544F55E60FF0F0157C3409A86B26B57837E1EF_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Touch_t806752C775BA713A91B6588A07CA98417CABC003 L_6 = ___item1;
Touch_t806752C775BA713A91B6588A07CA98417CABC003 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Touch_t806752C775BA713A91B6588A07CA98417CABC003 *)(Touch_t806752C775BA713A91B6588A07CA98417CABC003 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.UI.ColorBlock>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m1D8E51DA9EBE89279822E57495AAE0073B4624A4_gshared (RuntimeArray * __this, int32_t ___index0, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m1D8E51DA9EBE89279822E57495AAE0073B4624A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_m1D8E51DA9EBE89279822E57495AAE0073B4624A4_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_6 = ___item1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.UI.Navigation>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m54EAED961047BB74BC79DA8D9E4E89B367B387BD_gshared (RuntimeArray * __this, int32_t ___index0, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m54EAED961047BB74BC79DA8D9E4E89B367B387BD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m54EAED961047BB74BC79DA8D9E4E89B367B387BD_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_6 = ___item1;
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.UI.SpriteState>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m227A789F6D097430A3B9DABEE6D98494E27D12B3_gshared (RuntimeArray * __this, int32_t ___index0, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m227A789F6D097430A3B9DABEE6D98494E27D12B3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m227A789F6D097430A3B9DABEE6D98494E27D12B3_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A L_6 = ___item1;
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.UICharInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mACE9035B6C95670543780D796FB5D07C68F9C668_gshared (RuntimeArray * __this, int32_t ___index0, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mACE9035B6C95670543780D796FB5D07C68F9C668_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_mACE9035B6C95670543780D796FB5D07C68F9C668_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_6 = ___item1;
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.UILineInfo>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m99FFD7AB9C46DC02E029EB99C3DF21C1748C9983_gshared (RuntimeArray * __this, int32_t ___index0, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m99FFD7AB9C46DC02E029EB99C3DF21C1748C9983_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m99FFD7AB9C46DC02E029EB99C3DF21C1748C9983_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_6 = ___item1;
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.UIVertex>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mA3238E6A75A95DB9649C765FBBF67509B30C8F34_gshared (RuntimeArray * __this, int32_t ___index0, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mA3238E6A75A95DB9649C765FBBF67509B30C8F34_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mA3238E6A75A95DB9649C765FBBF67509B30C8F34_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_6 = ___item1;
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.UnitySynchronizationContext_WorkRequest>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m191595B96A5B85F3248B0C78DA9A1B0E37F24CAD_gshared (RuntimeArray * __this, int32_t ___index0, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m191595B96A5B85F3248B0C78DA9A1B0E37F24CAD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m191595B96A5B85F3248B0C78DA9A1B0E37F24CAD_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_6 = ___item1;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Vector2>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_mF595E748911BE008D7D01AA58CCE9F05791C1C31_gshared (RuntimeArray * __this, int32_t ___index0, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_mF595E748911BE008D7D01AA58CCE9F05791C1C31_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_mF595E748911BE008D7D01AA58CCE9F05791C1C31_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_6 = ___item1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Vector3>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mA9E4A2694D9DADDC275D936C21AF6A0675659405_gshared (RuntimeArray * __this, int32_t ___index0, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mA9E4A2694D9DADDC275D936C21AF6A0675659405_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_mA9E4A2694D9DADDC275D936C21AF6A0675659405_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_6 = ___item1;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Vector4>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mC1CCB9CFB1469B417A3C818CEBC21492089E2E7A_gshared (RuntimeArray * __this, int32_t ___index0, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mC1CCB9CFB1469B417A3C818CEBC21492089E2E7A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mC1CCB9CFB1469B417A3C818CEBC21492089E2E7A_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_6 = ___item1;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.Windows.Speech.SemanticMeaning>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_m44C8D392D13ADD197811FA20DE898E5C7F1C940C_gshared (RuntimeArray * __this, int32_t ___index0, SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_m44C8D392D13ADD197811FA20DE898E5C7F1C940C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_m44C8D392D13ADD197811FA20DE898E5C7F1C940C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C L_6 = ___item1;
SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C *)(SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.XR.WSA.Input.InteractionSourceState>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisInteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_m71C4F489BB428187DA197516A4F2D39371F1B351_gshared (RuntimeArray * __this, int32_t ___index0, InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisInteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_m71C4F489BB428187DA197516A4F2D39371F1B351_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisInteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250_m71C4F489BB428187DA197516A4F2D39371F1B351_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 L_6 = ___item1;
InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 *)(InteractionSourceState_t41A6FEEA413909D5D94BF48BC907FE5DBD162250 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<UnityEngine.XR.WSA.SurfaceId>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_mEC1CBCD13ECBBAD18B1CB5BB5A92F1DD52B94C44_gshared (RuntimeArray * __this, int32_t ___index0, SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_mEC1CBCD13ECBBAD18B1CB5BB5A92F1DD52B94C44_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF_mEC1CBCD13ECBBAD18B1CB5BB5A92F1DD52B94C44_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF L_6 = ___item1;
SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF *)(SurfaceId_t5FCE14311FE5CFC3C4DDFCAC0B7FC2F54123E9BF *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.DateTime>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisDateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_mCD3930303417707F27BDFAD31BD924A5F15D4EDE_gshared (RuntimeArray * __this, int32_t ___index0, DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisDateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_mCD3930303417707F27BDFAD31BD924A5F15D4EDE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisDateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795_mCD3930303417707F27BDFAD31BD924A5F15D4EDE_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 L_6 = ___item1;
DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 *)(DateTime_t9D0F9E236B6200FF6413DD837230D25E285E7795 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.EventRegistrationToken>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisEventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_m499613758498F5CCB4589CE822038E64B1FA39D7_gshared (RuntimeArray * __this, int32_t ___index0, EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisEventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_m499613758498F5CCB4589CE822038E64B1FA39D7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisEventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4_m499613758498F5CCB4589CE822038E64B1FA39D7_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4 L_6 = ___item1;
EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4 *)(EventRegistrationToken_tB7331C6A2CA7A6A9AD497264E9E787B3B71126D4 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.FoundationContract>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisFoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_mD83EB0BF32C5AB77ADDEE3828797A10A13942985_gshared (RuntimeArray * __this, int32_t ___index0, FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisFoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_mD83EB0BF32C5AB77ADDEE3828797A10A13942985_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisFoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9_mD83EB0BF32C5AB77ADDEE3828797A10A13942985_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 L_6 = ___item1;
FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 *)(FoundationContract_tA5129870FD2EAAE9518C2EA28B32757D4FD977E9 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.HResult>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisHResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_m8FE8D06CBD136E7D7A6911E551F0C1726EE53D27_gshared (RuntimeArray * __this, int32_t ___index0, HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisHResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_m8FE8D06CBD136E7D7A6911E551F0C1726EE53D27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisHResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB_m8FE8D06CBD136E7D7A6911E551F0C1726EE53D27_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB L_6 = ___item1;
HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB *)(HResult_tD2916D1ECD3A4E474B4A639B8D27E510FF8421DB *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.Numerics.Matrix4x4>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisMatrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_mC9F0FCB8EC8A50CDB09342140CD03E8AD242259C_gshared (RuntimeArray * __this, int32_t ___index0, Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisMatrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_mC9F0FCB8EC8A50CDB09342140CD03E8AD242259C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisMatrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9_mC9F0FCB8EC8A50CDB09342140CD03E8AD242259C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9 L_6 = ___item1;
Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9 *)(Matrix4x4_tDA520C56DAF83F993AAC508EE28B33C1310721A9 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.Numerics.Quaternion>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisQuaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_mC4F1131F7BE20DB76860A9DAA5ACD54146A2C667_gshared (RuntimeArray * __this, int32_t ___index0, Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisQuaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_mC4F1131F7BE20DB76860A9DAA5ACD54146A2C667_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisQuaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C_mC4F1131F7BE20DB76860A9DAA5ACD54146A2C667_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C L_6 = ___item1;
Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C *)(Quaternion_t7BAD18B1DD679715F8E0E79AD9FB22C0E313023C *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.Numerics.Vector3>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisVector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_mDDDA69BF81C30883FB6F72735CA3A1BD08B586DF_gshared (RuntimeArray * __this, int32_t ___index0, Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisVector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_mDDDA69BF81C30883FB6F72735CA3A1BD08B586DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisVector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD_mDDDA69BF81C30883FB6F72735CA3A1BD08B586DF_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD L_6 = ___item1;
Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD *)(Vector3_t7F46349C1A2C560D80B80153D1CED7B9453530BD *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.Point>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisPoint_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC_m90FCAE66322CBF401BBF8E49EDCD946121B0287E_gshared (RuntimeArray * __this, int32_t ___index0, Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisPoint_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC_m90FCAE66322CBF401BBF8E49EDCD946121B0287E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisPoint_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC_m90FCAE66322CBF401BBF8E49EDCD946121B0287E_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC L_6 = ___item1;
Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC *)(Point_t7C3010F37F6E9DB2B792BBDAFF58C3232A3356AC *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.Point>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisPoint_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_m5403D03C15ECAE0A20AAE6CBB5FC67A945A76CDA_gshared (RuntimeArray * __this, int32_t ___index0, Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisPoint_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_m5403D03C15ECAE0A20AAE6CBB5FC67A945A76CDA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisPoint_tEC1815EC53B414E5281C817051DA4F985DB9C8C1_m5403D03C15ECAE0A20AAE6CBB5FC67A945A76CDA_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1 L_6 = ___item1;
Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1 *)(Point_tEC1815EC53B414E5281C817051DA4F985DB9C8C1 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.Rect>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisRect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0_mE5014AB2DBC9A227BC42D7B9E77A41F93A5828E4_gshared (RuntimeArray * __this, int32_t ___index0, Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisRect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0_mE5014AB2DBC9A227BC42D7B9E77A41F93A5828E4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisRect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0_mE5014AB2DBC9A227BC42D7B9E77A41F93A5828E4_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 L_6 = ___item1;
Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 *)(Rect_tD277A11EF3F3CC633796B8FF0BC4822826E72BB0 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.Rect>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisRect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_mB0FF1DB0D188E6FB99A48624774C0191DDEFDB16_gshared (RuntimeArray * __this, int32_t ___index0, Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisRect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_mB0FF1DB0D188E6FB99A48624774C0191DDEFDB16_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisRect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA_mB0FF1DB0D188E6FB99A48624774C0191DDEFDB16_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA L_6 = ___item1;
Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA *)(Rect_tC430FB498F3B42BBCD93E88C03BA3CBB77B60ACA *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.Size>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSize_t4766FF009097CE547F699B69250246058DA664D9_mB9943ABCFEB353BD4D837D422D10EBB0BDDAD27E_gshared (RuntimeArray * __this, int32_t ___index0, Size_t4766FF009097CE547F699B69250246058DA664D9 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSize_t4766FF009097CE547F699B69250246058DA664D9_mB9943ABCFEB353BD4D837D422D10EBB0BDDAD27E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSize_t4766FF009097CE547F699B69250246058DA664D9_mB9943ABCFEB353BD4D837D422D10EBB0BDDAD27E_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Size_t4766FF009097CE547F699B69250246058DA664D9 L_6 = ___item1;
Size_t4766FF009097CE547F699B69250246058DA664D9 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Size_t4766FF009097CE547F699B69250246058DA664D9 *)(Size_t4766FF009097CE547F699B69250246058DA664D9 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.Size>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSize_tBE9F75FCA10276DC3998237A8906733B64FB75A2_m12542C4DEB17A36AD25C1F56ADCDF452A699D46C_gshared (RuntimeArray * __this, int32_t ___index0, Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSize_tBE9F75FCA10276DC3998237A8906733B64FB75A2_m12542C4DEB17A36AD25C1F56ADCDF452A699D46C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSize_tBE9F75FCA10276DC3998237A8906733B64FB75A2_m12542C4DEB17A36AD25C1F56ADCDF452A699D46C_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 L_6 = ___item1;
Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 *)(Size_tBE9F75FCA10276DC3998237A8906733B64FB75A2 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.TimeSpan>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTimeSpan_tD18885B289077804D4E82931E68E84181C072755_m4DBFC479A4084B5C3DD76EE2DC501AC207239C51_gshared (RuntimeArray * __this, int32_t ___index0, TimeSpan_tD18885B289077804D4E82931E68E84181C072755 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTimeSpan_tD18885B289077804D4E82931E68E84181C072755_m4DBFC479A4084B5C3DD76EE2DC501AC207239C51_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTimeSpan_tD18885B289077804D4E82931E68E84181C072755_m4DBFC479A4084B5C3DD76EE2DC501AC207239C51_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
TimeSpan_tD18885B289077804D4E82931E68E84181C072755 L_6 = ___item1;
TimeSpan_tD18885B289077804D4E82931E68E84181C072755 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TimeSpan_tD18885B289077804D4E82931E68E84181C072755 *)(TimeSpan_tD18885B289077804D4E82931E68E84181C072755 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Foundation.UniversalApiContract>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisUniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_m91F0FE3757901389308EBB0200A9280E7308A2DC_gshared (RuntimeArray * __this, int32_t ___index0, UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisUniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_m91F0FE3757901389308EBB0200A9280E7308A2DC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisUniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9_m91F0FE3757901389308EBB0200A9280E7308A2DC_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9 L_6 = ___item1;
UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9 *)(UniversalApiContract_t2909295C70CE09107C85CD360BE6888A4D1078D9 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Perception.People.HandMeshVertex>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisHandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_mAD6D46418DF3CEB5FB573C9284C30D9069C5A683_gshared (RuntimeArray * __this, int32_t ___index0, HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisHandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_mAD6D46418DF3CEB5FB573C9284C30D9069C5A683_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisHandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3_mAD6D46418DF3CEB5FB573C9284C30D9069C5A683_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3 L_6 = ___item1;
HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3 L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3 *)(HandMeshVertex_t97CBC783B105CAF080C98A2E7D750023040B41C3 *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Perception.People.JointPose>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisJointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_m921BF123A19237A9BEA15BA0CFC08663228C1E2A_gshared (RuntimeArray * __this, int32_t ___index0, JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisJointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_m921BF123A19237A9BEA15BA0CFC08663228C1E2A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisJointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE_m921BF123A19237A9BEA15BA0CFC08663228C1E2A_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE L_6 = ___item1;
JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE *)(JointPose_tFD55E748576AC22B47EB160A821FCEAD75C509CE *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.Perception.Spatial.SpatialRay>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisSpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_m8C79896BB464D7545504B3E3676004BF8FCDA0C3_gshared (RuntimeArray * __this, int32_t ___index0, SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisSpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_m8C79896BB464D7545504B3E3676004BF8FCDA0C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisSpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B_m8C79896BB464D7545504B3E3676004BF8FCDA0C3_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B L_6 = ___item1;
SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B *)(SpatialRay_t3D16C2F3DEA64DE3AD8ECA0587068A965A552C2B *)(&___item1));
return;
}
}
// System.Void System.Array::InternalArray__set_Item<Windows.UI.Xaml.Interop.TypeName>(System.Int32,T)
extern "C" IL2CPP_METHOD_ATTR void Array_InternalArray__set_Item_TisTypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_m6692FDE97C8032F715846B304791F7EF44C584C7_gshared (RuntimeArray * __this, int32_t ___index0, TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__set_Item_TisTypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_m6692FDE97C8032F715846B304791F7EF44C584C7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_2, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__set_Item_TisTypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC_m6692FDE97C8032F715846B304791F7EF44C584C7_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
int32_t L_5 = ___index0;
TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC L_6 = ___item1;
TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_7);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_8);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_8);
return;
}
IL_0028:
{
int32_t L_9 = ___index0;
NullCheck((RuntimeArray *)__this);
ArraySetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_9, (TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC *)(TypeName_t17AF60463A5503D900B87745B0BF9C96F0F82EEC *)(&___item1));
return;
}
}
// System.Void System.Array::Resize<System.Char>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_gshared (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_1 = NULL;
int32_t G_B7_0 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE3769C688380A92B93977FA652B43B0C793F4EDC_RuntimeMethod_var);
}
IL_0014:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** L_2 = ___array0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = *((CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2**)L_2);
V_0 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)L_3;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** L_5 = ___array0;
int32_t L_6 = ___newSize1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_7 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)L_11;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_12 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = V_1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** L_18 = ___array0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<System.Int32>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m59A6399E5C225A177C1BFE9D14C7CA7B8E8C6AD1_gshared (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m59A6399E5C225A177C1BFE9D14C7CA7B8E8C6AD1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_1 = NULL;
int32_t G_B7_0 = 0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m59A6399E5C225A177C1BFE9D14C7CA7B8E8C6AD1_RuntimeMethod_var);
}
IL_0014:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** L_2 = ___array0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = *((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**)L_2);
V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_3;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** L_5 = ___array0;
int32_t L_6 = ___newSize1;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_11;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = V_0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = V_1;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** L_18 = ___array0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<System.Int32Enum>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mEDDB6AD0455D2FE7629767F694EB858C9B47419E_gshared (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mEDDB6AD0455D2FE7629767F694EB858C9B47419E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* V_0 = NULL;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* V_1 = NULL;
int32_t G_B7_0 = 0;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mEDDB6AD0455D2FE7629767F694EB858C9B47419E_RuntimeMethod_var);
}
IL_0014:
{
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A** L_2 = ___array0;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_3 = *((Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A**)L_2);
V_0 = (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*)L_3;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A** L_5 = ___array0;
int32_t L_6 = ___newSize1;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_7 = (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_11 = (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A*)L_11;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_12 = V_0;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_13 = V_1;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A** L_18 = ___array0;
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<System.Object>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisRuntimeObject_mB0DBA075A9D1EE03ADE844755C17088FDC73B1EF_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisRuntimeObject_mB0DBA075A9D1EE03ADE844755C17088FDC73B1EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t G_B7_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisRuntimeObject_mB0DBA075A9D1EE03ADE844755C17088FDC73B1EF_RuntimeMethod_var);
}
IL_0014:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_2 = ___array0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = *((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)L_2);
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_5 = ___array0;
int32_t L_6 = ___newSize1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_11;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_18 = ___array0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<System.Single>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mBC3B07A056F903F7E4BB99FA2B49CF40F99620BC_gshared (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mBC3B07A056F903F7E4BB99FA2B49CF40F99620BC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* V_0 = NULL;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* V_1 = NULL;
int32_t G_B7_0 = 0;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mBC3B07A056F903F7E4BB99FA2B49CF40F99620BC_RuntimeMethod_var);
}
IL_0014:
{
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** L_2 = ___array0;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_3 = *((SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5**)L_2);
V_0 = (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*)L_3;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** L_5 = ___array0;
int32_t L_6 = ___newSize1;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_7 = (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_11 = (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*)L_11;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_12 = V_0;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_13 = V_1;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** L_18 = ___array0;
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<System.Xml.Schema.SequenceNode_SequenceConstructPosContext>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m3A6E3BB1A813660FBAC90C9449EB01DD71F2D723_gshared (SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m3A6E3BB1A813660FBAC90C9449EB01DD71F2D723_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* V_0 = NULL;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* V_1 = NULL;
int32_t G_B7_0 = 0;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisSequenceConstructPosContext_t72DF930B1BE2676BD225E8D9622C78EF2B0DFAC1_m3A6E3BB1A813660FBAC90C9449EB01DD71F2D723_RuntimeMethod_var);
}
IL_0014:
{
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0** L_2 = ___array0;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_3 = *((SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0**)L_2);
V_0 = (SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0*)L_3;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0** L_5 = ___array0;
int32_t L_6 = ___newSize1;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_7 = (SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_11 = (SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0*)L_11;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_12 = V_0;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_13 = V_1;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0** L_18 = ___array0;
SequenceConstructPosContextU5BU5D_t776F59D343D8376446E4707D9A415D1964D1B7F0* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<TMPro.MaterialReference>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m363F319E4B71656FF703E45FE2ED18785D4845BB_gshared (MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m363F319E4B71656FF703E45FE2ED18785D4845BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* V_0 = NULL;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* V_1 = NULL;
int32_t G_B7_0 = 0;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m363F319E4B71656FF703E45FE2ED18785D4845BB_RuntimeMethod_var);
}
IL_0014:
{
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B** L_2 = ___array0;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* L_3 = *((MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B**)L_2);
V_0 = (MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B*)L_3;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B** L_5 = ___array0;
int32_t L_6 = ___newSize1;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* L_7 = (MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* L_11 = (MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B*)L_11;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* L_12 = V_0;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* L_13 = V_1;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B** L_18 = ___array0;
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<TMPro.TMP_CharacterInfo>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_m67A46DBACBE5D9CB5439A5DCBB29419AF19C1427_gshared (TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_m67A46DBACBE5D9CB5439A5DCBB29419AF19C1427_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* V_0 = NULL;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* V_1 = NULL;
int32_t G_B7_0 = 0;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_m67A46DBACBE5D9CB5439A5DCBB29419AF19C1427_RuntimeMethod_var);
}
IL_0014:
{
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604** L_2 = ___array0;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* L_3 = *((TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604**)L_2);
V_0 = (TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604*)L_3;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604** L_5 = ___array0;
int32_t L_6 = ___newSize1;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* L_7 = (TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* L_11 = (TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604*)L_11;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* L_12 = V_0;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* L_13 = V_1;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604** L_18 = ___array0;
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<TMPro.TMP_LinkInfo>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mFAD4FE8AA0B35EBEBF30F9A6238D5B61B23C2570_gshared (TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mFAD4FE8AA0B35EBEBF30F9A6238D5B61B23C2570_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* V_0 = NULL;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* V_1 = NULL;
int32_t G_B7_0 = 0;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mFAD4FE8AA0B35EBEBF30F9A6238D5B61B23C2570_RuntimeMethod_var);
}
IL_0014:
{
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D** L_2 = ___array0;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* L_3 = *((TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D**)L_2);
V_0 = (TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D*)L_3;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D** L_5 = ___array0;
int32_t L_6 = ___newSize1;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* L_7 = (TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* L_11 = (TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D*)L_11;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* L_12 = V_0;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* L_13 = V_1;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D** L_18 = ___array0;
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<TMPro.TMP_MeshInfo>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mAE525CA296A0754611697297083DF5AEC5B57EE3_gshared (TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mAE525CA296A0754611697297083DF5AEC5B57EE3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* V_0 = NULL;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* V_1 = NULL;
int32_t G_B7_0 = 0;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mAE525CA296A0754611697297083DF5AEC5B57EE3_RuntimeMethod_var);
}
IL_0014:
{
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9** L_2 = ___array0;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* L_3 = *((TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9**)L_2);
V_0 = (TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9*)L_3;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9** L_5 = ___array0;
int32_t L_6 = ___newSize1;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* L_7 = (TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* L_11 = (TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9*)L_11;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* L_12 = V_0;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* L_13 = V_1;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9** L_18 = ___array0;
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<TMPro.TMP_PageInfo>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_mE70FB4DB92EB9ED9F676A2918F7E73F5102F9CD2_gshared (TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_mE70FB4DB92EB9ED9F676A2918F7E73F5102F9CD2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* V_0 = NULL;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* V_1 = NULL;
int32_t G_B7_0 = 0;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_mE70FB4DB92EB9ED9F676A2918F7E73F5102F9CD2_RuntimeMethod_var);
}
IL_0014:
{
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847** L_2 = ___array0;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* L_3 = *((TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847**)L_2);
V_0 = (TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847*)L_3;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847** L_5 = ___array0;
int32_t L_6 = ___newSize1;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* L_7 = (TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* L_11 = (TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847*)L_11;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* L_12 = V_0;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* L_13 = V_1;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847** L_18 = ___array0;
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<TMPro.TMP_Text_UnicodeChar>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m646C34E93D397C6589F59F2976E362A2A10577E7_gshared (UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m646C34E93D397C6589F59F2976E362A2A10577E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* V_0 = NULL;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* V_1 = NULL;
int32_t G_B7_0 = 0;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m646C34E93D397C6589F59F2976E362A2A10577E7_RuntimeMethod_var);
}
IL_0014:
{
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505** L_2 = ___array0;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* L_3 = *((UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505**)L_2);
V_0 = (UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505*)L_3;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505** L_5 = ___array0;
int32_t L_6 = ___newSize1;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* L_7 = (UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* L_11 = (UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505*)L_11;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* L_12 = V_0;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* L_13 = V_1;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505** L_18 = ___array0;
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<TMPro.TMP_WordInfo>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m033E60DA563FE103067AD18F01568D21F240E342_gshared (TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m033E60DA563FE103067AD18F01568D21F240E342_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* V_0 = NULL;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* V_1 = NULL;
int32_t G_B7_0 = 0;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m033E60DA563FE103067AD18F01568D21F240E342_RuntimeMethod_var);
}
IL_0014:
{
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09** L_2 = ___array0;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* L_3 = *((TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09**)L_2);
V_0 = (TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09*)L_3;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09** L_5 = ___array0;
int32_t L_6 = ___newSize1;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* L_7 = (TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* L_11 = (TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09*)L_11;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* L_12 = V_0;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* L_13 = V_1;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09** L_18 = ___array0;
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<UnityEngine.Color32>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m6FA62EF3B297F704B173C29EB9C7291923C7305F_gshared (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m6FA62EF3B297F704B173C29EB9C7291923C7305F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* V_0 = NULL;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* V_1 = NULL;
int32_t G_B7_0 = 0;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m6FA62EF3B297F704B173C29EB9C7291923C7305F_RuntimeMethod_var);
}
IL_0014:
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983** L_2 = ___array0;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_3 = *((Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983**)L_2);
V_0 = (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)L_3;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983** L_5 = ___array0;
int32_t L_6 = ___newSize1;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_7 = (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_11 = (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983*)L_11;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_12 = V_0;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_13 = V_1;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983** L_18 = ___array0;
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<UnityEngine.Vector2>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m58E4E63CB9CF024CDBE7EBCDC6FBCD8615A48397_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m58E4E63CB9CF024CDBE7EBCDC6FBCD8615A48397_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* V_0 = NULL;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* V_1 = NULL;
int32_t G_B7_0 = 0;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m58E4E63CB9CF024CDBE7EBCDC6FBCD8615A48397_RuntimeMethod_var);
}
IL_0014:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** L_2 = ___array0;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_3 = *((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6**)L_2);
V_0 = (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_3;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** L_5 = ___array0;
int32_t L_6 = ___newSize1;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_7 = (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_11 = (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_11;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_12 = V_0;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_13 = V_1;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** L_18 = ___array0;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<UnityEngine.Vector3>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m221DE39D3DB763C0993F6B3C819ADBB3034FAF6E_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m221DE39D3DB763C0993F6B3C819ADBB3034FAF6E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* V_0 = NULL;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* V_1 = NULL;
int32_t G_B7_0 = 0;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m221DE39D3DB763C0993F6B3C819ADBB3034FAF6E_RuntimeMethod_var);
}
IL_0014:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** L_2 = ___array0;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_3 = *((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28**)L_2);
V_0 = (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_3;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** L_5 = ___array0;
int32_t L_6 = ___newSize1;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_7 = (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_11 = (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_11;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_12 = V_0;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_13 = V_1;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** L_18 = ___array0;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Resize<UnityEngine.Vector4>(T[]U26,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Resize_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m87BCC22A024C8AA921401DE15731058BB09CA2F3_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66** ___array0, int32_t ___newSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Resize_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m87BCC22A024C8AA921401DE15731058BB09CA2F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* V_0 = NULL;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* V_1 = NULL;
int32_t G_B7_0 = 0;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* G_B7_1 = NULL;
int32_t G_B7_2 = 0;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* G_B7_3 = NULL;
int32_t G_B6_0 = 0;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* G_B6_1 = NULL;
int32_t G_B6_2 = 0;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* G_B8_2 = NULL;
int32_t G_B8_3 = 0;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* G_B8_4 = NULL;
{
int32_t L_0 = ___newSize1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, (String_t*)_stringLiteral0D3294EFD91CDAA780911EB468485CEAB39C3BCA, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Resize_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m87BCC22A024C8AA921401DE15731058BB09CA2F3_RuntimeMethod_var);
}
IL_0014:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66** L_2 = ___array0;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_3 = *((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66**)L_2);
V_0 = (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_3;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_4 = V_0;
if (L_4)
{
goto IL_0023;
}
}
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66** L_5 = ___array0;
int32_t L_6 = ___newSize1;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_7 = (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_6);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
return;
}
IL_0023:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = ___newSize1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))) == ((int32_t)L_9)))
{
goto IL_0048;
}
}
{
int32_t L_10 = ___newSize1;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_11 = (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_10);
V_1 = (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_11;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_12 = V_0;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_13 = V_1;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = ___newSize1;
G_B6_0 = 0;
G_B6_1 = L_13;
G_B6_2 = 0;
G_B6_3 = L_12;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))) > ((int32_t)L_15)))
{
G_B7_0 = 0;
G_B7_1 = L_13;
G_B7_2 = 0;
G_B7_3 = L_12;
goto IL_003f;
}
}
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_16 = V_0;
NullCheck(L_16);
G_B8_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
G_B8_4 = G_B6_3;
goto IL_0040;
}
IL_003f:
{
int32_t L_17 = ___newSize1;
G_B8_0 = L_17;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
G_B8_4 = G_B7_3;
}
IL_0040:
{
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)G_B8_4, (int32_t)G_B8_3, (RuntimeArray *)(RuntimeArray *)G_B8_2, (int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL);
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66** L_18 = ___array0;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_19 = V_1;
*((RuntimeObject **)L_18) = (RuntimeObject *)L_19;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_18, (RuntimeObject *)L_19);
}
IL_0048:
{
return;
}
}
// System.Void System.Array::Reverse<Microsoft.MixedReality.Toolkit.BaseEventSystem_EventHandlerEntry>(T[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisEventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_mC2789C8811B94E69BC35B37B507F5A0A2F705B28_gshared (EventHandlerEntryU5BU5D_t7D3B422539E522484BD470A429D090B18C7A492E* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisEventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_mC2789C8811B94E69BC35B37B507F5A0A2F705B28_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 V_2;
memset(&V_2, 0, sizeof(V_2));
String_t* G_B7_0 = NULL;
{
EventHandlerEntryU5BU5D_t7D3B422539E522484BD470A429D090B18C7A492E* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisEventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_mC2789C8811B94E69BC35B37B507F5A0A2F705B28_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisEventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_mC2789C8811B94E69BC35B37B507F5A0A2F705B28_RuntimeMethod_var);
}
IL_0031:
{
EventHandlerEntryU5BU5D_t7D3B422539E522484BD470A429D090B18C7A492E* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisEventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7_mC2789C8811B94E69BC35B37B507F5A0A2F705B28_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_10 = ___index1;
V_0 = (int32_t)L_10;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1));
goto IL_0074;
}
IL_004e:
{
EventHandlerEntryU5BU5D_t7D3B422539E522484BD470A429D090B18C7A492E* L_13 = ___array0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = L_14;
EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_2 = (EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 )L_16;
EventHandlerEntryU5BU5D_t7D3B422539E522484BD470A429D090B18C7A492E* L_17 = ___array0;
int32_t L_18 = V_0;
EventHandlerEntryU5BU5D_t7D3B422539E522484BD470A429D090B18C7A492E* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 )L_22);
EventHandlerEntryU5BU5D_t7D3B422539E522484BD470A429D090B18C7A492E* L_23 = ___array0;
int32_t L_24 = V_1;
EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 L_25 = V_2;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (EventHandlerEntry_t6F3AFBDC55F92B1C8E288527C6CD4F805C9FD8F7 )L_25);
int32_t L_26 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
}
IL_0074:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
return;
}
}
// System.Void System.Array::Reverse<Microsoft.MixedReality.Toolkit.Boundary.Edge>(T[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisEdge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_m2A20CDFECF1CC8C59E9FF935357E82C075D823DB_gshared (EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisEdge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_m2A20CDFECF1CC8C59E9FF935357E82C075D823DB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D V_2;
memset(&V_2, 0, sizeof(V_2));
String_t* G_B7_0 = NULL;
{
EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisEdge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_m2A20CDFECF1CC8C59E9FF935357E82C075D823DB_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisEdge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_m2A20CDFECF1CC8C59E9FF935357E82C075D823DB_RuntimeMethod_var);
}
IL_0031:
{
EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisEdge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D_m2A20CDFECF1CC8C59E9FF935357E82C075D823DB_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_10 = ___index1;
V_0 = (int32_t)L_10;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1));
goto IL_0074;
}
IL_004e:
{
EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84* L_13 = ___array0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = L_14;
Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_2 = (Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D )L_16;
EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84* L_17 = ___array0;
int32_t L_18 = V_0;
EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D )L_22);
EdgeU5BU5D_t7E044B25C942823DE9859802DCB5083603078A84* L_23 = ___array0;
int32_t L_24 = V_1;
Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D L_25 = V_2;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (Edge_tDDBEEDA96F6415F4ACED33A74B60C2A60692A89D )L_25);
int32_t L_26 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
}
IL_0074:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
return;
}
}
// System.Void System.Array::Reverse<Microsoft.MixedReality.Toolkit.Input.MixedRealityInputAction>(T[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisMixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_m0ECE7C8BA0206390632822FBD4EED72FBE5A7FD8_gshared (MixedRealityInputActionU5BU5D_t4FDC16B5B905261A6B1A4DDF75D4EF0296DD55E7* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisMixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_m0ECE7C8BA0206390632822FBD4EED72FBE5A7FD8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 V_2;
memset(&V_2, 0, sizeof(V_2));
String_t* G_B7_0 = NULL;
{
MixedRealityInputActionU5BU5D_t4FDC16B5B905261A6B1A4DDF75D4EF0296DD55E7* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisMixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_m0ECE7C8BA0206390632822FBD4EED72FBE5A7FD8_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisMixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_m0ECE7C8BA0206390632822FBD4EED72FBE5A7FD8_RuntimeMethod_var);
}
IL_0031:
{
MixedRealityInputActionU5BU5D_t4FDC16B5B905261A6B1A4DDF75D4EF0296DD55E7* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisMixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001_m0ECE7C8BA0206390632822FBD4EED72FBE5A7FD8_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_10 = ___index1;
V_0 = (int32_t)L_10;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1));
goto IL_0074;
}
IL_004e:
{
MixedRealityInputActionU5BU5D_t4FDC16B5B905261A6B1A4DDF75D4EF0296DD55E7* L_13 = ___array0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = L_14;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_2 = (MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 )L_16;
MixedRealityInputActionU5BU5D_t4FDC16B5B905261A6B1A4DDF75D4EF0296DD55E7* L_17 = ___array0;
int32_t L_18 = V_0;
MixedRealityInputActionU5BU5D_t4FDC16B5B905261A6B1A4DDF75D4EF0296DD55E7* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 )L_22);
MixedRealityInputActionU5BU5D_t4FDC16B5B905261A6B1A4DDF75D4EF0296DD55E7* L_23 = ___array0;
int32_t L_24 = V_1;
MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 L_25 = V_2;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (MixedRealityInputAction_t7ACD606B450B908E03401BB3CC5742FBB6810001 )L_25);
int32_t L_26 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
}
IL_0074:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
return;
}
}
// System.Void System.Array::Reverse<Microsoft.MixedReality.Toolkit.SceneSystem.SceneInfo>(T[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_mE964A6AD0CC6BC61353CDE1CEA0200EC30E524A1_gshared (SceneInfoU5BU5D_t53B51DB3A2A4B576992AFD774092D1A6010EC417* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_mE964A6AD0CC6BC61353CDE1CEA0200EC30E524A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE V_2;
memset(&V_2, 0, sizeof(V_2));
String_t* G_B7_0 = NULL;
{
SceneInfoU5BU5D_t53B51DB3A2A4B576992AFD774092D1A6010EC417* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_mE964A6AD0CC6BC61353CDE1CEA0200EC30E524A1_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_mE964A6AD0CC6BC61353CDE1CEA0200EC30E524A1_RuntimeMethod_var);
}
IL_0031:
{
SceneInfoU5BU5D_t53B51DB3A2A4B576992AFD774092D1A6010EC417* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisSceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE_mE964A6AD0CC6BC61353CDE1CEA0200EC30E524A1_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_10 = ___index1;
V_0 = (int32_t)L_10;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1));
goto IL_0074;
}
IL_004e:
{
SceneInfoU5BU5D_t53B51DB3A2A4B576992AFD774092D1A6010EC417* L_13 = ___array0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = L_14;
SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_2 = (SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE )L_16;
SceneInfoU5BU5D_t53B51DB3A2A4B576992AFD774092D1A6010EC417* L_17 = ___array0;
int32_t L_18 = V_0;
SceneInfoU5BU5D_t53B51DB3A2A4B576992AFD774092D1A6010EC417* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE )L_22);
SceneInfoU5BU5D_t53B51DB3A2A4B576992AFD774092D1A6010EC417* L_23 = ___array0;
int32_t L_24 = V_1;
SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE L_25 = V_2;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (SceneInfo_t9CF70922247852FB73E43FE593F9A0194AB5B1FE )L_25);
int32_t L_26 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
}
IL_0074:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
return;
}
}
// System.Void System.Array::Reverse<Microsoft.MixedReality.Toolkit.UI.InteractableColorChildrenTheme_BlocksAndRenderer>(T[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_mE977E8184FACB199FAA1680EDC81FA03E0EFD79C_gshared (BlocksAndRendererU5BU5D_t121D8370D0807540C909B58C3122EDDA9DA622E1* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_mE977E8184FACB199FAA1680EDC81FA03E0EFD79C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 V_2;
memset(&V_2, 0, sizeof(V_2));
String_t* G_B7_0 = NULL;
{
BlocksAndRendererU5BU5D_t121D8370D0807540C909B58C3122EDDA9DA622E1* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_mE977E8184FACB199FAA1680EDC81FA03E0EFD79C_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_mE977E8184FACB199FAA1680EDC81FA03E0EFD79C_RuntimeMethod_var);
}
IL_0031:
{
BlocksAndRendererU5BU5D_t121D8370D0807540C909B58C3122EDDA9DA622E1* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisBlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64_mE977E8184FACB199FAA1680EDC81FA03E0EFD79C_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_10 = ___index1;
V_0 = (int32_t)L_10;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1));
goto IL_0074;
}
IL_004e:
{
BlocksAndRendererU5BU5D_t121D8370D0807540C909B58C3122EDDA9DA622E1* L_13 = ___array0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = L_14;
BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_2 = (BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 )L_16;
BlocksAndRendererU5BU5D_t121D8370D0807540C909B58C3122EDDA9DA622E1* L_17 = ___array0;
int32_t L_18 = V_0;
BlocksAndRendererU5BU5D_t121D8370D0807540C909B58C3122EDDA9DA622E1* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 )L_22);
BlocksAndRendererU5BU5D_t121D8370D0807540C909B58C3122EDDA9DA622E1* L_23 = ___array0;
int32_t L_24 = V_1;
BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 L_25 = V_2;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (BlocksAndRenderer_tA88BC5430AA14F7FAD01DB2734111DFBE7A6AE64 )L_25);
int32_t L_26 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
}
IL_0074:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
return;
}
}
// System.Void System.Array::Reverse<Microsoft.MixedReality.Toolkit.UI.ShaderProperties>(T[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_m0EB276708BBB3E342D94176E7A91497E7FE8417A_gshared (ShaderPropertiesU5BU5D_t14DC9156D548ED23B85310557E2F9BC6AF312E69* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_m0EB276708BBB3E342D94176E7A91497E7FE8417A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 V_2;
memset(&V_2, 0, sizeof(V_2));
String_t* G_B7_0 = NULL;
{
ShaderPropertiesU5BU5D_t14DC9156D548ED23B85310557E2F9BC6AF312E69* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_m0EB276708BBB3E342D94176E7A91497E7FE8417A_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_m0EB276708BBB3E342D94176E7A91497E7FE8417A_RuntimeMethod_var);
}
IL_0031:
{
ShaderPropertiesU5BU5D_t14DC9156D548ED23B85310557E2F9BC6AF312E69* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7_m0EB276708BBB3E342D94176E7A91497E7FE8417A_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_10 = ___index1;
V_0 = (int32_t)L_10;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1));
goto IL_0074;
}
IL_004e:
{
ShaderPropertiesU5BU5D_t14DC9156D548ED23B85310557E2F9BC6AF312E69* L_13 = ___array0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = L_14;
ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_2 = (ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 )L_16;
ShaderPropertiesU5BU5D_t14DC9156D548ED23B85310557E2F9BC6AF312E69* L_17 = ___array0;
int32_t L_18 = V_0;
ShaderPropertiesU5BU5D_t14DC9156D548ED23B85310557E2F9BC6AF312E69* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 )L_22);
ShaderPropertiesU5BU5D_t14DC9156D548ED23B85310557E2F9BC6AF312E69* L_23 = ___array0;
int32_t L_24 = V_1;
ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 L_25 = V_2;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (ShaderProperties_t1F3D2767E82B6CB972D9C0EA7F6DA45CAE2587D7 )L_25);
int32_t L_26 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
}
IL_0074:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
return;
}
}
// System.Void System.Array::Reverse<Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>(T[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_mFC8F97354A2CC6D0C8C4EC8B4B0F3E27088D518C_gshared (ThemeDefinitionU5BU5D_t2F4682E8423138C6516DD064FC40EBB907755A97* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_mFC8F97354A2CC6D0C8C4EC8B4B0F3E27088D518C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A V_2;
memset(&V_2, 0, sizeof(V_2));
String_t* G_B7_0 = NULL;
{
ThemeDefinitionU5BU5D_t2F4682E8423138C6516DD064FC40EBB907755A97* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_mFC8F97354A2CC6D0C8C4EC8B4B0F3E27088D518C_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_mFC8F97354A2CC6D0C8C4EC8B4B0F3E27088D518C_RuntimeMethod_var);
}
IL_0031:
{
ThemeDefinitionU5BU5D_t2F4682E8423138C6516DD064FC40EBB907755A97* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A_mFC8F97354A2CC6D0C8C4EC8B4B0F3E27088D518C_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_10 = ___index1;
V_0 = (int32_t)L_10;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1));
goto IL_0074;
}
IL_004e:
{
ThemeDefinitionU5BU5D_t2F4682E8423138C6516DD064FC40EBB907755A97* L_13 = ___array0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = L_14;
ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_2 = (ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A )L_16;
ThemeDefinitionU5BU5D_t2F4682E8423138C6516DD064FC40EBB907755A97* L_17 = ___array0;
int32_t L_18 = V_0;
ThemeDefinitionU5BU5D_t2F4682E8423138C6516DD064FC40EBB907755A97* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A )L_22);
ThemeDefinitionU5BU5D_t2F4682E8423138C6516DD064FC40EBB907755A97* L_23 = ___array0;
int32_t L_24 = V_1;
ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A L_25 = V_2;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (ThemeDefinition_t10E8B8CF2562A5293FFC02D4C80BFCE6C1B0603A )L_25);
int32_t L_26 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
}
IL_0074:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
return;
}
}
// System.Void System.Array::Reverse<Microsoft.MixedReality.Toolkit.Utilities.Editor.InspectorPropertySetting>(T[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m3C296B5213C6119826B0728824DA0AF1D7E92D67_gshared (InspectorPropertySettingU5BU5D_tAED0D945613EDA515065B5517B8062DF00981FF1* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m3C296B5213C6119826B0728824DA0AF1D7E92D67_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 V_2;
memset(&V_2, 0, sizeof(V_2));
String_t* G_B7_0 = NULL;
{
InspectorPropertySettingU5BU5D_tAED0D945613EDA515065B5517B8062DF00981FF1* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m3C296B5213C6119826B0728824DA0AF1D7E92D67_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m3C296B5213C6119826B0728824DA0AF1D7E92D67_RuntimeMethod_var);
}
IL_0031:
{
InspectorPropertySettingU5BU5D_tAED0D945613EDA515065B5517B8062DF00981FF1* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisInspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419_m3C296B5213C6119826B0728824DA0AF1D7E92D67_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_10 = ___index1;
V_0 = (int32_t)L_10;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1));
goto IL_0074;
}
IL_004e:
{
InspectorPropertySettingU5BU5D_tAED0D945613EDA515065B5517B8062DF00981FF1* L_13 = ___array0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = L_14;
InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_2 = (InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 )L_16;
InspectorPropertySettingU5BU5D_tAED0D945613EDA515065B5517B8062DF00981FF1* L_17 = ___array0;
int32_t L_18 = V_0;
InspectorPropertySettingU5BU5D_tAED0D945613EDA515065B5517B8062DF00981FF1* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 )L_22);
InspectorPropertySettingU5BU5D_tAED0D945613EDA515065B5517B8062DF00981FF1* L_23 = ___array0;
int32_t L_24 = V_1;
InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 L_25 = V_2;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (InspectorPropertySetting_tF5306E4AFE4966556B7DBCCE1E6E57A4F347A419 )L_25);
int32_t L_26 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
}
IL_0074:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
return;
}
}
// System.Void System.Array::Reverse<System.Boolean>(T[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_gshared (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
String_t* G_B7_0 = NULL;
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_RuntimeMethod_var);
}
IL_0031:
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m3185FC6FBAF4AB44EB30798AFB1D1F33B1FC512C_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_10 = ___index1;
V_0 = (int32_t)L_10;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1));
goto IL_0074;
}
IL_004e:
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_13 = ___array0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = L_14;
bool L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_2 = (bool)L_16;
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_17 = ___array0;
int32_t L_18 = V_0;
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
bool L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (bool)L_22);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_23 = ___array0;
int32_t L_24 = V_1;
bool L_25 = V_2;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (bool)L_25);
int32_t L_26 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
}
IL_0074:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
return;
}
}
// System.Void System.Array::Reverse<System.Byte>(T[])
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m03D674052100D1E9D6214ADD31FE7E5F7E6788DA_RuntimeMethod_var);
}
IL_000e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___array0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___array0;
NullCheck(L_3);
(( void (*) (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)L_2, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return;
}
}
// System.Void System.Array::Reverse<System.Byte>(T[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_gshared (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
uint8_t V_2 = 0x0;
String_t* G_B7_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_RuntimeMethod_var);
}
IL_0031:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mC6D04DB36698F31262134DEEF6B9C03026200F13_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_10 = ___index1;
V_0 = (int32_t)L_10;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1));
goto IL_0074;
}
IL_004e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___array0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = L_14;
uint8_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_2 = (uint8_t)L_16;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___array0;
int32_t L_18 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
uint8_t L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (uint8_t)L_22);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = ___array0;
int32_t L_24 = V_1;
uint8_t L_25 = V_2;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (uint8_t)L_25);
int32_t L_26 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
}
IL_0074:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
return;
}
}
// System.Void System.Array::Reverse<System.Char>(T[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mDE435F1812BCE8C047D40D94A7D2F31186E277F7_gshared (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mDE435F1812BCE8C047D40D94A7D2F31186E277F7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Il2CppChar V_2 = 0x0;
String_t* G_B7_0 = NULL;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mDE435F1812BCE8C047D40D94A7D2F31186E277F7_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mDE435F1812BCE8C047D40D94A7D2F31186E277F7_RuntimeMethod_var);
}
IL_0031:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mDE435F1812BCE8C047D40D94A7D2F31186E277F7_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_10 = ___index1;
V_0 = (int32_t)L_10;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1));
goto IL_0074;
}
IL_004e:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = ___array0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = L_14;
Il2CppChar L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_2 = (Il2CppChar)L_16;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_17 = ___array0;
int32_t L_18 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
Il2CppChar L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (Il2CppChar)L_22);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_23 = ___array0;
int32_t L_24 = V_1;
Il2CppChar L_25 = V_2;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (Il2CppChar)L_25);
int32_t L_26 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
}
IL_0074:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
return;
}
}
// System.Void System.Array::Reverse<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_gshared (KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B V_2;
memset(&V_2, 0, sizeof(V_2));
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mD8757F39E77A7C7D678EB7C18B6E66B1E340A0CD_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_10 = ___index1;
V_0 = (int32_t)L_10;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1));
goto IL_0074;
}
IL_004e:
{
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_13 = ___array0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = L_14;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_16 = (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_2 = (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_16;
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_17 = ___array0;
int32_t L_18 = V_0;
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_22 = (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )(L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_22);
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_23 = ___array0;
int32_t L_24 = V_1;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_25 = V_2;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_25);
int32_t L_26 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
}
IL_0074:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
return;
}
}
// System.Void System.Array::Reverse<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.Vector3>>(T[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Array_Reverse_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_m896036FFE9BA40DF1BD45035597939DC5C5454BD_gshared (KeyValuePair_2U5BU5D_t2056CEA4067E5A5D956F384D695B7295B83254B0* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_m896036FFE9BA40DF1BD45035597939DC5C5454BD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC V_2;
memset(&V_2, 0, sizeof(V_2));
String_t* G_B7_0 = NULL;
{
KeyValuePair_2U5BU5D_t2056CEA4067E5A5D956F384D695B7295B83254B0* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_m896036FFE9BA40DF1BD45035597939DC5C5454BD_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_0016:
{
int32_t L_4 = ___index1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
goto IL_0026;
}
IL_0021:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0026:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)G_B7_0, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Reverse_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_m896036FFE9BA40DF1BD45035597939DC5C5454BD_RuntimeMethod_var);
}
IL_0031:
{
KeyValuePair_2U5BU5D_t2056CEA4067E5A5D956F384D695B7295B83254B0* L_6 = ___array0;
NullCheck(L_6);
int32_t L_7 = ___index1;
int32_t L_8 = ___length2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0044;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_9, (String_t*)_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_TisKeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC_m896036FFE9BA40DF1BD45035597939DC5C5454BD_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_10 = ___index1;
V_0 = (int32_t)L_10;
int32_t L_11 = ___index1;
int32_t L_12 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), (int32_t)1));
goto IL_0074;
}
IL_004e:
{
KeyValuePair_2U5BU5D_t2056CEA4067E5A5D956F384D695B7295B83254B0* L_13 = ___array0;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = L_14;
KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC L_16 = (KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC )(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_2 = (KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC )L_16;
KeyValuePair_2U5BU5D_t2056CEA4067E5A5D956F384D695B7295B83254B0* L_17 = ___array0;
int32_t L_18 = V_0;
KeyValuePair_2U5BU5D_t2056CEA4067E5A5D956F384D695B7295B83254B0* L_19 = ___array0;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC L_22 = (KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC )(L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC )L_22);
KeyValuePair_2U5BU5D_t2056CEA4067E5A5D956F384D695B7295B83254B0* L_23 = ___array0;
int32_t L_24 = V_1;
KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC L_25 = V_2;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (KeyValuePair_2_tF27631B30A8E8C6C498CB10CBB489DC9D92EC8CC )L_25);
int32_t L_26 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
int32_t L_27 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
}
IL_0074:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_004e;
}
}
{
return;
}
}
| [
"tanaka.kenji@synamon.jp"
] | tanaka.kenji@synamon.jp |
9e462abfe4f5de37d8c269cdc7bbb61840701e8f | 3e54595cb3634edb4c60eafdbe7cba0b867281d6 | /noiOpenJudge/3.9/3344_1.cpp | bbe796b6202488f6d07c0d32a14d7e4e90f44e0b | [] | no_license | Rainboylvx/pcs | 1666cc554903827b98d82689fdccc2d76bda8552 | 5dd54decfc75960194d415c09119d95bef7c27a9 | refs/heads/master | 2023-08-18T10:02:21.270507 | 2023-08-13T01:36:52 | 2023-08-13T01:36:52 | 219,274,550 | 0 | 0 | null | 2023-07-21T09:19:37 | 2019-11-03T09:56:59 | C++ | UTF-8 | C++ | false | false | 1,174 | cpp | #include <bits/stdc++.h>
using namespace std;
int n;
typedef map<int,int> M;
M m;
void set_m(int cnt,int id){
int val = m[cnt];
if(val == 0){
m[cnt] = id;
}
else {
m[cnt] = min(id,val);
}
}
int main(){
scanf("%d",&n);
int i,j,t1,t2;
m[1000000000] = 1;
M::iterator iter1,iter2;
for (i=1;i<=n;i++){
scanf("%d%d",&t1,&t2);
iter2 = m.lower_bound(t2);
if( iter2 == m.begin()){
printf("%d %d\n",t1,iter2->second);
set_m(t2, t1);
}
else if( iter2 == m.end()){
printf("%d %d\n",t1,(--iter2)->second);
set_m(t2, t1);
}
else {
int right = iter2->first - t2;
int left = t2 - (--iter2)->first;
if( right < left)
printf("%d %d\n",t1,(++iter2)->second);
else if( left < right)
printf("%d %d\n",t1,(iter2)->second);
else {
int a1 = iter2->second;
int a2 = (++iter2)->second;
printf("%d %d\n",t1,min(a1,a2));
}
set_m(t2, t1);
}
}
return 0;
}
| [
"rainboylvx@qq.com"
] | rainboylvx@qq.com |
26085a76b1e801179666c84ed59463099b118f49 | 559207eb5beae4ba9fd638d19bd3009cbe3a6d11 | /src/net/instaweb/util/public/pool_element.h | 8f0f5f431b3b88368e7e4e493078f93a8d7495ab | [
"Apache-2.0"
] | permissive | voku/mod-spdy | 2a8989668fe0c0f0de48c0b7ecd85b5b5b554ed1 | bcfb388cbc5415ee660c2b5dbcf61f6f43c2a5ca | refs/heads/master | 2023-04-05T09:50:46.847114 | 2015-03-19T17:58:09 | 2015-03-19T17:58:09 | 32,537,692 | 0 | 0 | NOASSERTION | 2023-04-04T01:40:41 | 2015-03-19T17:56:26 | C++ | UTF-8 | C++ | false | false | 1,669 | h | // Copyright 2011 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Author: jmaessen@google.com (Jan Maessen)
#ifndef NET_INSTAWEB_UTIL_PUBLIC_POOL_ELEMENT_H_
#define NET_INSTAWEB_UTIL_PUBLIC_POOL_ELEMENT_H_
#include <list>
// Include this file when defining an object that will reside in a pool. There
// are a couple of ways of defining such an object, but all of them require us
// to use the PoolPosition typedef. Most simply, we can extend the PoolElement
// type defined here---but in practice, we want to avoid multiple inheritance
// just to store a simple back link, and we're better off providing an accessor
// at pool construction time instead.
namespace net_instaweb {
template<class T>
class PoolElement {
public:
typedef typename std::list<T*>::iterator Position;
PoolElement() { }
// Returns a pointer to a mutable location holding the position of
// the element in any containing pool.
Position* pool_position() { return &pool_position_; }
private:
Position pool_position_;
DISALLOW_COPY_AND_ASSIGN(PoolElement);
};
} // namespace net_instaweb
#endif // NET_INSTAWEB_UTIL_PUBLIC_POOL_ELEMENT_H_
| [
"ptrck@blck.io"
] | ptrck@blck.io |
8387875f91d3feb642cd1463db6eed5c999349e4 | dcd404807089f8c7f898d0fdbd4eac8eddfba70d | /src/xamarin/sk_compatpaint.cpp | aa3a8ca24e8e6294cdd85a67f061b614af92b241 | [
"BSD-3-Clause"
] | permissive | mattleibow/skia | 3d52a7927fa733eedca9c3fd3235f9a905af7477 | 8e7a3aa31b76f3e16e561eead4c938a8fbbd520f | refs/heads/xamarin-mobile-bindings | 2023-03-16T18:06:35.333452 | 2022-05-31T18:20:40 | 2022-05-31T18:20:40 | 502,410,740 | 1 | 0 | BSD-3-Clause | 2022-06-11T17:14:30 | 2022-06-11T17:14:29 | null | UTF-8 | C++ | false | false | 2,119 | cpp | /*
* Copyright 2015 Xamarin Inc.
* Copyright 2017 Microsoft Corporation. All rights reserved.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "include/xamarin/SkCompatPaint.h"
#include "include/xamarin/sk_compatpaint.h"
#include "src/c/sk_types_priv.h"
static inline const SkCompatPaint* AsCompatPaint(const sk_compatpaint_t* c) {
return reinterpret_cast<const SkCompatPaint*>(c);
}
static inline SkCompatPaint* AsCompatPaint(sk_compatpaint_t* c) {
return reinterpret_cast<SkCompatPaint*>(c);
}
static inline sk_compatpaint_t* ToCompatPaint(SkCompatPaint* c) {
return reinterpret_cast<sk_compatpaint_t*>(c);
}
sk_compatpaint_t* sk_compatpaint_new(void) {
return ToCompatPaint(new SkCompatPaint());
}
sk_compatpaint_t* sk_compatpaint_new_with_font(const sk_font_t* font) {
return ToCompatPaint(new SkCompatPaint(AsFont(font)));
}
void sk_compatpaint_delete(sk_compatpaint_t* paint) {
delete AsCompatPaint(paint);
}
sk_compatpaint_t* sk_compatpaint_clone(const sk_compatpaint_t* paint) {
return ToCompatPaint(new SkCompatPaint(*AsCompatPaint(paint)));
}
void sk_compatpaint_reset(sk_compatpaint_t* paint) {
AsCompatPaint(paint)->reset();
}
sk_font_t* sk_compatpaint_make_font(sk_compatpaint_t* paint) {
return ToFont(AsCompatPaint(paint)->makeFont());
}
sk_font_t* sk_compatpaint_get_font(sk_compatpaint_t* paint) {
return ToFont(AsCompatPaint(paint)->getFont());
}
void sk_compatpaint_set_text_align(sk_compatpaint_t* paint, sk_text_align_t align) {
AsCompatPaint(paint)->setTextAlign((SkTextUtils::Align)align);
}
sk_text_align_t sk_compatpaint_get_text_align(const sk_compatpaint_t* paint) {
return (sk_text_align_t)AsCompatPaint(paint)->getTextAlign();
}
void sk_compatpaint_set_text_encoding(sk_compatpaint_t* paint, sk_text_encoding_t encoding) {
AsCompatPaint(paint)->setTextEncoding((SkTextEncoding)encoding);
}
sk_text_encoding_t sk_compatpaint_get_text_encoding(const sk_compatpaint_t* paint) {
return (sk_text_encoding_t)AsCompatPaint(paint)->getTextEncoding();
}
| [
"mattleibow@live.com"
] | mattleibow@live.com |
e4b7519a8feb58030e644d9420b8aae987a658e8 | 74c1e11ac3939255edf3f84d3b3ef14f89bde454 | /torch/csrc/jit/symbolic_script.cpp | f091f9c5ce3c786216e896b818ece9c2ab633ed3 | [
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | lia4/pytorch | af4d0fe17f5c126ef7e34a85ae25f4241881f03c | 8b349073ce4cc2082a634eecd4ee361dc7ca571e | refs/heads/master | 2020-06-30T20:17:15.716338 | 2019-08-06T22:58:52 | 2019-08-06T23:03:01 | 200,938,405 | 0 | 0 | NOASSERTION | 2019-08-06T23:37:07 | 2019-08-06T23:37:07 | null | UTF-8 | C++ | false | false | 55,274 | cpp | #include <torch/csrc/jit/symbolic_script.h>
#include <torch/csrc/jit/operator.h>
#include <torch/csrc/jit/script/compiler.h>
namespace torch {
namespace jit {
namespace {
std::mutex lock;
const std::vector<std::string> functions = {
R"(
#### HELPER FUNCTIONS ###
#### PREFIX: AD_ ###
#### SCHEMA NOT SAVED IN CACHE ###
def AD_unsqueeze_multiple(t,
dims: List[int],
n_dims: int):
seen = [False] * n_dims
for i in range(len(dims)):
seen[dims[i]] = True
for d in range(n_dims):
if seen[d]:
t = t.unsqueeze(d)
return t
def AD_sum_backward(grad,
sizes: List[int],
dims: List[int],
keepdim: bool):
if not keepdim and len(sizes) > 0:
if len(dims) == 1:
return grad.unsqueeze(dims[0]).expand(sizes)
else:
res = AD_unsqueeze_multiple(grad, dims, len(sizes))
return res.expand(sizes)
else:
return grad.expand(sizes)
def AD_logsumexp_backward(grad, self, result,
dim: List[int],
keepdim: bool):
if not keepdim and self.dim() != 0:
n_dims = len(self.size())
grad = AD_unsqueeze_multiple(grad, dim, n_dims)
result = AD_unsqueeze_multiple(result, dim, n_dims)
return grad * (self - result).exp()
def mean_0(self, *, dtype: Optional[int]):
self_size = self.size()
self_numel = self.numel()
self_scalar_type = self.dtype
def backward(grad_output):
return grad_output.expand(self_size).to(self_scalar_type) / self_numel, None
return torch.mean(self, dtype=dtype), backward
def mean_1(self,
dim: List[int],
keepdim: bool,
*,
dtype: Optional[int]):
self_size = self.size()
self_scalar_type = self.dtype
def backward(grad_output):
grad_self = AD_sum_backward(grad_output, self_size, dim, keepdim).to(self_scalar_type) / AD_safe_size(self_size, dim)
return grad_self, None, None, None
return torch.mean(self, dim, keepdim, dtype=dtype), backward
def logsumexp(self,
dim: List[int],
keepdim: bool):
result = torch.logsumexp(self, dim, keepdim)
self_dim = self.dim()
def backward(grad_output):
grad_self = AD_logsumexp_backward(grad_output, self, result, dim, keepdim)
return grad_self, None, None
return result, backward
def AD_bool_to_int(b: bool):
# FIXME: torchscript: int - bool
if b:
i = 1
else:
i = 0
return i
def AD_var_backward_0(grad, self, unbiased: bool):
b = AD_bool_to_int(unbiased)
# FIXME: torchscript: div(float, float)
return grad * (self - self.mean()) * 2.0 / (self.numel() - b)
def AD_safe_size(sizes: List[int],
dims: List[int]):
if len(sizes) == 0:
return 1
size = 1
for i in range(len(dims)):
d = dims[i]
size *= sizes[d]
return size
def AD_var_backward_1(grad,
self,
dim: List[int],
unbiased: bool,
keepdim: bool):
if self.dim() == 0:
return AD_var_backward_0(grad, self, unbiased)
self_size = self.size()
b = AD_bool_to_int(unbiased)
if not keepdim and self.dim() > 1:
grad = AD_unsqueeze_multiple(grad, dim, len(self_size))
# FIXME: torchscript: div(float, float)
return grad * (self - self.mean(dim, True)) * 2.0 / (AD_safe_size(self_size, dim) - b)
def std_0(self,
unbiased: bool=True):
std_out = torch.std(self, unbiased)
def backward(grad_output):
grad_self = AD_var_backward_0(grad_output / (std_out * 2), self, unbiased)
return grad_self, None
return std_out, backward
def std_1(self,
dim: List[int],
unbiased: bool,
keepdim: bool):
std_out = torch.std(self, dim, unbiased, keepdim)
def backward(grad_output):
grad_self = AD_var_backward_1(grad_output / (std_out * 2), self, dim, unbiased, keepdim)
return grad_self, None, None, None
return std_out, backward
def var_0(self,
unbiased: bool=True):
def backward(grad_output):
grad_self = AD_var_backward_0(grad_output, self, unbiased)
return grad_self, None
return torch.var(self, unbiased), backward
def var_1(self,
dim: List[int],
unbiased: bool,
keepdim: bool):
def backward(grad_output):
grad_self = AD_var_backward_1(grad_output, self, dim, unbiased, keepdim)
return grad_self, None, None, None
return torch.var(self, dim, unbiased, keepdim), backward
def tanh(self):
output = torch.tanh(self)
def backward(grad_output):
return grad_output * (1 - output * output)
return output, backward
def AD_index_select_backward(grad,
dim: int,
indices,
sizes: List[int],
keepdim: bool):
if not keepdim and len(sizes) > 0:
grad = grad.unsqueeze(dim)
indices = indices.unsqueeze(dim)
# FIXME: torchscript: torch.zeros(sizes, grad.options())
return torch.zeros(sizes).to(grad).scatter_(dim, indices, grad)
# def topk(self,
# k: int,
# dim: int = -1,
# largest: bool = True,
# sorted: bool = True):
# result0, result1 = torch.topk(self, k, dim, largest, sorted)
# self_size = self.size()
# def backward(grad_output):
# grad_self = AD_index_select_backward(grad_output, dim, result1, self_size, True)
# return grad_self, None, None, None, None
# return result0, result1, backward
# def kthvalue(self,
# k: int,
# dim: int,
# keepdim: bool):
# result0, result1 = torch.kthvalue(self, k, dim, keepdim)
# self_size = self.size()
# def backward(grad_output):
# grad_self = AD_index_select_backward(grad_output, dim, result1, self_size, keepdim)
# return grad_self, None, None, None
# return result0, result1, backward
def AD_mm_backward_self(grad, mat2):
return grad.mm(mat2.t())
def AD_mm_backward_mat2(grad, self):
return self.t().mm(grad)
def mm(self, mat2):
def backward(grad_output):
grad_self = AD_mm_backward_self(grad_output, mat2)
grad_mat2 = AD_mm_backward_mat2(grad_output, self)
return grad_self, grad_mat2
return torch.mm(self, mat2), backward
def AD_permute_backward(grad,
fwd_dims: List[int]):
ndims = len(fwd_dims)
dims = [0] * ndims
for i in range(ndims):
dims[fwd_dims[i]] = i
return grad.permute(dims)
def permute(self,
dims: List[int]):
def backward(grad_output):
grad_self = AD_permute_backward(grad_output, dims)
return grad_self, None
return torch.permute(self, dims), backward
def AD_select_backward(grad,
input_sizes: List[int],
dim: int,
index: int):
# FIXME: torchscript: torch.zeros(sizes, grad.options())
grad_input = torch.zeros(input_sizes).to(grad)
grad_input.select(dim, index).copy_(grad)
return grad_input
# TODO: fix torch.zeros(sizes, grad.options()) before enabling select, topk, kthvalue
# def select(self,
# dim: int,
# index: int):
# self_size = self.size()
# def backward(grad_output):
# grad_self = AD_select_backward(grad_output, self_size, dim, index)
# return grad_self, None, None
# return torch.select(self, dim, index), backward
def AD_slice_backward(grad,
input_sizes: List[int],
dim: int,
start: int,
end: int,
step: int):
# FIXME: torchscript: torch.zeros(sizes, grad.options())
grad_input = torch.zeros(input_sizes).to(grad)
grad_input.slice(dim, start, end, step).copy_(grad)
return grad_input
# DON'T enable slice unless we can correctly handle view ops in graph executor.
# It triggers failure of TestJit.test_sample in test_distributions.py.
# def slice(self,
# dim: int=0,
# start: int=0,
# end: int=9223372036854775807,
# step: int=1):
# def backward(grad_output):
# grad_self = AD_slice_backward(grad_output, self.size(), dim, start, end, step)
# return grad_self, None, None, None, None
# return torch.slice(self, dim, start, end, step), backward
def AD_unsqueeze_to_0(self,
sizes: List[int]):
ndims = len(sizes)
for i in range(ndims):
if sizes[i] == 1:
self = self.unsqueeze(i)
return self
def AD_unsqueeze_to_1(self,
dim: int,
sizes: List[int]):
if len(sizes) > 0 and sizes[dim] == 1:
return self.unsqueeze(dim)
return self
def squeeze_0(self):
self_size = self.size()
def backward(grad_output):
grad_self = AD_unsqueeze_to_0(grad_output, self_size)
return grad_self
return torch.squeeze(self), backward
def squeeze_1(self,
dim: int):
self_size = self.size()
def backward(grad_output):
grad_self = AD_unsqueeze_to_1(grad_output, dim, self_size)
return grad_self, None
return torch.squeeze(self, dim), backward
def AD_infer_size(a: List[int],
b: List[int]):
dimsA = len(a)
dimsB = len(b)
ndim = dimsA if dimsA > dimsB else dimsB
expand_sizes = [0] * ndim
for i in range(ndim):
idx = - i + ndim - 1
sizeA = a[i] if dimsA + i >= 0 else 1
sizeB = b[i] if dimsB + i >= 0 else 1
# Assert sizeA == sizeB or sizeA == 1 or sizeB == 1
expand_sizes[i] = sizeB if sizeA == 1 else sizeA
return expand_sizes
def AD_bmm_backward_self(grad, mat2):
return grad.bmm(mat2.transpose(1, 2))
def AD_bmm_backward_mat2(grad, self):
return self.transpose(1, 2).bmm(grad)
def bmm(self, mat2):
def backward(grad_output):
grad_self = AD_bmm_backward_self(grad_output, mat2)
grad_mat2 = AD_bmm_backward_mat2(grad_output, self)
return grad_self, grad_mat2
return torch.bmm(self, mat2), backward
def AD_mat_transpose(mat):
dim = mat.dim()
if dim == 1:
out = mat
elif dim == 2:
out = mat.t()
else:
dims = rangelist(dim)
dims[-1] = dim - 2
dims[-2] = dim - 1
out = mat.permute(dims)
return out
# In matmul backward case of [b, m, n] * [b, n, p] => [m, p],
# instead of doing [b, m, p] and then reduce to [m, p]
# whice potentially uses large intermediate of size b*m*p,
# we do [m, bn] * [bn, p] to avoid having the large
# intermediate, thus reduces max memory usage.
def AD_matmul_bw_special_fold(mat1, mat2):
mat1_transpose = AD_mat_transpose(mat1)
mat1_fold = mat1_transpose.reshape(-1, mat1_transpose.size()[-1])
mat2_fold = mat2.reshape(-1, mat2.size()[-1])
return mat1_fold.t().mm(mat2_fold)
def AD_matmul_bw_size(mat1, mat2,
out_size: List[int]):
dim1 = mat1.dim()
dim2 = mat2.dim()
dim_out = len(out_size)
if dim1 == 0 or dim2 == 0:
out = mat1 * mat2
elif dim_out == 2 and dim1 == dim2 and dim1 >=3:
out = AD_matmul_bw_special_fold(mat1, mat2)
elif dim_out == 1 and dim1 - dim2 == 1 and dim1 >= 3:
mat2_unsqueeze = mat2.unsqueeze(-1)
out = AD_matmul_bw_special_fold(mat1, mat2_unsqueeze)
out = out.squeeze(-1)
elif dim1 + dim2 == dim_out:
if dim2 == 1:
target_dim2 = 0
else:
target_dim2 = -2
out = torch.matmul(mat1.unsqueeze(dim1), mat2.unsqueeze(target_dim2))
elif dim_out == dim1 - dim2:
out = torch.matmul(mat1, mat2.unsqueeze(dim2)).squeeze(-1)
elif dim_out == dim2 - dim1:
out = torch.matmul(mat1.unsqueeze(-2), mat2).squeeze(-2)
else:
out = torch.matmul(mat1, mat2)
return out
def matmul(self, other):
def backward(grad_output):
self_size = self.size()
other_size = other.size()
grad_self = AD_matmul_bw_size(grad_output, AD_mat_transpose(other), self_size)._grad_sum_to_size(self_size)
grad_other = AD_matmul_bw_size(AD_mat_transpose(self), grad_output, other_size)._grad_sum_to_size(other_size)
return grad_self, grad_other
return torch.matmul(self, other), backward
)",
R"(
def addcmul(self,
tensor1,
tensor2,
*,
value: number = 1.0):
def backward(grad_output):
grad = grad_output * value
grad_tensor1 = (grad * tensor2)._grad_sum_to_size(tensor1.size())
grad_tensor2 = (grad * tensor1)._grad_sum_to_size(tensor2.size())
return grad_output._grad_sum_to_size(self.size()), grad_tensor1, grad_tensor2, None
return torch.addcmul(self, tensor1, tensor2, value=value), backward
def _dim_arange(like,
dim: int):
def backward(grad_output):
return None, None
return torch._dim_arange(like, dim), backward
def contiguous(self, *, memory_format: int=0):
def backward(grad_output):
return grad_output, None
return self.contiguous(memory_format=memory_format), backward
def dot(self, tensor):
def backward(grad_output):
return grad_output * tensor, grad_output * self
return torch.dot(self, tensor), backward
def erf(self):
def backward(grad_output):
# Precomputed constant C = 2.0 / math.sqrt(math.pi)
C = 1.1283791670955126
return C * torch.exp(- self * self) * grad_output
return torch.erf(self), backward
def expand(self,
size: List[int],
*,
implicit: bool=False):
self_size = self.size()
def backward(grad_output):
grad_self = torch._grad_sum_to_size(grad_output, self_size)
return grad_self, None, None
return torch.expand(self, size, implicit=implicit), backward
def expand_as(self, other):
self_size = self.size()
def backward(grad_output):
grad_self = grad_output._grad_sum_to_size(self_size)
return grad_self, None
return torch.expand_as(self, other), backward
def full_like(self,
fill_value: float):
def backward(grad_output):
return None, None
return torch.full_like(self, fill_value), backward
def lerp_0(self,
end,
weight: number):
def backward(grad_output):
grad_self = (grad_output * (1 - float(weight)))._grad_sum_to_size(self.size())
grad_end = (grad_output * float(weight))._grad_sum_to_size(end.size())
return grad_self, grad_end, None
return torch.lerp(self, end, weight), backward
def lerp_1(self,
end,
weight):
def backward(grad_output):
grad_self = (grad_output * (1 - weight))._grad_sum_to_size(self.size())
grad_end = (grad_output * weight)._grad_sum_to_size(end.size())
return grad_self, grad_end, None
return torch.lerp(self, end, weight), backward
def reshape(self,
shape: List[int]):
self_size = self.size()
def backward(grad_output):
grad_self = grad_output.reshape(self_size)
return grad_self, None
return torch.reshape(self, shape), backward
def split(self,
split_size: int,
dim: int):
def backward(grad_outputs: List[Tensor]):
grad_self = torch.cat(grad_outputs, dim)
return grad_self, None, None
return torch.split(self, split_size, dim), backward
def split_with_sizes(self,
split_sizes: List[int],
dim: int=0):
def backward(grad_outputs: List[Tensor]):
size = len(grad_outputs)
grad_self = torch.cat(grad_outputs, dim)
return grad_self, None, None
return torch.split_with_sizes(self, split_sizes, dim), backward
def stack(tensors: List[Tensor],
dim: int=0):
def backward(grad_output):
grad_tensors = torch.unbind(grad_output, dim)
return grad_tensors, None
return torch.stack(tensors, dim), backward
def unbind(self,
dim: int=0):
def backward(grad_outputs: List[Tensor]):
grad_self = torch.stack(grad_outputs, dim)
return grad_self, None
return torch.unbind(self, dim), backward
def cat(tensors: List[Tensor],
dim: int=0):
size = len(tensors)
split_sizes = [0] * size
for i in range(size):
if tensors[i].numel() > 0:
split_sizes[i] = tensors[i].size()[dim]
def backward(grad_output):
grad_tensors = torch.split_with_sizes(grad_output, split_sizes, dim)
return grad_tensors, None
return torch.cat(tensors, dim), backward
def index(self,
indices: List[Tensor]):
def backward(grad_output):
grad_self = torch.zeros_like(self).index_put_(indices, grad_output, True)
return grad_self, None
return torch.index(self, indices), backward
def meshgrid(tensors: List[Tensor]):
size = len(tensors)
sizes = [0] * size
for i in range(size):
if tensors[i].dim() != 0:
sizes[i] = tensors[i].size()[0]
def backward(grad_outputs: List[Tensor]):
grads_tensors = []
for i in range(size):
view_shape = [1] * size
if sizes[i] == 0:
view_shape[i] = 1
grads_tensors.append((grad_outputs[i]._grad_sum_to_size(view_shape)).reshape(()))
else:
view_shape[i] = sizes[i]
grads_tensors.append((grad_outputs[i]._grad_sum_to_size(view_shape)).reshape([sizes[i]]))
return grads_tensors
return torch.meshgrid(tensors), backward
def mv(self, vec):
def backward(grad_output):
return grad_output.ger(vec), self.t().mv(grad_output)
return torch.mv(self, vec), backward
def nonzero(self):
def backward(grad_output):
return None
return torch.nonzero(self), backward
def ones_like(self):
def backward(grad_output):
return None
return torch.ones_like(self), backward
def pow_0(self,
exponent: number):
def backward(grad_output):
if float(exponent) == 0.0:
grad_self = torch.zeros_like(self)
else:
grad_self = grad_output * exponent * torch.pow(self, float(exponent) - 1)
return grad_self, None
return torch.pow(self, exponent), backward
def pow_1(self, exponent):
def backward(grad_output):
# self & exponent are used in backward, no need to pass in its size explicitly
grad_self = torch.where(exponent == 0.0, torch.zeros_like(self), grad_output * exponent * torch.pow(self, exponent - 1))._grad_sum_to_size(self.size())
grad_exponent = (grad_output * torch.pow(self, exponent) * torch.log(self))._grad_sum_to_size(exponent.size())
return grad_self, grad_exponent
return torch.pow(self, exponent), backward
def pow_2(self: number,
exponent):
def backward(grad_output):
grad_exponent = grad_output * torch.pow(self, exponent) * torch.log(float(self))
return None, grad_exponent
return torch.pow(self, exponent), backward
def rsub_0(self, other,
alpha: number = 1.0):
self_size = self.size()
other_size = other.size()
def backward(grad_output):
grad_self = (- grad_output * alpha)._grad_sum_to_size(self_size)
grad_other = (grad_output)._grad_sum_to_size(other_size)
return grad_self, grad_other, None
return torch.rsub(self, other, alpha), backward
def rsub_1(self,
other: number,
alpha: number = 1.0):
self_size = self.size()
def backward(grad_output):
grad_self = (- grad_output * alpha)._grad_sum_to_size(self_size)
return grad_self, None, None
return torch.rsub(self, other, alpha), backward
def sqrt(self):
result = torch.sqrt(self)
def backward(grad_output):
return grad_output / (2 * result)
return result, backward
def t(self):
def backward(grad_output):
return torch.t(grad_output)
return torch.t(self), backward
def to_0(self,
device: Optional[Device],
dtype: Optional[int],
non_blocking: bool=False,
copy: bool=False):
self_device = self.device
self_dtype = self.dtype
if device is not None:
result = self.to(device, dtype=dtype, non_blocking=non_blocking, copy=copy)
else:
result = self.to(dtype, non_blocking=non_blocking, copy=copy)
def backward(grad_output):
grad_self = grad_output.to(self_device, dtype=self_dtype, non_blocking=non_blocking, copy=copy)
return grad_self, None, None, None, None
return result, backward
def to_1(self,
dtype: int,
non_blocking: bool=False,
copy: bool=False):
self_dtype = self.dtype
def backward(grad_output):
grad_self = grad_output.to(self_dtype, non_blocking, copy)
return grad_self, None, None, None
return self.to(dtype=dtype, non_blocking=non_blocking, copy=copy), backward
def to_2(self,
other,
non_blocking: bool=False,
copy: bool=False):
def backward(grad_output):
grad_self = grad_output.to(self, non_blocking, copy)
return grad_self, None, None, None
return self.to(other, non_blocking=non_blocking, copy=copy), backward
def transpose(self,
dim0: int,
dim1: int):
def backward(grad_output):
return torch.transpose(grad_output, dim0, dim1), None, None
return torch.transpose(self, dim0, dim1), backward
def view(self,
size: List[int]):
self_size = self.size()
def backward(grad_output):
return grad_output.reshape(self_size), None
return torch.view(self, size), backward
)",
R"(
def AD_sizes_if_not_equal_multi(t1, t2, res):
return torch._size_if_not_equal(t1.size(), res.size()), torch._size_if_not_equal(t2.size(), res.size())
def mul(self, other):
result = self * other
self_size, other_size = AD_sizes_if_not_equal_multi(self, other, result)
def backward(grad_output):
# self & other are used in backward. No need to pass in their size
# from forward pass
grad_self = (grad_output * other)._grad_sum_to_size(self_size)
grad_other = (grad_output * self)._grad_sum_to_size(other_size)
return grad_self, grad_other
return result, backward
def div(self, other):
result = self / other
self_size, other_size = AD_sizes_if_not_equal_multi(self, other, result)
def backward(grad_output):
grad_self = (grad_output / other)._grad_sum_to_size(self_size)
grad_other = (-grad_output * self / (other * other))._grad_sum_to_size(other_size)
return grad_self, grad_other
return result, backward
def max(self, other):
result = torch.max(self, other)
self_size, other_size = AD_sizes_if_not_equal_multi(self, other, result)
def backward(grad_output):
grad_self = (grad_output * (self > other).type_as(grad_output))._grad_sum_to_size(self_size)
grad_other = (grad_output * (other > self).type_as(grad_output))._grad_sum_to_size(other_size)
return grad_self, grad_other
return result, backward
def min(self, other):
def backward(grad_output):
grad_self = (grad_output * (self < other).type_as(grad_output))._grad_sum_to_size(self.size())
grad_other = (grad_output * (other < self).type_as(grad_output))._grad_sum_to_size(other.size())
return grad_self, grad_other
return torch.min(self, other), backward
def sigmoid(self):
result = torch.sigmoid(self)
def backward(grad_output):
return (1 - result) * result * grad_output
return result, backward
# Share backward with threshold
def relu(self):
result = torch.relu(self)
self_size = self.size()
def backward(grad_output):
return grad_output * (result > 0).type_as(result)
return result, backward
def erfc(self):
def backward(grad_output):
# Precomputed constant C = -2.0 / math.sqrt(math.pi)
C = -1.1283791670955126
return C * torch.exp(-self * self) * grad_output
return torch.erfc(self), backward
def exp(self):
result = torch.exp(self)
def backward(grad_output):
return grad_output * result
return result, backward
def neg(self):
def backward(grad_output):
return grad_output.neg()
return torch.neg(self), backward
def where(condition, self, other):
self_size = self.size()
other_size = other.size()
def backward(grad_output):
grad_self = (grad_output * condition.type_as(grad_output))._grad_sum_to_size(self_size)
grad_other = (grad_output * (condition.bitwise_not()).type_as(grad_output))._grad_sum_to_size(other_size)
return None, grad_self, grad_other
return torch.where(condition, self, other), backward
def type_as(self, other):
def backward(grad_output):
return grad_output.type_as(self), None
return torch.type_as(self, other), backward
def unsqueeze(self, dim: int):
def backward(grad_output):
return grad_output.squeeze(dim), None
return torch.unsqueeze(self, dim), backward
def lt(self, other):
def backward(grad_output):
return None, None
return torch.lt(self, other), backward
def gt(self, other):
def backward(grad_output):
return None, None
return torch.gt(self, other), backward
def ge(self, other):
def backward(grad_output):
return None, None
return torch.ge(self, other), backward
def eq(self, other):
def backward(grad_output):
return None, None
return torch.eq(self, other), backward
def ne(self, other):
def backward(grad_output):
return None, None
return torch.ne(self, other), backward
def abs(self):
def backward(grad_output):
return grad_output * self.sign()
return torch.abs(self), backward
def acos(self):
def backward(grad_output):
return grad_output * -((-self * self + 1).rsqrt())
return torch.acos(self), backward
def asin(self):
def backward(grad_output):
return grad_output * (-self * self + 1).rsqrt()
return torch.asin(self), backward
def atan(self):
def backward(grad_output):
return grad_output / (self * self + 1)
return torch.atan(self), backward
def ceil(self):
def backward(grad_output):
return torch.zeros_like(grad_output)
return torch.ceil(self), backward
def cos(self):
def backward(grad_output):
return grad_output * -self.sin()
return torch.cos(self), backward
def cosh(self):
def backward(grad_output):
return grad_output * self.sinh()
return torch.cosh(self), backward
def expm1(self):
result = torch.expm1(self)
def backward(grad_output):
return grad_output * (result + 1)
return result, backward
def floor(self):
def backward(grad_output):
return torch.zeros_like(grad_output)
return torch.floor(self), backward
def frac(self):
def backward(grad_output):
return grad_output
return torch.frac(self), backward
def log(self):
def backward(grad_output):
return grad_output.div(self)
return torch.log(self), backward
def log10(self):
def backward(grad_output):
return grad_output / (self * 2.3025850929940456)
return torch.log10(self), backward
def log1p(self):
def backward(grad_output):
return grad_output / (self + 1)
return torch.log1p(self), backward
def log2(self):
def backward(grad_output):
return grad_output / (self * 0.6931471805599453)
return torch.log2(self), backward
def rand_like(self):
def backward(grad_output):
return None
return torch.rand_like(self), backward
def reciprocal(self):
result = torch.reciprocal(self)
def backward(grad_output):
return -grad_output * result * result
return result, backward
def round(self):
def backward(grad_output):
return torch.zeros_like(grad_output)
return torch.round(self), backward
def rsqrt(self):
result = torch.rsqrt(self)
def backward(grad_output):
return -grad_output * result * result * result / 2
return result, backward
def sin(self):
def backward(grad_output):
return grad_output * self.cos()
return torch.sin(self), backward
def sinh(self):
def backward(grad_output):
return grad_output * self.cosh()
return torch.sinh(self), backward
def tan(self):
result = torch.tan(self)
def backward(grad_output):
return grad_output * (1. + result * result)
return result, backward
def trunc(self):
def backward(grad_output):
return torch.zeros_like(grad_output)
return torch.trunc(self), backward
def _grad_sum_to_size(self,
size: Optional[List[int]]):
if size is not None:
self_size = self.size()
else:
self_size = None
result = torch._grad_sum_to_size(self, size)
def backward(grad_output):
if self_size is None:
grad_input = grad_output
else:
grad_input = grad_output.expand(self_size)
return grad_input, None
return result, backward
)",
R"(
def AD_adaptive_avg_pool2d_backward(grad,
self,
output_size: List[int]):
if output_size[0] == 1 and output_size[1] == 1:
self_size = self.size()
grad_self = grad.expand(self.size()) / (self_size[-1] * self_size[-2])
else:
grad_self = torch._adaptive_avg_pool2d_backward(grad, self)
return grad_self
def AD_adaptive_avg_pool1d_backward(grad,
input,
output_size: List[int]):
output_size_2d = [1, output_size[0]]
grad_input = AD_adaptive_avg_pool2d_backward(grad.unsqueeze(2), input.unsqueeze(2), output_size_2d).squeeze(2)
return grad_input
def adaptive_avg_pool1d(self,
output_size: List[int]):
def backward(grad_output):
grad_self = AD_adaptive_avg_pool1d_backward(grad_output, self, output_size)
return grad_self, None
return torch.adaptive_avg_pool1d(self, output_size), backward
def adaptive_avg_pool2d(self,
output_size: List[int]):
def backward(grad_output):
# self is used in backward, no need to pass in its size explicitly
grad_self = AD_adaptive_avg_pool2d_backward(grad_output, self, output_size)
return grad_self, None
return torch.adaptive_avg_pool2d(self, output_size), backward
def adaptive_avg_pool3d(self,
output_size: List[int]):
def backward(grad_output):
grad_self = torch.adaptive_avg_pool3d_backward(grad_output, self)
return grad_self, None
return torch.adaptive_avg_pool3d(self, output_size), backward
def avg_pool2d(self,
kernel_size: List[int],
stride: List[int],
padding: List[int],
ceil_mode: bool,
count_include_pad: bool,
divisor_override: Optional[int]):
def backward(grad_output):
grad_self = torch.avg_pool2d_backward(grad_output, self, kernel_size, stride, padding, ceil_mode, count_include_pad, divisor_override)
return grad_self, None, None, None, None, None, None
return torch.avg_pool2d(self, kernel_size, stride, padding, ceil_mode, count_include_pad, divisor_override), backward
def max_pool2d(self,
kernel_size: List[int],
stride: List[int],
padding: List[int],
dilation: List[int],
ceil_mode: bool):
output, indices = torch.max_pool2d_with_indices(self, kernel_size, stride, padding, dilation, ceil_mode)
def backward(grad_output):
grad_self = torch.max_pool2d_with_indices_backward(grad_output, self, kernel_size, stride, padding, dilation, ceil_mode, indices)
return grad_self, None, None, None, None, None
return output, backward
def batch_norm(input : Tensor,
weight : Optional[Tensor],
bias : Optional[Tensor],
running_mean : Optional[Tensor],
running_var : Optional[Tensor],
training : bool,
momentum : float,
eps : float,
cudnn_enabled : bool):
output, save1, save2, impl_idx = torch._batch_norm_impl_index(
input, weight, bias, running_mean, running_var, training,
momentum, eps, cudnn_enabled)
has_weight = weight is not None
has_bias = bias is not None
def backward(grad_output):
dinput, dweight, dbias = torch._batch_norm_impl_index_backward(
impl_idx, input, grad_output, weight, running_mean, running_var,
save1, save2, training, eps, [True, has_weight, has_bias])
return dinput, dweight, dbias, None, None, None, None, None, None
return output, backward
# disable the layernorm AD temporarily because of bug in https://github.com/pytorch/pytorch/issues/19769
def layer_norm_disabled(input : Tensor,
normalized_shape : List[int],
weight : Optional[Tensor],
bias : Optional[Tensor],
eps : float,
cudnn_enable : bool):
input_ndim = input.dim()
normalized_ndim = len(normalized_shape)
n = 1
for i in range(input_ndim - normalized_ndim):
n *= input.size(i)
input_reshape = input.contiguous().view(1, n, -1)
bn_out, save1, save2, impl_idx = torch._batch_norm_impl_index(
input_reshape, None, None, None, None, True,
0.0, eps, cudnn_enable)
bn_out = bn_out.view(input.size())
if weight is not None and bias is not None:
output = bias.addcmul(bn_out, weight, value=1)
elif weight is not None:
output = bn_out.mul(weight)
elif bias is not None:
output = bn_out.add(bias)
else:
output = bn_out
def backward(grad_output):
if weight is not None and bias is not None:
grad_bn_out = grad_output * weight
grad_weight = (grad_output * bn_out)._grad_sum_to_size(weight.size())
grad_bias = grad_output._grad_sum_to_size(bias.size())
elif weight is not None:
grad_bn_out = grad_output * weight
grad_weight = (grad_output * bn_out)._grad_sum_to_size(weight.size())
grad_bias = None
elif bias is not None:
grad_bn_out = grad_output
grad_weight= None
grad_bias = grad_output._grad_sum_to_size(bias.size())
else:
grad_bn_out = grad_output
grad_weight= None
grad_bias = None
grad_bn_out = grad_bn_out.contiguous().view(1, n, -1)
grad_input, _, _ = torch._batch_norm_impl_index_backward(
impl_idx, input_reshape, grad_bn_out, None, None, None,
save1, save2, True, eps, [True, False, False])
grad_input = grad_input.view(input.size())
return grad_input, None, grad_weight, grad_bias, None, None
return output, backward
def AD_fused_dropout_backward(grad,
mask,
p1m: float):
p1r = 1. / p1m
grad_input = grad * (mask.type_as(grad) * p1r)
return grad_input
def dropout(input,
p: float,
train: bool):
use_cuda = input.is_cuda
# lowering is specialized for cuda because cuda fuser can efficiently fuse those operations
# for cpu backend, where fusions are disabled, a different lowering that is more efficient
# in the absence of fusion is used
p1m = 1. - p
if use_cuda:
mask = torch.rand_like(input) < p1m
res = mask.type_as(input) * input * (1./p1m)
else:
mask = torch.empty_like(input)
mask.bernoulli_(p1m)
res = mask * input / p1m
if not train:
p1m = 1.
res = input
mask = torch.ones_like(input)
def backward(grad_output):
use_cuda = grad_output.is_cuda
if use_cuda:
grad_input = AD_fused_dropout_backward(grad_output, mask, p1m)
else:
grad_input = grad_output * mask / p1m
return grad_input, None, None
return res, backward
def embedding(weight,
indices,
padding_idx: int,
scale_grad_by_freq: bool,
sparse: bool):
weight_size_0 = weight.size()[0]
def backward(grad_output):
grad_weight = torch.embedding_backward(grad_output, indices, weight_size_0, padding_idx, scale_grad_by_freq, sparse)
return grad_weight, None, None, None, None
return torch.embedding(weight, indices, padding_idx, scale_grad_by_freq, sparse), backward
def log_softmax(self, dim: int, dtype: Optional[int]):
result = torch.log_softmax(self, dim, dtype)
def backward(grad_output):
grad_self = torch._log_softmax_backward_data(grad_output, result, dim, self)
return grad_self, None, None
return result, backward
def nll_loss(self, target, weight: Optional[Tensor], reduction: int, ignore_index: int):
result, total_weight = torch.nll_loss_forward(self, target, weight, reduction, ignore_index)
def backward(grad):
return torch.nll_loss_backward(grad, self, target, weight, reduction, ignore_index, total_weight), None, None, None, None
return result, backward
def softmax(self, dim: int, dtype: Optional[int]):
result = torch.softmax(self, dim, dtype)
def backward(grad_output):
grad_self = torch._softmax_backward_data(grad_output, result, dim, self)
return grad_self, None, None
return result, backward
def AD_interpolate_backward(grad,
input,
mode: str,
align_corners: bool):
output_size = grad.size()[2:]
input_size = input.size()
input_dim = len(input_size)
if input_dim == 3 and mode == 'nearest':
grad_input = torch.upsample_nearest1d_backward(grad, output_size, input_size)
elif input_dim == 4 and mode == 'nearest':
grad_input = torch.upsample_nearest2d_backward(grad, output_size, input_size)
elif input_dim == 5 and mode == 'nearest':
grad_input = torch.upsample_nearest3d_backward(grad, output_size, input_size)
elif input_dim == 3 and mode == 'linear':
grad_input = torch.upsample_linear1d_backward(grad, output_size, input_size, align_corners)
elif input_dim == 4 and mode == 'bilinear':
grad_input = torch.upsample_bilinear2d_backward(grad, output_size, input_size, align_corners)
elif input_dim == 5 and mode == 'trilinear':
grad_input = torch.upsample_trilinear3d_backward(grad, output_size, input_size, align_corners)
elif input_dim == 4 and mode == 'bicubic':
grad_input = torch.upsample_bicubic2d_backward(grad, output_size, input_size, align_corners)
elif input_dim == 3 and mode == 'area':
grad_input = AD_adaptive_avg_pool1d_backward(grad, input, output_size)
elif input_dim == 4 and mode == 'area':
grad_input = AD_adaptive_avg_pool2d_backward(grad, input, output_size)
elif input_dim == 5 and mode == 'area':
grad_input = torch.adaptive_avg_pool3d_backward(grad, input)
else:
# NEVER REACH HERE
grad_input = torch.zeros_like(input)
raise RuntimeError('Input Error: Only 3D, 4D and 5D input Tensors supported')
return grad_input
def __interpolate_0(input,
size: Optional[int],
scale_factor: Optional[List[float]],
mode: str='nearest',
align_corners: Optional[bool]):
def backward(grad_output):
if align_corners is None:
align_corners = False
grad_self = AD_interpolate_backward(grad_output, input, mode, align_corners)
return grad_self, None, None, None, None
return torch.__interpolate(input, size, scale_factor, mode, align_corners), backward
def __interpolate_1(input,
size: Optional[List[int]],
scale_factor: Optional[List[float]],
mode: str='nearest',
align_corners: Optional[bool]):
def backward(grad_output):
if align_corners is None:
align_corners = False
grad_self = AD_interpolate_backward(grad_output, input, mode, align_corners)
return grad_self, None, None, None, None
return torch.__interpolate(input, size, scale_factor, mode, align_corners), backward
def __interpolate_2(input,
size: Optional[int],
scale_factor: Optional[float],
mode: str='nearest',
align_corners: Optional[bool]):
def backward(grad_output):
if align_corners is None:
align_corners = False
grad_self = AD_interpolate_backward(grad_output, input, mode, align_corners)
return grad_self, None, None, None, None
return torch.__interpolate(input, size, scale_factor, mode, align_corners), backward
def __interpolate_3(input,
size: Optional[List[int]],
scale_factor: Optional[float],
mode: str='nearest',
align_corners: Optional[bool]):
def backward(grad_output):
if align_corners is None:
align_corners = False
grad_self = AD_interpolate_backward(grad_output, input, mode, align_corners)
return grad_self, None, None, None, None
return torch.__interpolate(input, size, scale_factor, mode, align_corners), backward
)"};
std::unordered_map<std::string, GradientPair> schema_to_graphs;
// This map is a workaround to cache compiled gradient_pairs. Ideally this graph
// should be compiled only once and saved in Operator structure.
// This should be done along with merging into native_functions.yaml.
std::unordered_map<const FunctionSchema*, GradientPair> cached_gradient_pairs;
} // anonymous namespace
std::pair<std::shared_ptr<Graph>, Value*> extractClosure(Value* closure) {
TORCH_CHECK(
closure->node()->kind() == prim::TupleConstruct,
"closure must be a literal tuple construct");
Value* fn = closure->node()->inputs().at(0);
Value* context = closure->node()->inputs().at(1);
TORCH_CHECK(
fn->node()->kind() == prim::Function,
"closure tuple must contain a prim::Function");
return std::make_pair(fn->node()->g(attr::Subgraph), context);
}
Argument originalReturnType(const TupleTypePtr& tup) {
TORCH_CHECK(tup->elements().size() > 1);
if (tup->elements().size() == 2)
return Argument("", tup->elements().at(0));
std::vector<TypePtr> types = tup->elements().vec();
types.pop_back();
return Argument("", TupleType::create(std::move(types)));
}
// In torchscript AD formulas, we define {func_0, func_1, ...} as
// overloaded functions of `func`.
// Remove the suffix before adding the schema string to map
// schema_to_graphs.
std::string overloadedSchemaString(const FunctionSchema& schema) {
const auto& schema_name = schema.name();
auto pos = schema_name.find_last_of('_');
auto schema_name_suffix = schema_name.substr(pos + 1);
std::string schema_string = canonicalSchemaString(schema);
if (!schema_name_suffix.empty() &&
schema_name_suffix.find_first_not_of("0123456789") == std::string::npos) {
schema_string.replace(
schema_string.find(schema_name),
schema_name.length(),
schema_name.substr(0, pos));
}
return schema_string;
}
bool isHelperFunction(const std::string& method_name) {
std::string helper_prefix = "AD_";
return method_name.compare(0, helper_prefix.length(), helper_prefix) == 0;
}
void loadModule(const script::CompilationUnit& module) {
for (const auto& method : module.get_functions()) {
if (isHelperFunction(method->name()))
continue;
GradientPair pair;
pair.forward = method->graph();
// lookup the backward function
Node* forward_tuple = pair.forward->outputs().at(0)->node();
if (forward_tuple->kind() != prim::TupleConstruct) {
throw script::ErrorReport(forward_tuple->sourceRange())
<< "gradient must return literal a tuple";
}
Value* context;
std::tie(pair.backward, context) =
extractClosure(forward_tuple->inputs().back());
// do surgery on the forward function to remove the closure tuple and
// replace it with the context variable:
// backward = (<lambda>, context_tuple)
// return original, backward
// -----
// return original, context_tuple
std::vector<Value*> new_inputs = forward_tuple->inputs().vec();
new_inputs.back() = context;
Value* new_tuple =
pair.forward->appendNode(pair.forward->createTuple(new_inputs))
->output();
pair.forward->eraseOutput(0);
pair.forward->registerOutput(new_tuple);
forward_tuple->destroy();
// derive schema from original function's schema:
const FunctionSchema& loaded_schema = method->getSchema();
FunctionSchema actual_schema(
Symbol::aten(loaded_schema.name()),
loaded_schema.overload_name(),
loaded_schema.arguments(),
{originalReturnType(new_tuple->type()->expect<TupleType>())});
// modify canonical string for function overloading
// prefer not to modify the schema name
auto schema_string = overloadedSchemaString(actual_schema);
schema_to_graphs[schema_string] = std::move(pair);
}
}
void loadFunctions() {
for (const std::string& str : functions) {
script::CompilationUnit cu;
cu.define(c10::nullopt, str, script::nativeResolver(), nullptr);
loadModule(cu);
}
}
c10::optional<GradientPair> gradientInfoForSchema(
const FunctionSchema& schema) {
std::lock_guard<std::mutex> guard(lock);
if (schema_to_graphs.size() == 0) {
loadFunctions();
}
auto cache_it = cached_gradient_pairs.find(&schema);
if (cache_it != cached_gradient_pairs.end()) {
return cache_it->second;
} else {
auto schema_str = canonicalSchemaString(schema);
// For debugging AD change:
// std::cout << "Looking for " << schema_str << std::endl;
auto sym_script_it = schema_to_graphs.find(schema_str);
if (sym_script_it != schema_to_graphs.end()) {
cached_gradient_pairs.emplace_hint(
cache_it, &schema, sym_script_it->second);
return sym_script_it->second;
}
}
return c10::nullopt;
}
bool hasGradientInfoForSchema(const FunctionSchema& schema) {
return gradientInfoForSchema(schema).has_value();
}
} // namespace jit
} // namespace torch
| [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
ef250c38c5c691ef9d93e68f5c75c96765ef0abf | d09945668f19bb4bc17087c0cb8ccbab2b2dd688 | /2012-2016/2013/joi/spring_day3/b.cpp | a4a7ca3940db1a1583688a27975ccca5623db359 | [] | no_license | kmjp/procon | 27270f605f3ae5d80fbdb28708318a6557273a57 | 8083028ece4be1460150aa3f0e69bdb57e510b53 | refs/heads/master | 2023-09-04T11:01:09.452170 | 2023-09-03T15:25:21 | 2023-09-03T15:25:21 | 30,825,508 | 23 | 2 | null | 2023-08-18T14:02:07 | 2015-02-15T11:25:23 | C++ | SHIFT_JIS | C++ | false | false | 1,871 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;
#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------
int K,M,D,A,N;
ll T[202020],B[202020];
ll dp[202020];
template<class V,int NV> class SegTree_1 {
public:
vector<V> val;
static V const def=-(1LL<<60);
V comp(V l,V r){ return max(l,r);};
SegTree_1(){val=vector<V>(NV*2,def);};
V getval(int x,int y,int l=0,int r=NV,int k=1) { // x<=i<y
if(r<=x || y<=l) return def;
if(x<=l && r<=y) return val[k];
return comp(getval(x,y,l,(l+r)/2,k*2),getval(x,y,(l+r)/2,r,k*2+1));
}
void update(int entry, V v) {
entry += NV;
val[entry]=comp(v,val[entry]); //上書きかチェック
while(entry>1) entry>>=1, val[entry]=comp(val[entry*2],val[entry*2+1]);
}
};
SegTree_1<ll,1<<20> st;
void solve() {
int i,j,k,l,r,x,y; string s;
cin>>K>>M>>D>>A>>N;
FOR(i,N) {
cin>>T[i+1]>>B[i+1];
T[i+1]-=K;
}
T[N+1]=M-K;
vector<int> X;
X.push_back(-1);
X.push_back(D);
N+=2;
FOR(i,N) X.push_back(T[i]%D);
sort(ALL(X));
X.erase(unique(ALL(X)),X.end());
FOR(i,N) {
x=lower_bound(ALL(X),T[i]%D)-X.begin();
if(i) {
dp[i]=max(st.getval(0,x)-(T[i]/D+1)*A,st.getval(x,X.size())-(T[i]/D)*A)+B[i];
}
st.update(x,dp[i]+T[i]/D*A);
}
cout<<dp[N-1]<<endl;
}
int main(int argc,char** argv){
string s;int i;
if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
cout.tie(0); solve(); return 0;
}
| [
"kmjp@users.noreply.github.com"
] | kmjp@users.noreply.github.com |
ab887704cd2d11a1e724fa4edb443f8f833d0b17 | edbe7b1161225c90bb07117a710652c1e7778c7d | /Wrestling.h | c88f40036be99097371dc482355f81de90436e27 | [] | no_license | AhmadrezaHadi/SamavarQt | 1895e576647a78933c97b735ed28b6a6662556d9 | d012892970176bca58b18ab4649026cf30e1403f | refs/heads/master | 2021-07-17T20:44:33.279503 | 2020-08-06T11:18:51 | 2020-08-06T11:18:51 | 194,386,440 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 763 | h | //
// Created by Jarvis on 5/9/2019.
//
#ifndef SAMAVAR_WRESTLING_H
#define SAMAVAR_WRESTLING_H
#include <QVector>
#include "Sport.h"
#include "shit.h"
class Wrestling : public Sport {
protected:
QVector<Tournament<int>> tours;
Wrestling(){}
public:
static Wrestling& getInstance(){
static Wrestling p;
return p;
}
//-------------Setter------------
//------------Getter-------------
QVector<Tournament<int>> getTours() const;
Tournament<int> getTourById(int id) const;
//----------Others---------------
void addTour(Tournament<int> v);
};
//Wrestling wre=Wrestling::getInstance(); //todo uncomment here after completing constructor
#endif //SAMAVAR_WRESTLING_H
| [
"noreply@github.com"
] | noreply@github.com |
fa9e34b7ff028ab4f84a88f50d792cc67c84899d | 26c55be2a2b7c1c5e23a3a565e4f13968c45a324 | /src/cudadecoderbin/batched-wav-nnet3-cuda2.cc | d748cc8bd1c81923c968069b7533c203f850d13d | [
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | SpeechColab/kaldi | 9f134fd5b59e273bc7c164a0d290404359def4b5 | 6d03736d09a5575125f2d278fc0f250c5541f6e4 | refs/heads/master | 2023-06-05T02:24:15.704954 | 2021-06-29T07:55:47 | 2021-06-29T07:55:47 | 347,869,738 | 6 | 4 | NOASSERTION | 2021-06-29T07:40:22 | 2021-03-15T07:04:53 | Shell | UTF-8 | C++ | false | false | 9,290 | cc | // cudadecoderbin/batched-wav-nnet3-cuda2.cc
//
// Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
// Hugo Braun
//
// 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 <atomic>
#if HAVE_CUDA == 1
#include <cuda.h>
#include <cuda_profiler_api.h>
#include <nvToolsExt.h>
#include <sstream>
#include "cudadecoder/batched-threaded-nnet3-cuda-pipeline2.h"
#include "cudadecoderbin/cuda-bin-tools.h"
#include "cudamatrix/cu-allocator.h"
#include "fstext/fstext-lib.h"
#include "lat/lattice-functions.h"
#include "nnet3/am-nnet-simple.h"
#include "nnet3/nnet-utils.h"
#include "util/kaldi-thread.h"
// Used as a max segment length if segmentation is disabled
// Not using FLT_MAX to avoid overflows
#define KALDI_CUDA_DECODER_BIN_MAX_SEGMENT_LENGTH_S 3600
using namespace kaldi;
using namespace cuda_decoder;
int main(int argc, char *argv[]) {
try {
using namespace kaldi;
using namespace fst;
typedef kaldi::int32 int32;
typedef kaldi::int64 int64;
const char *usage =
"Reads in wav file(s) and decodes them with "
"neural nets\n"
"(nnet3 setup). Note: some configuration values "
"and inputs "
"are\n"
"set via config files whose filenames are passed as "
"options\n"
"Output can either be a lattice wspecifier or a ctm filename"
"\n"
"Usage: batched-wav-nnet3-cuda2 [options] <nnet3-in> "
"<fst-in> "
"<wav-rspecifier> <lattice-wspecifier|ctm-wxfilename>\n";
std::string word_syms_rxfilename;
bool write_lattice = true;
int num_todo = -1;
int iterations = 1;
bool segmentation = false;
std::string lattice_postprocessor_config_rxfilename;
ParseOptions po(usage);
po.Register("write-lattice", &write_lattice,
"Output lattice to a file. Setting to false is useful when "
"benchmarking");
po.Register("word-symbol-table", &word_syms_rxfilename,
"Symbol table for words [for debug output]");
po.Register("file-limit", &num_todo,
"Limits the number of files that are processed by "
"this driver. "
"After N files are processed the remaining files "
"are ignored. "
"Useful for profiling");
po.Register("iterations", &iterations,
"Number of times to decode the corpus. Output will "
"be written "
"only once.");
po.Register("segmentation", &segmentation,
"Split audio files into segments");
po.Register("lattice-postprocessor-rxfilename",
&lattice_postprocessor_config_rxfilename,
"(optional) Config file for lattice postprocessor");
// Multi-threaded CPU and batched GPU decoder
BatchedThreadedNnet3CudaPipeline2Config batched_decoder_config;
CuDevice::RegisterDeviceOptions(&po);
RegisterCuAllocatorOptions(&po);
batched_decoder_config.Register(&po);
po.Read(argc, argv);
if (po.NumArgs() != 4) {
po.PrintUsage();
return 1;
}
g_cuda_allocator.SetOptions(g_allocator_options);
CuDevice::Instantiate().SelectGpuId("yes");
CuDevice::Instantiate().AllowMultithreading();
std::string nnet3_rxfilename = po.GetArg(1), fst_rxfilename = po.GetArg(2),
wav_rspecifier = po.GetArg(3), output_wspecifier = po.GetArg(4);
std::shared_ptr<TransitionModel> trans_model(new TransitionModel());
nnet3::AmNnetSimple am_nnet;
// read transition model and nnet
bool binary;
Input ki(nnet3_rxfilename, &binary);
trans_model->Read(ki.Stream(), binary);
am_nnet.Read(ki.Stream(), binary);
SetBatchnormTestMode(true, &(am_nnet.GetNnet()));
SetDropoutTestMode(true, &(am_nnet.GetNnet()));
nnet3::CollapseModel(nnet3::CollapseModelConfig(), &(am_nnet.GetNnet()));
std::unique_ptr<CompactLatticeWriter> clat_writer;
std::unique_ptr<Output> ctm_writer;
OpenOutputHandles(output_wspecifier, &clat_writer, &ctm_writer);
if (!write_lattice) clat_writer.reset();
std::mutex output_writer_m_;
fst::Fst<fst::StdArc> *decode_fst =
fst::ReadFstKaldiGeneric(fst_rxfilename);
if (!segmentation) {
batched_decoder_config.seg_opts.segment_length_s =
KALDI_CUDA_DECODER_BIN_MAX_SEGMENT_LENGTH_S;
}
BatchedThreadedNnet3CudaPipeline2 cuda_pipeline(
batched_decoder_config, *decode_fst, am_nnet, *trans_model);
delete decode_fst;
fst::SymbolTable *word_syms = NULL;
if (word_syms_rxfilename != "") {
if (!(word_syms = fst::SymbolTable::ReadText(word_syms_rxfilename)))
KALDI_ERR << "Could not read symbol table from file "
<< word_syms_rxfilename;
cuda_pipeline.SetSymbolTable(*word_syms);
}
// Lattice postprocessor
if (lattice_postprocessor_config_rxfilename.empty()) {
if (ctm_writer) {
KALDI_ERR << "You must configure the lattice postprocessor with "
"--lattice-postprocessor-rxfilename to use CTM output";
}
} else {
LoadAndSetLatticePostprocessor(lattice_postprocessor_config_rxfilename,
&cuda_pipeline);
}
int32 num_task_submitted = 0, num_err = 0;
double total_audio = 0;
nvtxRangePush("Global Timer");
// starting timer here so we
// can measure throughput
// without allocation
// overheads
// using kaldi timer, which starts counting in the constructor
Timer timer;
std::vector<double> iteration_timer;
KALDI_LOG << "Inferencing...";
for (int iter = 0; iter < iterations; iter++) {
num_task_submitted = 0;
SequentialTableReader<WaveHolder> wav_reader(wav_rspecifier);
for (; !wav_reader.Done(); wav_reader.Next()) {
std::string utt = wav_reader.Key();
std::string key = utt;
if (iter > 0) key = std::to_string(iter) + "-" + key;
std::shared_ptr<WaveData> wave_data = std::make_shared<WaveData>();
wave_data->Swap(&wav_reader.Value());
if (iter == 0) {
// calculating number of utterances per
// iteration calculating total audio
// time per iteration
total_audio += wave_data->Duration();
}
// Callback used when results are ready
//
// If lattice output, write all lattices to clat_writer
// If segmentation is true, then the keys are:
// [utt_key]-[segment_offset]
//
// If CTM output, merging segment results together
// and writing this single output to ctm_writer
SegmentedResultsCallback segmented_callback =
[&clat_writer, &ctm_writer, &output_writer_m_, key, segmentation,
word_syms](SegmentedLatticeCallbackParams ¶ms) {
if (clat_writer) {
std::lock_guard<std::mutex> lk(output_writer_m_);
bool print_offsets = segmentation;
WriteLattices(params.results, key, print_offsets, *clat_writer);
}
if (ctm_writer) {
std::lock_guard<std::mutex> lk(output_writer_m_);
MergeSegmentsToCTMOutput(params.results, key,
ctm_writer->Stream(), word_syms);
}
};
int result_type = 0;
if (ctm_writer) result_type |= CudaPipelineResult::RESULT_TYPE_CTM;
if (clat_writer) result_type |= CudaPipelineResult::RESULT_TYPE_LATTICE;
// Always calling SegmentedResultsCallback even if segmentation is false
// If segmentation is false, we just set segment_length to some high
// value. This is to avoid unnecessary code duplication
cuda_pipeline.SegmentedDecodeWithCallback(wave_data, segmented_callback,
result_type);
num_task_submitted++;
if (num_todo != -1 && num_task_submitted >= num_todo) break;
} // end utterance loop
} // end iterations loop
cuda_pipeline.WaitForAllTasks();
// number of seconds elapsed since the creation of timer
double total_time = timer.Elapsed();
nvtxRangePop();
KALDI_LOG << "Decoded " << num_task_submitted << " utterances, " << num_err
<< " with errors.";
KALDI_LOG << "Overall: "
<< " Aggregate Total Time: " << total_time
<< " Total Audio: " << total_audio * iterations
<< " RealTimeX: " << total_audio * iterations / total_time;
delete word_syms; // will delete if non-NULL.
cudaDeviceSynchronize();
return 0;
} catch (const std::exception &e) {
std::cerr << e.what();
return -1;
}
} // main()
#endif // if HAVE_CUDA == 1
| [
"noreply@github.com"
] | noreply@github.com |
fe121b25cae7b88e82950ffb9ca002b1fc4d0a4e | 1e1b3f702bdf6c0544ae27a321c8ebe605434ee4 | /Chapter8/Sample197/DySplitterWnd/DySplitterWndDoc.h | 9170e782d50957d5b13c9aaab2d464d1285982d6 | [] | no_license | Aque1228556367/Visual_Cpp_By_Example | 63e3d67e734b7d95385a329e4a1641e7b1727084 | 41f903d8c9938e7800d89fcff31b182bfc1c4f45 | refs/heads/master | 2021-03-12T20:36:56.780300 | 2015-05-08T02:05:46 | 2015-05-08T02:05:46 | 35,171,152 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,495 | h | // DySplitterWndDoc.h : interface of the CDySplitterWndDoc class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_DYSPLITTERWNDDOC_H__533568E9_09C4_4261_A689_54243EC7D3DE__INCLUDED_)
#define AFX_DYSPLITTERWNDDOC_H__533568E9_09C4_4261_A689_54243EC7D3DE__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CDySplitterWndDoc : public CDocument
{
protected: // create from serialization only
CDySplitterWndDoc();
DECLARE_DYNCREATE(CDySplitterWndDoc)
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDySplitterWndDoc)
public:
virtual BOOL OnNewDocument();
virtual void Serialize(CArchive& ar);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CDySplitterWndDoc();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CDySplitterWndDoc)
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_DYSPLITTERWNDDOC_H__533568E9_09C4_4261_A689_54243EC7D3DE__INCLUDED_)
| [
"1228556367@qq.com"
] | 1228556367@qq.com |
67dda643e3c2b9c414cc1935c1104df88bff4f7a | ad690ef89ca68c6d2784f406f3a0d5d0f719c9e9 | /sort/PISORT~1.BAK | 67b3146cabfbda12e8e26b775ec0f50f7139b98e | [] | no_license | Hits-95/Data_Structure | 0e501e2056af646f6a7879b1a374ddde811d8686 | e26d53b01b3253dbb97e162bdddd4c9db2f69aad | refs/heads/master | 2023-03-12T19:00:23.414914 | 2021-03-02T12:17:52 | 2021-03-02T12:17:52 | 322,358,911 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 540 | bak | #include<stdio.h>
#include<conio.h>
void main() {
int x[10],i,j,n,key;
clrscr();
//INPUT
printf("\n Enter value of n = ");
scanf("%d",&n);
printf("Enter %d values ",n);
for(i=0;i<n;i++){
scanf("%d",&x[i]);
}
//PROCESS
for(i=1;i<n;i++){
key=x[i];
for(j=i-1;j>=0 && x[j]>key;j--){
x[j+1]=x[j];
}
x[j+1]=key;
}
//OUTPUT
printf("\n The insertion sort result is = ");
for(i=0;i<n;i++){
printf("\n%d",x[i]);
}
getch();
}
| [
"hbahire2014@gmail.com"
] | hbahire2014@gmail.com |
8c0b23b936f21a93079a2ff353be4b18276ea4bf | 78918391a7809832dc486f68b90455c72e95cdda | /boost_lib/boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp | 5f68bbfcdc1aea4105be5314a10278d0b7d5be44 | [
"MIT"
] | permissive | kyx0r/FA_Patcher | 50681e3e8bb04745bba44a71b5fd04e1004c3845 | 3f539686955249004b4483001a9e49e63c4856ff | refs/heads/master | 2022-03-28T10:03:28.419352 | 2020-01-02T09:16:30 | 2020-01-02T09:16:30 | 141,066,396 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,066 | hpp |
// Copyright Aleksey Gurtovoy 2000-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// Preprocessed version of "boost/mpl/bind_fwd.hpp" header
// -- DO NOT modify by hand!
namespace boost
{
namespace mpl
{
template<
typename F, typename T1 = na, typename T2 = na, typename T3 = na
, typename T4 = na, typename T5 = na, int dummy_ = 0
>
struct bind;
template<
typename F, int dummy_ = 0
>
struct bind0;
template<
typename F, typename T1, int dummy_ = 0
>
struct bind1;
template<
typename F, typename T1, typename T2, int dummy_ = 0
>
struct bind2;
template<
typename F, typename T1, typename T2, typename T3, int dummy_ = 0
>
struct bind3;
template<
typename F, typename T1, typename T2, typename T3, typename T4
, int dummy_ = 0
>
struct bind4;
template<
typename F, typename T1, typename T2, typename T3, typename T4
, typename T5, int dummy_ = 0
>
struct bind5;
}
}
| [
"k.melekhin@gmail.com"
] | k.melekhin@gmail.com |
661a2c209820e3b2d1209ac5bcdd7f1a184dcf5d | f0ffbfedf511674c02d2258bfe27a9c0c974ffe3 | /CSCI6212/trapRainWater.cpp | 4bd5026457fb6819c671f5fc88793564d78e9064 | [] | no_license | swilliams9671/computerSystems | ed7af611dc881af7c843d16ba07fcd11e1790f0c | 863755bd4bbdb555d154bc26c8091c10ca84c47b | refs/heads/master | 2023-07-19T07:10:54.305213 | 2019-12-03T20:09:16 | 2019-12-03T20:09:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,025 | cpp | /* Author: Steven Williams
** Given an elevation map (with non-negative integers), compute how much water the terrain map will trap
** The map is shown below (x marks the elvation and - marks the trapped water)
** |
** | x
** | x---xx-x
** | x-xx-xxxxxx
** --------------
*/
#include<iostream>
#include<vector>
using namespace std;
int trap(vector<int> &height)
{
if(height.empty() == true)
return 0;
int ans = 0;
int size = height.size();
vector<int> left_max(size), right_max(size);
//Find the maximum height of a column from the left side of the elevation map
left_max[0] = height[0];
for (int i = 1; i < size; i++) {
left_max[i] = max(height[i], left_max[i - 1]);
cout << "Left max for " << i << " " << left_max[i] << endl;
}
//Find the maximum height of a column from the right side of the elevation map
right_max[size - 1] = height[size - 1];
for (int i = size - 2; i >= 0; i--) {
right_max[i] = max(height[i], right_max[i + 1]);
cout << "Right max for " << i << " " << right_max[i] << endl;
}
//Iterate through the elevation map and calculate the trapped water
//The calculation is the minimum of both max heights (left and right) minus the height of the current column
for (int i = 1; i < size - 1; i++) {
ans += min(left_max[i], right_max[i]) - height[i];
cout << "Left max is " << left_max[i] << " and right max is " << right_max[i] << " and height is " << height[i] << endl;
}
return ans;
}
int main(){
vector<int> height;
//Create the elevation map using a vector (dynamically sized array)
height.push_back(0);
height.push_back(1);
height.push_back(0);
height.push_back(2);
height.push_back(1);
height.push_back(0);
height.push_back(1);
height.push_back(3);
height.push_back(2);
height.push_back(1);
height.push_back(2);
height.push_back(1);
//Find and print the trapped water
int answer = trap(height);
cout << answer << endl;
return 0;
} | [
"mstevenwilliams@gmail.com"
] | mstevenwilliams@gmail.com |
5a83bd03ed99eaf0f6f30fe194a052ec5b5ef125 | b9ddbd77973d98c04485dff3694b06ee38a904e1 | /include/assimp/BaseProcess.h | 95c1af81538c14b76116aaf874dc63688acd0507 | [
"WTFPL"
] | permissive | wilkie/apsis | 64a6e9599dc22ae3efc8b9d57cb0c1ee6daf4691 | 9e6a37ad9dfc8931b25b9429d7e4a770b4e760bf | refs/heads/master | 2016-09-05T15:18:05.598538 | 2013-10-12T05:48:33 | 2013-10-12T05:49:00 | 3,038,052 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 8,188 | h | /*
Open Asset Import Library (assimp)
----------------------------------------------------------------------
Copyright (c) 2006-2012, assimp team
All rights reserved.
Redistribution and use of this software 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 assimp team, nor the names of its
contributors may be used to endorse or promote products
derived from this software without specific prior
written permission of the assimp team.
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.
----------------------------------------------------------------------
*/
/** @file Base class of all import post processing steps */
#ifndef INCLUDED_AI_BASEPROCESS_H
#define INCLUDED_AI_BASEPROCESS_H
#include <map>
#include "assimp/types.h"
#include "GenericProperty.h"
struct aiScene;
namespace Assimp {
class Importer;
// ---------------------------------------------------------------------------
/** Helper class to allow post-processing steps to interact with each other.
*
* The class maintains a simple property list that can be used by pp-steps
* to provide additional information to other steps. This is primarily
* intended for cross-step optimizations.
*/
class SharedPostProcessInfo
{
public:
struct Base
{
virtual ~Base()
{}
};
//! Represents data that is allocated on the heap, thus needs to be deleted
template <typename T>
struct THeapData : public Base
{
THeapData(T* in)
: data (in)
{}
~THeapData()
{
delete data;
}
T* data;
};
//! Represents static, by-value data not allocated on the heap
template <typename T>
struct TStaticData : public Base
{
TStaticData(T in)
: data (in)
{}
~TStaticData()
{}
T data;
};
// some typedefs for cleaner code
typedef unsigned int KeyType;
typedef std::map<KeyType, Base*> PropertyMap;
public:
//! Destructor
~SharedPostProcessInfo()
{
Clean();
}
//! Remove all stored properties from the table
void Clean()
{
// invoke the virtual destructor for all stored properties
for (PropertyMap::iterator it = pmap.begin(), end = pmap.end();
it != end; ++it)
{
delete (*it).second;
}
pmap.clear();
}
//! Add a heap property to the list
template <typename T>
void AddProperty( const char* name, T* in ){
AddProperty(name,(Base*)new THeapData<T>(in));
}
//! Add a static by-value property to the list
template <typename T>
void AddProperty( const char* name, T in ){
AddProperty(name,(Base*)new TStaticData<T>(in));
}
//! Get a heap property
template <typename T>
bool GetProperty( const char* name, T*& out ) const
{
THeapData<T>* t = (THeapData<T>*)GetPropertyInternal(name);
if(!t)
{
out = NULL;
return false;
}
out = t->data;
return true;
}
//! Get a static, by-value property
template <typename T>
bool GetProperty( const char* name, T& out ) const
{
TStaticData<T>* t = (TStaticData<T>*)GetPropertyInternal(name);
if(!t)return false;
out = t->data;
return true;
}
//! Remove a property of a specific type
void RemoveProperty( const char* name) {
SetGenericPropertyPtr<Base>(pmap,name,NULL);
}
private:
void AddProperty( const char* name, Base* data) {
SetGenericPropertyPtr<Base>(pmap,name,data);
}
Base* GetPropertyInternal( const char* name) const {
return GetGenericProperty<Base*>(pmap,name,NULL);
}
private:
//! Map of all stored properties
PropertyMap pmap;
};
#if 0
// ---------------------------------------------------------------------------
/** @brief Represents a dependency table for a postprocessing steps.
*
* For future use.
*/
struct PPDependencyTable
{
unsigned int execute_me_before_these;
unsigned int execute_me_after_these;
unsigned int only_if_these_are_not_specified;
unsigned int mutually_exclusive_with;
};
#endif
#define AI_SPP_SPATIAL_SORT "$Spat"
// ---------------------------------------------------------------------------
/** The BaseProcess defines a common interface for all post processing steps.
* A post processing step is run after a successful import if the caller
* specified the corresponding flag when calling ReadFile().
* Enum #aiPostProcessSteps defines which flags are available.
* After a successful import the Importer iterates over its internal array
* of processes and calls IsActive() on each process to evaluate if the step
* should be executed. If the function returns true, the class' Execute()
* function is called subsequently.
*/
class ASSIMP_API_WINONLY BaseProcess
{
friend class Importer;
public:
/** Constructor to be privately used by Importer */
BaseProcess();
/** Destructor, private as well */
virtual ~BaseProcess();
public:
// -------------------------------------------------------------------
/** Returns whether the processing step is present in the given flag.
* @param pFlags The processing flags the importer was called with. A
* bitwise combination of #aiPostProcessSteps.
* @return true if the process is present in this flag fields,
* false if not.
*/
virtual bool IsActive( unsigned int pFlags) const = 0;
// -------------------------------------------------------------------
/** Check whether this step expects its input vertex data to be
* in verbose format. */
virtual bool RequireVerboseFormat() const;
// -------------------------------------------------------------------
/** Executes the post processing step on the given imported data.
* The function deletes the scene if the postprocess step fails (
* the object pointer will be set to NULL).
* @param pImp Importer instance (pImp->mScene must be valid)
*/
void ExecuteOnScene( Importer* pImp);
// -------------------------------------------------------------------
/** Called prior to ExecuteOnScene().
* The function is a request to the process to update its configuration
* basing on the Importer's configuration property list.
*/
virtual void SetupProperties(const Importer* pImp);
// -------------------------------------------------------------------
/** Executes the post processing step on the given imported data.
* A process should throw an ImportErrorException* if it fails.
* This method must be implemented by deriving classes.
* @param pScene The imported data to work at.
*/
virtual void Execute( aiScene* pScene) = 0;
// -------------------------------------------------------------------
/** Assign a new SharedPostProcessInfo to the step. This object
* allows multiple postprocess steps to share data.
* @param sh May be NULL
*/
inline void SetSharedData(SharedPostProcessInfo* sh) {
shared = sh;
}
// -------------------------------------------------------------------
/** Get the shared data that is assigned to the step.
*/
inline SharedPostProcessInfo* GetSharedData() {
return shared;
}
protected:
/** See the doc of #SharedPostProcessInfo for more details */
SharedPostProcessInfo* shared;
/** Currently active progress handler */
ProgressHandler* progress;
};
} // end of namespace Assimp
#endif // AI_BASEPROCESS_H_INC
| [
"wilkie05@gmail.com"
] | wilkie05@gmail.com |
490f17cfd3abf116a88d5a436c7e29a6ed23efc1 | 2327e2435057da53b9caae2656113057a9118f0d | /include/motion.hpp | 7cacb381f814faca4843cba537c211e62309fe03 | [] | no_license | masaedw/zugagaga | 5696a3db3001521f3907189c96289a912d28ccc2 | e5ad5bcc7ff942dfeddd2356a5db04e9227b3682 | refs/heads/master | 2016-09-02T19:58:08.003900 | 2016-02-01T10:33:58 | 2016-02-01T10:33:58 | 122,791 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,640 | hpp | // last modified <2004/02/02 14:42:57 2004 JST>
#ifndef ZUGAGAGA_MOTION_HPP
#define ZUGAGAGA_MOTION_HPP
#include <vector>
namespace zu3ga {
/**
方向を表す定数
*/
namespace Direction {
enum t {
Dir1 = 0,
Dir2,
Dir3,
Dir4,
Dir6,
Dir7,
Dir8,
Dir9,
None,
End,
};
}
/**
方向を表す定数2(16方向)
*/
namespace Direction2 {
enum t {
Dir1 = 0,
Dir12,
Dir2,
Dir23,
Dir3,
Dir36,
Dir6,
Dir69,
Dir9,
Dir89,
Dir8,
Dir78,
Dir7,
Dir47,
Dir4,
Dir14,
};
}
/**
プレイヤーの現在の状態.
状態と移動している方向を持つ.
コマンドもこれを吐き出す.
*/
struct PlayerMotion {
enum Type {
None, ///< 歩きと立ちをかねる
Dash,
DashSpatia,
SearchEnemy,
Weapon1,
Weapon2,
DashWeapon1,
DashWeapon2,
CloseRange,
DashCloseRange,
StaggerDamage,
FlyDamage,
Bound,
Down,
Explosion,
};
Type type; ///< 現在の状態
Direction::t dir; ///< 移動している方向
PlayerMotion() : type(None), dir(Direction::None) {} // コンストラクタ
///< モーションが攻撃タイプであるか否か
bool WeaponType() const
{
switch (type) {
case Weapon1:
case Weapon2:
case DashWeapon1:
case DashWeapon2:
case CloseRange:
return true;
default:
return false;
}
}
};
}
#endif // ZUGAGAGA_MOTION_HPP
| [
"masa.edw@gmail.com"
] | masa.edw@gmail.com |
a9eb32c1b23f51d126970962bd5d2a65e460eb28 | 94b0916ec3d3ca7109d1ba9645f9791e41c305ea | /Subscriber.cc | 950e853121136d4c94115af048be9deb44b25c29 | [] | no_license | mujtaba65/Telecommunication-Center | f675afa6b08c57c9147ef8c582653e42dbb2f13f | 62cf9783f6a827bc534c1be7cc4cd027c8453ce3 | refs/heads/main | 2023-04-30T08:57:55.208732 | 2021-05-17T07:02:06 | 2021-05-17T07:02:06 | 368,087,511 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 709 | cc | #include <iostream>
using namespace std;
#include "Subscriber.h"
#include "Array.h"
#include "Call.h"
Subscriber::Subscriber(string s)
{
phoneNumber = s;
}
Subscriber::~Subscriber()
{
//cout << "Subscriber Dtor" << endl;
}
void Subscriber::addIncoming(Call* c)
{
incomingCalls.add(c);
}
void Subscriber::addOutgoing(Call* c)
{
outgoingCalls.add(c);
}
void Subscriber::print()
{
cout << "Subscriber " << phoneNumber << ":" << endl;
Array temp(incomingCalls);
temp.add(outgoingCalls);
temp.print();
}
string Subscriber::getPhoneNumber()
{
return phoneNumber;
}
Array& Subscriber::getIncomingCalls()
{
return incomingCalls;
}
Array& Subscriber::getOutgoingCalls()
{
return outgoingCalls;
}
| [
"mujtaba.ehtesham335@gmail.com"
] | mujtaba.ehtesham335@gmail.com |
5321e3bcf53c6fea4039ac610cf92f10a6c2a1ce | 2a86e0c62688883e99d054b64f97c9ff93354c12 | /DelegateEx/main.cpp | faede944b184c17474d3504d37c68964c2609101 | [] | no_license | gaooooke/QtDemo | 563bdb955ef82cb92023e90d3449ed433bea2859 | faea0ab5ba42b0ee34db98c84a1e544e302d1037 | refs/heads/master | 2022-08-29T22:46:03.784863 | 2020-05-27T14:47:01 | 2020-05-27T14:47:01 | 266,265,850 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,179 | cpp | #include "mainwindow.h"
#include <QApplication>
#include <QStandardItemModel>
#include <QTableView>
#include <QFile>
#include <QFileDialog>
#include <QTextStream>
#include "datedelegate.h"
#include "combodelegate.h"
#include "spinboxdelegate.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QStandardItemModel model(4,4);
QTableView tableView;
tableView.setModel(&model);
DateDelegate dateDelegate;
ComboDelegate comboDelegate;
SpinBoxDelegate spinBoxDelegate;
tableView.setItemDelegateForColumn(1,&dateDelegate);
tableView.setItemDelegateForColumn(2,&comboDelegate);
tableView.setItemDelegateForColumn(3,&spinBoxDelegate);
model.setHeaderData(0,Qt::Horizontal,QObject::tr("Name"));
model.setHeaderData(1,Qt::Horizontal,QObject::tr("Birthday"));
model.setHeaderData(2,Qt::Horizontal,QObject::tr("Job"));
model.setHeaderData(3,Qt::Horizontal,QObject::tr("Income"));
// QString name = QFileDialog::getOpenFileName(NULL,"打开",".","text(*.txt)");
QString runPath = QCoreApplication::applicationDirPath();
runPath += "/test.txt";
QFile file(runPath);
if(file.open(QIODevice::ReadOnly | QIODevice::Text))
{
QTextStream stream(&file);
QString line;
model.removeRows(0,model.rowCount(QModelIndex()),QModelIndex());
int row = 0;
do{
line = stream.readLine();
if(!line.isEmpty())
{
model.insertRows(row,1,QModelIndex());
QStringList pieces = line.split(",",QString::SkipEmptyParts);
model.setData(model.index(row,0,QModelIndex()),pieces.value(0));
model.setData(model.index(row,1,QModelIndex()),pieces.value(1));
model.setData(model.index(row,2,QModelIndex()),pieces.value(2));
model.setData(model.index(row,3,QModelIndex()),pieces.value(3));
row++;
}
}while(!line.isEmpty());
file.close();
}
tableView.setWindowTitle(QObject::tr("Delegate"));
tableView.resize(520,220);
tableView.show();
// MainWindow w;
// w.show();
return a.exec();
}
| [
"gaokechen@hotmail.com"
] | gaokechen@hotmail.com |
2a31ee7210afbf1f1348bc7b595c6c4faae74f4c | 4091a91a16e575b8052cc898790c925e263b2352 | /First-Semester/Assignments-Activities/TilesProblem.cpp | 419655492553719bf185b1cf5cbe216cd552f2d6 | [] | no_license | vmangahis/FirstYear-SourceCodes | 0de69762dd368787f0db5ae7f31df16de0e48b3d | cf972c1092ccec505f522949b31592b982fef571 | refs/heads/master | 2020-07-02T20:35:15.238556 | 2019-09-20T05:08:50 | 2019-09-20T05:08:50 | 201,656,630 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 894 | cpp | #include <iostream>
using namespace std;
int main()
{
int numoftiles, exttiles;
float ltiles, wtiles, lfloor, wfloor, areafloor, areatiles;
cout << "This program will compute the number of tiles needed to the given length and width of floor and the tiles" << endl;
cout << "Enter the length of floor (in meters)" << endl;
cin >> lfloor;
cout << "Enter the width of floor (in meters)" << endl;
cin >> wfloor;
cout << "Enter the length of the tiles (in centimeters)" << endl;
cin >> ltiles;
cout << "Enter the width of the tiles (in centimeters)"<< endl;
cin >> wtiles;
areafloor = lfloor*wfloor*10000;
areatiles = ltiles*wtiles;
numoftiles = areafloor/areatiles;
exttiles = (numoftiles*.15) + numoftiles;
cout << "Number of Tiles needed: " << numoftiles << endl;
cout << "For the cases of cuts, breaks or wastes, buy " << exttiles << " tiles instead" << endl;
return 0;
}
| [
"vince.baron092299@gmail.com"
] | vince.baron092299@gmail.com |
3faf64b3ffdf921c1a40f1c53253cd8b42e1bb54 | 19539541866bbe3ac5e93282562d327ae4ca8693 | /Source/ScriptCommands/Objects/ComponentScriptCommands.cpp | 1ad2bda73c11c440b4b13d6aeb812c3b6f132271 | [] | no_license | AlanWills/CelesteLua | 5910839969cf9e33301faba1120dd55da6787879 | 94fc9863d97248a06477e5f4166dec1f47d80c96 | refs/heads/master | 2021-05-22T16:32:28.402004 | 2020-04-22T22:23:54 | 2020-04-22T22:23:54 | 253,004,850 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 625 | cpp | #include "ScriptCommands/Objects/ComponentScriptCommands.h"
#include "ScriptCommands/ScriptCommandUtils.h"
#include "sol/sol.hpp"
#include "Registries/ComponentRegistry.h"
#include "Objects/Component.h"
namespace sol
{
template <>
struct is_to_stringable<Celeste::Component> : std::false_type {};
}
namespace Celeste::Lua::ComponentScriptCommands
{
//------------------------------------------------------------------------------------------------
void initialize(sol::state& state)
{
registerUserType<Component>(
state,
"Component",
sol::base_classes, sol::bases<Entity, Object>());
}
} | [
"alawills@googlemail.com"
] | alawills@googlemail.com |
999548b772c696b11c2fc7ec0d97d09288256a33 | 05b4870fec1c8850288d701a082a70021901c1ef | /stars.hpp | f2b74698645f984c9b45b3c34989a08bad53fdb7 | [] | no_license | 1712656669/solarsystem | 37dfc14f5df96cf46737225bc8040f8e165059c9 | 580d996345331d86e255e497eb40ceaf2041795b | refs/heads/master | 2022-11-26T07:33:58.102557 | 2020-08-08T13:04:14 | 2020-08-08T13:04:14 | 258,441,484 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,141 | hpp | //
// stars.hpp
// solarsystem
//
//hpp,其实质就是将.cpp的实现代码混入.h头文件当中,定义与实现都包含在同一文件,
//则该类的调用者只需要include该hpp文件即可,无需再将cpp加入到project中进行编译
//
//#ifndef是if not define的简写,是一种宏定义判断,作用是防止多重定义
//在头文件中使用,防止头文件被多重调用
//比如你有两个C文件,这两个C文件都include了同一个头文件
//而编译时,这两个C文件要一同编译成一个可运行文件,于是问题来了,大量的声明冲突
#ifndef stars_hpp //先测试stars_hpp是否被宏定义过
#define stars_hpp //如果stars_hpp没有被宏定义过,定义stars_hpp,并编译程序段
#include <GL/glut.h>
//为了编程实现上的方便,对现实世界的实际编程模型做一些前提假设:
//1.星球的运行轨道为圆形
//2.自转速度保持相同
//3.每次刷新绘制的时候假设时间经过了一天
//普通能够自转并绕某个点公转的星球(Star)
class Star {
public:
// 星球的半径
GLfloat radius;
// 星球的公转、自传速度
GLfloat speed, selfSpeed;
// 星球的中心与父节点星球中心的距离
GLfloat distance;
// 星球的颜色
GLfloat rgbaColor[4] = { 1.0f,1.0f,1.0f,1.0f };
// 父节点星球
Star* parentStar;
// 构造函数,构造一颗星球时必须提供
// 星球半径、与父节点星球的距离、公转速度、自转速度、绕行(父节点)星球
Star(GLfloat radius, GLfloat distance,
GLfloat speed, GLfloat selfSpeed,
Star* parentStar, GLfloat rgbColor[3]);
// 对一般的星球的移动、旋转等活动进行绘制
void drawStar();
// 虚函数(virtual)是指一个类中你希望重载的成员函数 ,当你用一个基类指针或引用
// 指向一个继承类对象的时候,调用一个虚函数时, 实际调用的是继承类的版本
// 提供默认实现,负责调用 drawStar()
virtual void draw() { drawStar(); }
// 参数为每次刷新画面时的时间跨度
virtual void update(long timeSpan);
protected:
GLfloat alphaSelf; //自转角度
GLfloat alpha; //公转角度
};
// 具有特殊材质的星球(Planet)
class Planet : public Star {
public:
// 构造函数
Planet(GLfloat radius, GLfloat distance,
GLfloat speed, GLfloat selfSpeed,
Star* parentStar, GLfloat rgbColor[3]);
// 增加对具备自身材质的行星绘制材质
void drawPlanet();
// 继续向其子类开放重写功能
virtual void draw() { drawPlanet(); drawStar(); }
};
//能够发光的星球(LightPlanet)
class LightPlanet : public Planet {
public:
LightPlanet(GLfloat Radius, GLfloat Distance,
GLfloat Speed, GLfloat SelfSpeed,
Star* ParentStar, GLfloat rgbColor[3]);
// 增加对提供光源的恒星绘制光照
void drawLight();
virtual void draw() { drawLight(); drawPlanet(); drawStar(); }
};
#endif /* star_hpp */ | [
"noreply@github.com"
] | noreply@github.com |
55cea9b7e6e927e8932b9d3b7d3a8019d78ee471 | 55df546c36e81bbd8786bb092e3be4cf2b2db065 | /shared_model/backend/protobuf/query_responses/proto_roles_response.hpp | cae8645cb31254a42055493d99fd777e63e962a2 | [
"CC-BY-4.0",
"Apache-2.0"
] | permissive | NickMavronick/iroha | d9dacb651475ac8e2edb0c8fd7af129e08097ca4 | 4839bae80fbf5184af9df9600552fab12af1c513 | refs/heads/master | 2020-06-16T00:26:30.674709 | 2019-07-05T04:35:33 | 2019-07-05T05:21:30 | 195,431,244 | 1 | 0 | Apache-2.0 | 2019-07-05T15:27:13 | 2019-07-05T15:27:13 | null | UTF-8 | C++ | false | false | 1,083 | hpp | /**
* Copyright Soramitsu Co., Ltd. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef IROHA_SHARED_MODEL_PROTO_ROLES_RESPONSE_HPP
#define IROHA_SHARED_MODEL_PROTO_ROLES_RESPONSE_HPP
#include "backend/protobuf/common_objects/trivial_proto.hpp"
#include "interfaces/query_responses/roles_response.hpp"
#include "qry_responses.pb.h"
namespace shared_model {
namespace proto {
class RolesResponse final
: public CopyableProto<interface::RolesResponse,
iroha::protocol::QueryResponse,
RolesResponse> {
public:
template <typename QueryResponseType>
explicit RolesResponse(QueryResponseType &&queryResponse);
RolesResponse(const RolesResponse &o);
RolesResponse(RolesResponse &&o);
const RolesIdType &roles() const override;
private:
const iroha::protocol::RolesResponse &roles_response_;
const RolesIdType roles_;
};
} // namespace proto
} // namespace shared_model
#endif // IROHA_SHARED_MODEL_PROTO_ROLES_RESPONSE_HPP
| [
"andrei@soramitsu.co.jp"
] | andrei@soramitsu.co.jp |
1690e600e18bc3a3948a7be89c946817157e4aa2 | c7bb17447090c359eb9ce240c58189bc934a19a2 | /ouzel/math/MathUtils.hpp | 4afb2a152087b4d0f44f5bf393525c9abb6fddb1 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | jaccen2007/ouzel | f06ee604c250d19f6ab23e4414b097ebbbd1e013 | 6981f79f6ddf5fb93d4cacf6e6357383a0cf7d2f | refs/heads/master | 2022-01-08T15:04:10.811120 | 2019-07-19T12:35:16 | 2019-07-19T12:35:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,072 | hpp | // Copyright 2015-2019 Elviss Strazdins. All rights reserved.
#ifndef OUZEL_MATH_MATHUTILS_HPP
#define OUZEL_MATH_MATHUTILS_HPP
#include <cstdint>
#include <cmath>
#include <limits>
#include <type_traits>
#if defined(__ANDROID__)
# include <cpu-features.h>
#endif
namespace ouzel
{
#if defined(__ARM_NEON__)
# if defined(__ANDROID__) && defined(__arm__)
// NEON support must be checked at runtime on 32-bit Android
class AnrdoidNeonChecker final
{
public:
AnrdoidNeonChecker():
neonAvailable(android_getCpuFamily() == ANDROID_CPU_FAMILY_ARM &&
(android_getCpuFeatures() & ANDROID_CPU_ARM_FEATURE_NEON) != 0)
{
}
operator bool() const { return neonAvailable; }
private:
bool neonAvailable;
};
extern AnrdoidNeonChecker isSimdAvailable;
# else
constexpr auto isSimdAvailable = true;
# endif
#elif defined(__SSE__)
constexpr auto isSimdAvailable = true;
#else
constexpr auto isSimdAvailable = false;
#endif
template <typename T> constexpr T tau = T(6.28318530717958647692);
template <typename T> constexpr T pi = T(3.14159265358979323846);
template <typename T> constexpr T lerp(T v0, T v1, T t) noexcept
{
return (T(1) - t) * v0 + t * v1;
}
template <typename T> constexpr T smoothStep(T a, T b, T t) noexcept
{
return lerp(a, b, t * t * (T(3) - T(2) * t));
}
template <typename T, typename std::enable_if<std::is_unsigned<T>::value>::type* = nullptr>
constexpr auto isPowerOfTwo(T x) noexcept
{
return (x != T(0)) && (((x - T(1)) & x) == 0);
}
template <typename T, typename std::enable_if<std::is_unsigned<T>::value>::type* = nullptr>
inline T nextPowerOfTwo(T x) noexcept
{
if (x != 0)
{
--x;
for (uint32_t shift = 1; shift < sizeof(T) * 8; shift *= 2)
x |= (x >> shift);
}
return ++x;
}
template <typename T> constexpr T degToRad(T x) noexcept
{
return static_cast<T>(x * 0.01745329251994329576);
}
template <typename T> constexpr T radToDeg(T x) noexcept
{
return static_cast<T>(x * 57.2957795130823208767);
}
template <typename T> constexpr T clamp(T x, T lo, T hi) noexcept
{
return (x < lo) ? lo : ((x > hi) ? hi : x);
}
constexpr uint64_t INITIAL_FNV = 2166136261U;
constexpr uint64_t FNV_MULTIPLE = 16777619;
// Fowler / Noll / Vo (FNV) hash
inline uint64_t fnvHash(uint64_t s) noexcept
{
uint64_t hash = INITIAL_FNV;
for (uint64_t i = 0; i < sizeof(uint64_t); ++i)
{
hash = hash ^ (reinterpret_cast<uint8_t*>(&s)[i]); // xor the low 8 bits
hash = hash * FNV_MULTIPLE; // multiply by the magic number
}
return hash;
}
template <class T>
inline auto isNearlyEqual(T a, T b, T tolerance = std::numeric_limits<T>::min())
{
return fabs(a - b) <= tolerance;
}
}
#endif // OUZEL_MATH_MATHUTILS_HPP
| [
"elviss@elviss.lv"
] | elviss@elviss.lv |
decc84fc6138ad504e08ad49c9c8f6cf6ce19886 | 566028d67ccc31c15eceb12d99f4facca707b35d | /op25/gr-op25_repeater/include/op25_repeater/gardner_costas_cc.h | 524c5bceba6404622cfd903b61cc2fac3762da1a | [] | no_license | JoeGilkey/op25 | 3f97eed2df3f78530e5235f710c229fa00eb9e1f | a3f070260d007b230086783c08467b47808f2e2f | refs/heads/main | 2021-12-03T04:46:22.297242 | 2021-11-30T00:57:46 | 2021-11-30T00:57:46 | 227,921,328 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,157 | h | /* -*- c++ -*- */
/*
* Copyright 2013 <+YOU OR YOUR COMPANY+>.
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This software 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 software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifndef INCLUDED_OP25_REPEATER_GARDNER_COSTAS_CC_H
#define INCLUDED_OP25_REPEATER_GARDNER_COSTAS_CC_H
#include <op25_repeater/api.h>
#include <gnuradio/block.h>
namespace gr {
namespace op25_repeater {
/*!
* \brief <+description of block+>
* \ingroup op25_repeater
*
*/
class OP25_REPEATER_API gardner_costas_cc : virtual public gr::block
{
public:
typedef boost::shared_ptr<gardner_costas_cc> sptr;
/*!
* \brief Return a shared_ptr to a new instance of op25_repeater::gardner_costas_cc.
*
* To avoid accidental use of raw pointers, op25_repeater::gardner_costas_cc's
* constructor is in a private implementation
* class. op25_repeater::gardner_costas_cc::make is the public interface for
* creating new instances.
*/
static sptr make(float samples_per_symbol, float gain_mu, float gain_omega, float alpha, float beta, float max_freq, float min_freq);
virtual void set_omega(float omega) = 0;
virtual float get_freq_error(void) = 0;
virtual int get_error_band(void) = 0;
virtual void set_muted(bool) = 0;
virtual bool is_muted(void) = 0;
virtual void set_tdma(bool) = 0;
virtual bool is_tdma(void) = 0;
};
} // namespace op25_repeater
} // namespace gr
#endif /* INCLUDED_OP25_REPEATER_GARDNER_COSTAS_CC_H */
| [
"JoeGilkey@users.noreply.github.com"
] | JoeGilkey@users.noreply.github.com |
4193b101f9ff3a7baef3ac1d5acf997e9e01a908 | 87f54a40c43244695aa82ae3c4c2a3c7cee03c55 | /src/cegis/genetic/program_individual_test_runner_helper.cpp | 0ea9532ec3e9d79cda69e536012e1bfddd01e046 | [
"BSD-2-Clause",
"BSD-4-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | smowton/cbmc | 6de9f78c3e56a2a73ab5361dc0ebbddcb29ed370 | ab1b9448517a18d23ac68099d8bf0260be1fefa4 | refs/heads/master | 2021-05-23T03:06:42.077145 | 2016-11-29T23:13:44 | 2016-11-29T23:13:44 | 75,178,953 | 1 | 1 | NOASSERTION | 2019-05-01T12:23:12 | 2016-11-30T11:02:38 | C++ | UTF-8 | C++ | false | false | 2,164 | cpp | #include <util/substitute.h>
#include <cegis/instrument/literals.h>
#include <cegis/genetic/program_individual_test_runner_helper.h>
void implement_program_individual_deserialise(std::string &source,
const bool danger)
{
source+=
"#include <string.h>\n\n"
"#define " CEGIS_PREFIX "next_arg() argv[" CEGIS_PREFIX "deserialise_index++]\n";
source+=
danger ?
"#define " CEGIS_PREFIX "deserialise_init() unsigned int " CEGIS_PREFIX "deserialise_index=" CEGIS_PREFIX "first_prog_offset\n" :
"#define " CEGIS_PREFIX "deserialise_init() unsigned int " CEGIS_PREFIX "deserialise_index=0u\n";
source+=
"#define " CEGIS_PREFIX "declare_prog(var_name, sz) const size_t sz=" CEGIS_PREFIX "next_arg(); \\\n"
" struct " CEGIS_PREFIX "instructiont var_name[sz]; \\\n"
"for (unsigned int i=0; i < sizeof(var_name) / sizeof(struct " CEGIS_PREFIX "instructiont); ++i) \\\n"
"{ \\\n"
" var_name[i].opcode=" CEGIS_PREFIX "next_arg(); \\\n"
" var_name[i].op0=" CEGIS_PREFIX "next_arg(); \\\n"
" var_name[i].op1=" CEGIS_PREFIX "next_arg(); \\\n"
" var_name[i].op2=" CEGIS_PREFIX "next_arg(); \\\n"
"}\n"
"#define " CEGIS_PREFIX "deserialise_x0(var_name) var_name=" CEGIS_PREFIX "next_arg()\n";
source+=
danger ?
"#define " CEGIS_PREFIX "ce_value_init() unsigned int " CEGIS_PREFIX "ce_index=0u\n" :
"#define " CEGIS_PREFIX "ce_value_init() unsigned int " CEGIS_PREFIX "ce_index=" CEGIS_PREFIX "deserialise_index\n";
source+=
"#define " CEGIS_PREFIX "ce_value() argv[" CEGIS_PREFIX "ce_index++]\n";
}
namespace
{
void add_default_return(std::string &source)
{
source.replace(source.rfind('}'), 1, "return 0;}");
}
}
void transform_program_individual_main_to_lib(std::string &source,
const bool danger)
{
substitute(source, "int main(const int argc, const char * const argv[])\n"
"{\n", "int " CEGIS_FITNESS_TEST_FUNC "(const unsigned int argv[])\n"
"{\n"
"memset(" CEGIS_OPS ", 0, sizeof(" CEGIS_OPS "));\n"
"memset(" CEGIS_RESULT_OPS ", 0, sizeof(" CEGIS_RESULT_OPS "));\n");
add_default_return(source);
}
| [
"pkesseli@dkr13.cs.ox.ac.uk"
] | pkesseli@dkr13.cs.ox.ac.uk |
22c317c58e9e01e9a6b5fbab7be98f966fdfba33 | 27b78a089fa389244eefcdd08d8d7e273a3bb3e8 | /bial/src/FilteringOptimalAnisotropicDiffusion.cpp | f69043498dbf6479dab8527873b56f2c7ca89eaf | [] | no_license | GIBIS-UNIFESP/BIAL | 651f3a7f44238df977be245b07a1391d2518f974 | eddd3d756b744b5caf8429acec7abe208b3a3bd1 | refs/heads/master | 2021-01-12T13:32:10.299904 | 2018-02-09T11:55:34 | 2018-02-09T11:55:34 | 69,836,560 | 11 | 6 | null | 2017-12-01T16:01:12 | 2016-10-03T02:55:05 | C++ | UTF-8 | C++ | false | false | 15,609 | cpp | /* Biomedical Image Analysis Library */
/* See README file in the root instalation directory for more information. */
/**
* @date 2013/Jul/12
* @brief Image filtering methods.
*/
#ifndef BIALFILTERINGOPTIMALANISOTROPICDIFFUSION_C
#define BIALFILTERINGOPTIMALANISOTROPICDIFFUSION_C
#include "FilteringOptimalAnisotropicDiffusion.hpp"
#if defined ( BIAL_EXPLICIT_LIB ) && ( BIAL_FilteringOptimalAnisotropicDiffusion )
#define BIAL_EXPLICIT_FilteringOptimalAnisotropicDiffusion
#endif
#if defined ( BIAL_EXPLICIT_FilteringOptimalAnisotropicDiffusion ) || ( BIAL_IMPLICIT_BIN )
#include "FilteringAnisotropicDiffusion.hpp"
#include "DiffusionFunction.hpp"
#ifdef BIAL_DEBUG
#include "FileImage.hpp"
#endif
#include "GradientCanny.hpp"
#include "Image.hpp"
#include "SegmentationBackground.hpp"
#include "StatisticsStdDev.hpp"
namespace Bial {
template< class D >
float Filtering::EdgeRegionKappa( const Image< D > &source, const Image< D > &mask,
const DiffusionFunction *diff_func, float radius ) {
try {
float best_proportion = 1.01;
COMMENT( "Get initial kappa, minimum standard deviation of flat region, and maximum standard deviation of edge "
<< "region.", 3 );
Vector< int > edges;
for( size_t pxl = 0; pxl < mask.size( ); ++pxl ) {
if( mask[ pxl ] != 0 ) {
edges.push_back( source[ pxl ] );
}
}
float max_std = Statistics::StandardDeviation( edges );
COMMENT( "Estimate best edge kappa based on the maximum standard deviation in a binary search.", 3 );
float kappa = 2 * max_std;
float step = kappa / 2.0;
Image< D > filtered = Filtering::AnisotropicDiffusion( source, diff_func, kappa, 1, radius );
size_t elm = 0;
for( size_t pxl = 0; pxl < mask.size( ); ++pxl ) {
if( mask[ pxl ] != 0 ) {
edges( elm ) = filtered[ pxl ];
++elm;
}
}
float best_std = Statistics::StandardDeviation( edges );
COMMENT( "Binary search for the best kappa.", 3 );
while( step > 2.0 ) {
COMMENT( "Searching to the right.", 4 );
filtered = Filtering::AnisotropicDiffusion( source, diff_func, kappa + step, 1, radius );
for( size_t pxl = 0, elm = 0; pxl < mask.size( ); ++pxl ) {
if( mask[ pxl ] != 0 ) {
edges( elm ) = filtered[ pxl ];
++elm;
}
}
float std = Statistics::StandardDeviation( edges );
if( std::fabs( std - max_std / best_proportion ) <= std::fabs( best_std - max_std / best_proportion ) ) {
best_std = std;
kappa = kappa + step;
}
else {
COMMENT( "Searching to the left.", 4 );
filtered = Filtering::AnisotropicDiffusion( source, diff_func, kappa - step, 1, radius );
for( size_t pxl = 0, elm = 0; pxl < mask.size( ); ++pxl ) {
if( mask[ pxl ] != 0 ) {
edges( elm ) = filtered[ pxl ];
++elm;
}
}
std = Statistics::StandardDeviation( edges );
if( std::fabs( std - max_std / best_proportion ) <= std::fabs( best_std - max_std / best_proportion ) ) {
best_std = std;
kappa = kappa - step;
}
}
step /= 2.0;
}
COMMENT( "edge std: " << best_std << ", edge kappa: " << kappa, 3 );
return( kappa );
}
catch( std::bad_alloc &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Memory allocation error." ) );
throw( std::runtime_error( msg ) );
}
catch( std::runtime_error &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Runtime error." ) );
throw( std::runtime_error( msg ) );
}
catch( const std::out_of_range &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Out of range exception." ) );
throw( std::out_of_range( msg ) );
}
catch( const std::logic_error &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Logic Error." ) );
throw( std::logic_error( msg ) );
}
}
template< class D >
float Filtering::FlatRegionKappa( const Image< D > &source, const Image< D > &mask,
const DiffusionFunction *diff_func, float radius, float kappa ) {
try {
float best_proportion = 1.01;
COMMENT( "Get initial kappa, minimum standard deviation of flat region, and maximum standard deviation of edge "
<< "region.", 3 );
Vector< int > backg;
for( size_t pxl = 0; pxl < mask.size( ); ++pxl ) {
if( mask[ pxl ] != 0 ) {
backg.push_back( source[ pxl ] );
}
}
float min_std = Statistics::StandardDeviation( backg );
COMMENT( "Estimate best kappa for flat region based on the minimum standard deviation in a binary search.", 3 );
kappa = kappa / 2.0;
float step = kappa / 2.0;
Image< D > filtered = Filtering::AnisotropicDiffusion( source, diff_func, kappa, 1, radius );
size_t elm = 0;
for( size_t pxl = 0; pxl < mask.size( ); ++pxl ) {
if( mask[ pxl ] != 0 ) {
backg( elm ) = source[ pxl ];
++elm;
}
}
float best_std = Statistics::StandardDeviation( backg );
COMMENT( "Binary search for the best kappa.", 3 );
while( step > 2.0 ) {
COMMENT( "Searching left.", 4 );
filtered = Filtering::AnisotropicDiffusion( source, diff_func, kappa - step, 1, radius );
for( size_t pxl = 0, elm = 0; pxl < mask.size( ); ++pxl ) {
if( mask[ pxl ] != 0 ) {
backg( elm ) = source[ pxl ];
++elm;
}
}
float std = Statistics::StandardDeviation( backg );
if( ( std < best_std ) ||
( std::fabs( std - best_proportion * min_std ) <= std::fabs( best_std - best_proportion * min_std ) ) ) {
best_std = std;
kappa = kappa - step;
if( min_std > std ) {
min_std = std;
}
}
else {
COMMENT( "Searching right.", 4 );
filtered = Filtering::AnisotropicDiffusion( source, diff_func, kappa + step, 1, radius );
for( size_t pxl = 0, elm = 0; pxl < mask.size( ); ++pxl ) {
if( mask[ pxl ] != 0 ) {
backg( elm ) = source[ pxl ];
++elm;
}
}
std = Statistics::StandardDeviation( backg );
if( std::fabs( std - best_proportion * min_std ) < std::fabs( best_std - best_proportion * min_std ) ) {
best_std = std;
kappa = kappa + step;
}
}
step /= 2.0;
}
COMMENT( "flat std: " << best_std << ", flat kappa: " << kappa, 3 );
return( kappa );
}
catch( std::bad_alloc &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Memory allocation error." ) );
throw( std::runtime_error( msg ) );
}
catch( std::runtime_error &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Runtime error." ) );
throw( std::runtime_error( msg ) );
}
catch( const std::out_of_range &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Out of range exception." ) );
throw( std::out_of_range( msg ) );
}
catch( const std::logic_error &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Logic Error." ) );
throw( std::logic_error( msg ) );
}
}
template< class D >
Image< D > Filtering::OptimalAnisotropicDiffusion( Image< D > img, const DiffusionFunction *diff_func, float radius,
float conservativeness ) {
try {
if( ( conservativeness < 0.0 ) || ( conservativeness > 1.0 ) ) {
std::string msg( BIAL_ERROR( "Invalid conservativeness paramter. Expected: [0.0, 1.0]. Given: " +
std::to_string( conservativeness ) ) );
throw( std::logic_error( msg ) );
}
COMMENT( "Computing canny gradient with 0.8, 0.9 hysteresis.", 0 );
Image< D > canny = Gradient::Canny( img, 0.8, 0.9 );
COMMENT( "Segmenting the background for a planar region.", 0 );
Image< D > backg = Segmentation::Background( img, canny );
COMMENT( "Filtering with optimum anisotropic diffusion filter.", 0 );
return( Filtering::OptimalAnisotropicDiffusion( img, diff_func, radius, conservativeness, canny, backg ) );
}
catch( std::bad_alloc &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Memory allocation error." ) );
throw( std::runtime_error( msg ) );
}
catch( std::runtime_error &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Runtime error." ) );
throw( std::runtime_error( msg ) );
}
catch( const std::out_of_range &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Out of range exception." ) );
throw( std::out_of_range( msg ) );
}
catch( const std::logic_error &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Logic Error." ) );
throw( std::logic_error( msg ) );
}
}
template< class D >
Image< D > Filtering::OptimalAnisotropicDiffusion( Image< D > img, const DiffusionFunction *diff_func, float radius,
float conservativeness, const Image< D > &canny,
const Image< D > &backg ) {
try {
if( img.Dims( ) != canny.Dims( ) ) {
std::string msg( BIAL_ERROR( "Input image and canny image dimensions do not match." ) );
throw( std::logic_error( msg ) );
}
if( img.Dims( ) != backg.Dims( ) ) {
std::string msg( BIAL_ERROR( "Input and background image dimensions do not match." ) );
throw( std::logic_error( msg ) );
}
if( ( conservativeness < 0.0 ) || ( conservativeness > 1.0 ) ) {
std::string msg( BIAL_ERROR( "Invalid conservativeness paramter. Expected: [0.0, 1.0]. Given: " +
std::to_string( conservativeness ) ) );
throw( std::logic_error( msg ) );
}
COMMENT( "Computing initial kappa using edge and flat regions.", 0 );
float edge_kappa = EdgeRegionKappa( img, canny, diff_func, radius );
float flat_kappa = FlatRegionKappa( img, backg, diff_func, radius, edge_kappa );
float init_kappa = ( edge_kappa + flat_kappa ) / 2.0;
if( edge_kappa < flat_kappa ) {
init_kappa = edge_kappa + conservativeness * ( flat_kappa - edge_kappa );
}
COMMENT( "edge_kappa: " << edge_kappa << ", flat_kappa: " << flat_kappa << ", init_kappa: " << init_kappa, 0 );
COMMENT( "Returning adaptive filter based on initial kappa value.", 0 );
return( Filtering::AdaptiveAnisotropicDiffusion( img, diff_func, init_kappa, radius ) );
}
catch( std::bad_alloc &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Memory allocation error." ) );
throw( std::runtime_error( msg ) );
}
catch( std::runtime_error &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Runtime error." ) );
throw( std::runtime_error( msg ) );
}
catch( const std::out_of_range &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Out of range exception." ) );
throw( std::out_of_range( msg ) );
}
catch( const std::logic_error &e ) {
std::string msg( e.what( ) + std::string( "\n" ) + BIAL_ERROR( "Logic Error." ) );
throw( std::logic_error( msg ) );
}
}
#ifdef BIAL_EXPLICIT_FilteringOptimalAnisotropicDiffusion
template float Filtering::EdgeRegionKappa( const Image< int > &source, const Image< int > &mask,
const DiffusionFunction *diff_func, float radius );
template float Filtering::FlatRegionKappa( const Image< int > &source, const Image< int > &mask,
const DiffusionFunction *diff_func, float radius, float kappa );
template Image< int > Filtering::OptimalAnisotropicDiffusion( Image< int > img, const DiffusionFunction *diff_func,
float radius, float conservativeness );
template Image< int > Filtering::OptimalAnisotropicDiffusion( Image< int > img, const DiffusionFunction *diff_func,
float radius, float conservativeness,
const Image< int > &canny, const Image< int > &backg );
template float Filtering::EdgeRegionKappa( const Image< llint > &source, const Image< llint > &mask,
const DiffusionFunction *diff_func, float radius );
template float Filtering::FlatRegionKappa( const Image< llint > &source, const Image< llint > &mask,
const DiffusionFunction *diff_func, float radius, float kappa );
template Image< llint > Filtering::OptimalAnisotropicDiffusion( Image< llint > img, const DiffusionFunction *diff_func,
float radius, float conservativeness );
template Image< llint > Filtering::OptimalAnisotropicDiffusion( Image< llint > img, const DiffusionFunction *diff_func,
float radius, float conservativeness,
const Image< llint > &canny, const Image< llint > &backg );
template float Filtering::EdgeRegionKappa( const Image< float > &source, const Image< float > &mask,
const DiffusionFunction *diff_func, float radius );
template float Filtering::FlatRegionKappa( const Image< float > &source, const Image< float > &mask,
const DiffusionFunction *diff_func, float radius, float kappa );
template Image< float > Filtering::OptimalAnisotropicDiffusion( Image< float > img, const DiffusionFunction *diff_func,
float radius, float conservativeness );
template Image< float > Filtering::OptimalAnisotropicDiffusion( Image< float > img, const DiffusionFunction *diff_func,
float radius, float conservativeness,
const Image< float > &canny, const Image< float > &backg );
template float Filtering::EdgeRegionKappa( const Image< double > &source, const Image< double > &mask,
const DiffusionFunction *diff_func, float radius );
template float Filtering::FlatRegionKappa( const Image< double > &source, const Image< double > &mask,
const DiffusionFunction *diff_func, float radius, float kappa );
template Image< double > Filtering::OptimalAnisotropicDiffusion( Image< double > img, const DiffusionFunction *diff_func,
float radius, float conservativeness );
template Image< double > Filtering::OptimalAnisotropicDiffusion( Image< double > img, const DiffusionFunction *diff_func,
float radius, float conservativeness,
const Image< double > &canny, const Image< double > &backg );
#endif
}
#endif
#endif
| [
"lucaslellis777@gmail.com"
] | lucaslellis777@gmail.com |
0148f1c675386cabec7f66b5ce643252ec61a7da | 31a72b5f4be46226742e25618266082c730d75b2 | /project12/inheritance.h | 6cf7e14a1e991d8c291804794cdbefde5223084b | [] | no_license | AlexKastanek/CS202 | 98bca048ab2271d86c0b92d36cbe2de6546b5b58 | 9ca77fc0104a07cc1a50e4e474ae67283d7839a3 | refs/heads/master | 2021-09-10T17:34:56.886512 | 2018-03-30T05:56:40 | 2018-03-30T05:56:40 | 119,608,730 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,820 | h | /********************************************************************/
/* BASE CLASS */
/********************************************************************/
class Shape
{
public:
virtual ~Shape() {}
virtual float calculateAreaOrVolume() = 0;
virtual float calculatePerimeterOrSurfaceArea() = 0;
virtual void print() = 0;
bool is3D() {
return isThreeDimensional;
}
protected:
bool isThreeDimensional;
};
/********************************************************************/
/* DERIVED CLASSES */
/********************************************************************/
class Rectangle : public Shape
{
public:
Rectangle(float=10.0f,float=10.0f);
virtual float calculateAreaOrVolume();
virtual float calculatePerimeterOrSurfaceArea();
virtual void print();
protected:
float length;
float width;
};
class RectangularPrism : public Rectangle
{
public:
RectangularPrism(float=10.0f,float=10.0f,float=10.0f);
float calculateAreaOrVolume();
float calculatePerimeterOrSurfaceArea();
void print();
protected:
float height;
};
class Circle : public Shape
{
public:
Circle(float=10.0f);
virtual float calculateAreaOrVolume();
virtual float calculatePerimeterOrSurfaceArea();
virtual void print();
protected:
float radius;
};
class Cylinder : public Circle
{
public:
Cylinder(float=10.0f, float=10.0f);
float calculateAreaOrVolume();
float calculatePerimeterOrSurfaceArea();
void print();
protected:
float height;
};
| [
"akastanek@cox.net"
] | akastanek@cox.net |
b25126367908f04c4a2bf77ae10d1a1bedf42b38 | 38d55b09727eced4ba274f63709879f6cd3b0fcc | /roomModel.cpp | c8c37107a6ac75df0ce0f3156f8794e805a0fe77 | [] | no_license | LeKiwiDeBx/AH_Hunter | d66a5fada458b225498bf2583adcd2c1faa2add6 | 9712c06b6fb8064243ac8e4e1e44981af1a2a999 | refs/heads/AH_Hunter | 2020-04-14T20:34:50.296499 | 2019-11-08T10:23:11 | 2019-11-08T10:23:11 | 121,975,923 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,227 | cpp | #include "main.h"
/**
* @brief Construct a new room Model::room Model object
* ici on récupère les datas de configAHH.json
l * la roomModel doit être créée par une factory
* la roomModel demande à la roomData de se peupler des data de configAHH.json
* et obtient un pointeur sur la roomData
* @todo unique_pointer<> sur le new et verifier le succes du new
*/
roomModel::roomModel()
{
doRoomData = new DataFactory();
this->sDO = doRoomData->getSDO(DT_roomData);
}
/**
* @brief
*
*/
void roomModel::modify(){};
/**
* @brief appel de la DataFactory pour le nouvel sDO roomData
*
* @param vReceptor ici c'est le numero choix de reponse ???
* YA DU BUG
*/
void roomModel::setdata(const std::string vReceptor)
{
//auto id{std::stoi(vReceptor)};
// en fonction du numero de reponse on choisit la RoomNext
auto idRoom = this->sDO->getRoomNext("RoomNext", vReceptor);
//debug
//std::cout << "DEBUG:: reponse next room: " << idRoom << std::endl;
this->sDO = doRoomData->getSDO(DT_roomData, std::stoi(idRoom));
// std::cout << "DEBUG:: Texte: " << this->sDO->getAllData("Texte") << std::endl;
};
/**
* @brief
* retourne le sDO en cours
* @param v inutile????
* @return subjectDataObject*
*/
subjectDataObject *roomModel::getdata(const View &v)
{
return sDO;
};
/**
* @brief retourne le nom en cours
* @todo utile?
*/
void roomModel::getdata()
{
sDO->getName();
};
/**
* @brief
*
*/
void roomModel::demand(){};
/**
* @brief update direct (manipulates) des data du model suite appel du presenter [qui a le role du controller]\n
*
*/
void roomModel::update()
{
}
/**
* @brief s'attache comme sujet au DataObserver (list)
* @todo faire le distinguo entre view et viewDataObserver?????
* @param v la vuepour laquelle on s'enregistre
*/
void roomModel::attach(View &v)
{
this->m_list.push_back(&v);
}
/**
* @brief se detache de l'observer
*
*/
void roomModel::detach() {}
/**
* @brief pour chaque observateur (view) on demande de faire update option: PULL (tiré)
*
*/
void roomModel::notify()
{
iterator itb = m_list.begin();
const_iterator ite = m_list.end();
for (; itb != ite; ++itb)
{
(*itb)->update(sDO);
}
} | [
"tatareau@free.fr"
] | tatareau@free.fr |
bfcfe4e0e42daf6eab0806a49de4cadce0eb3bc8 | ccf95341f16c892905eb31ed5ddd08d40f4168ef | /include/Ai/StateUtil.h | 5c64e9f16d7bb3470c2d9c3dc0fe672549a580be | [] | no_license | NicoHartl/astu | c3eac67d3b787b400a4f203390d02274e5028ed0 | 172f195c3c2b44cc92bdf5382a0d176bae3bafff | refs/heads/master | 2023-09-04T06:35:29.541150 | 2021-10-11T05:36:10 | 2021-10-11T05:36:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,872 | h | /*
* ASTU - AST Utilities
* A collection of Utilities for Applied Software Techniques (AST).
*
* Copyright (c) 2020, 2021 Roman Divotkey, Nora Loimayr. All rights reserved.
*/
#pragma once
// Local includes
#include "Ai/Quantizer.h"
// C++ Standard Library includes
#include <memory>
#include <vector>
namespace astu {
/**
* A utility class used to calculate a single state index
* for multi-dimensional states.
*
* @ingroup ai_group
*/
class StateUtil {
public:
/**
* Constructor.
*/
StateUtil();
/**
* Clears all dimensions.
*/
void Reset();
/**
* Adds a new dimension for partials states.
* This method does not assign any quantizer to the new dimension.
*
* @param the size of the new dimension
* @return the index of the new dimension
*/
size_t AddDimension(size_t size);
/**
* Adds a new dimension for partials states.
* The size of the new dimension will be derived from the specified quantizer.
*
* @param quantizer the quantizer used for the new dimension
* @return the index of the new dimension
*/
size_t AddDimension(std::shared_ptr<IQuantizer> quantizer);
/**
* Returns the number of dimensions.
*
* @return the number of dimensions
*/
size_t NumDimensions() const;
/**
* Returns the size of the specified dimension.
*
* @param dimension the dimension for which to return the size
* @return the size of the specified dimension
*/
size_t GetDimensionSize(unsigned int dimension) const;
/**
* Returns the quantizer used for the specified dimension.
*
* @param dimension the dimension for which to return the quantizer
* @return the requested quantizer
*/
std::shared_ptr<IQuantizer> GetQuantizer(unsigned int dimension);
/**
* Sets the (discrete) partial state of the specified dimension.
*
* @param dimension the dimension for which to set the state
* @param value the actual state
*/
void SetDiscreteState(size_t dimension, unsigned int value);
/**
* Sets the (continuous) partial state of the specified dimension.
* This method will use the associated quantizer to create
* the discrete state from the specified continuous value.
*
* @param dimension the dimension for which to set the partial state
* @param value the continuous value used to determine the partial state
*/
void SetContinuousState(size_t dimension, double value);
/**
* Returns the current (discrete) partial state of the specified dimension
*
* @param dimension the dimension for which to return the state
* @return the current state of the specified dimension
*/
unsigned int GetDiscreteState(size_t dimension) const;
/**
* Returns the current (discrete) partial state of the specified dimension
*
* @param dimension the dimension for which to return the state
* @return the current state of the specified dimension
*/
double GetContinuousState(size_t dimension) const;
/**
* Returns the overall state according to the currently set partial state.
*
* @return the overall state
*/
size_t GetState() const;
/**
* Returns the total number of states.
* The returned number - 1 is the highest possible overall state index.
*
* @return the total number of states.
*/
size_t TotalNumberOfStates() const;
private:
struct Dimension {
size_t size;
unsigned int discreteState;
double continuousState;
std::shared_ptr<IQuantizer> quantizer;
Dimension(size_t s, std::shared_ptr<IQuantizer> q)
: size(s), discreteState(0), continuousState(0), quantizer(q)
{
// Intentionally left empty
}
void SetContinousState(double value);
void SetDiscreteState(unsigned int value);
};
/** The partials states (dimensions). */
std::vector<Dimension> dimensions;
};
} // end of namespace | [
"roman.divotkey@gmail.com"
] | roman.divotkey@gmail.com |
cd5e5f948794c64a1dbc3ffec4fda31b187f273c | 0059414a7a9714fb69ad78b7c8eb824c4d09788b | /HgammaSandbox/util/runMCTRUTH0plots.cxx | 05bf2825623bed010ce0ca0b61859c95df39212e | [] | no_license | congpeng/HGamHTXScate | 1f7e7d531040d29e2d9887fd420194477e1c629c | de99cd8e8c27149c47b6e4dce13078d3f7e3ba4f | refs/heads/master | 2021-01-22T00:51:00.882852 | 2017-03-02T00:23:28 | 2017-03-02T00:23:28 | 83,581,539 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 348 | cxx | #include "HgammaSandbox/MCTRUTH0plots.h"
#include "HGamAnalysisFramework/RunUtils.h"
int main(int argc, char *argv[])
{
// Set up the job for xAOD access
xAOD::Init().ignore();
// Create our algorithm
MCTRUTH0plots *alg = new MCTRUTH0plots("MCTRUTH0plots");
// Use helper to start the job
HG::runJob(alg, argc, argv);
return 0;
}
| [
"cpeng@lxplus085.cern.ch"
] | cpeng@lxplus085.cern.ch |
2ca87bf655fc27a21be61ac01575aed076276139 | 222c3d2fd75c460e7c5cb9e01ee8af4a19f29804 | /aula_23/exercicio_aula23/Quadrado.hpp | 9af4d5b794c12ed0c97c674efa9c719954b8236e | [
"MIT"
] | permissive | matheusalanojoenck/aula_cpp | e4b8883317fd8af5f2dea256e164228d99bf73f1 | 039bd4f4b11a736f1d800cad97a530e212b30375 | refs/heads/master | 2022-12-15T05:26:21.139261 | 2020-09-11T15:51:20 | 2020-09-11T15:51:20 | 257,736,518 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 187 | hpp | #ifndef QUADRADO_HPP
#define QUADRADO_HPP
#include "Forma.hpp"
class Quadrado : public Forma
{
private:
float lado;
public:
Quadrado(float lado);
float getArea();
};
#endif | [
"matheusalanojoenck@gmail.com"
] | matheusalanojoenck@gmail.com |
dbb4535b41bf647fd78eb0221f40a7266fc0f5fc | 87b8b2a1fe6fabd0204c933877a3644cc0ca2ba1 | /src/Tree.cpp | ee20f120aaeb317428d9a4dc2a7ed5dd5638da51 | [] | no_license | GalYona21/SPLassignment1 | 54f91239bba8f420a894a750e8c250dd95ea3377 | b19ed71732b5ac839922cd6a243c9e02c47ae41c | refs/heads/main | 2023-03-17T02:34:00.482628 | 2021-02-28T07:07:03 | 2021-02-28T07:07:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,258 | cpp | //
// Created by spl211 on 03/11/2020.
//
#include "../include/Session.h"
#include "../include/Tree.h"
#include "iostream"
using namespace std;
Tree::Tree(int rootLabel) : node(rootLabel), children(){
}
Tree& Tree::operator=(const Tree &other) {//copy assignment operator
if(&other!=this){
clear();
copy(other);
}
return *this;
}
Tree::Tree(const Tree &t) : node(t.node), children(t.children) {//copy constructor
copy(t);
}
Tree::~Tree() {//destructor
clear();
}
Tree::Tree( Tree&& t) : node(),children(){//move constructor
//if(this!=&t){
copy(t);
t.clear();
//}
}
Tree& Tree::operator=(Tree &&other) {//move assignment operator
if(&other!=this){
clear();
copy(other);
other.clear();
}
return *this;
}
void Tree::copy(const Tree& t) {
node=t.node;
int i=0;
for(size_t j=0;j<t.children.size();j++){
children.push_back(t.children[i]->clone());
i=i+1;
}
}
void Tree::clear() {
int size=children.size();
for (int i = 0; i <size; i++) {
delete children[i];
}
children.clear();
}
Tree * Tree::createTree(const Session &session, int rootLabel) {
Tree* tree;
int treeTypeNum=session.getTreeType();
if(treeTypeNum==0) {
tree = new CycleTree(rootLabel, session.getCycleNum());
}
else if(treeTypeNum==1){
tree = new MaxRankTree(rootLabel);
}
else{
tree = new RootTree(rootLabel);
}
return tree;
}
void Tree::addChild(const Tree &child) {
Tree* c=child.clone();
children.push_back(c);
}
void Tree::addChild(Tree *child) {
children.push_back(child);
}
int Tree::getRoot() {
return node;
}
std::vector<Tree *> Tree::getChildren() {
return children;
}
bool Tree::hasChildren() {
if(children.empty()){
return false;
}
return true;
}
MaxRankTree::MaxRankTree(int rootLabel) : Tree(rootLabel) {}
int MaxRankTree::traceTree() {
size_t maxChildren=0;
int output=getRoot();
Tree* temp;
vector<Tree*> childrenTemp;
vector<Tree*> q;
q.push_back(this);
while(!q.empty()){
temp=q.front();
q.erase(q.begin());
if(temp->hasChildren()) {
childrenTemp = temp->getChildren();
int i=0;
for (size_t j = 0; j < childrenTemp.size(); j++) {
q.push_back(childrenTemp[i]);
i=i+1;
}
}
if(childrenTemp.size() > maxChildren){
maxChildren=childrenTemp.size();
output=temp->getRoot();
}
}
return output;
}
Tree * MaxRankTree::clone() const {
return new MaxRankTree(*this);
}
RootTree::RootTree(int rootLabel) : Tree(rootLabel) {}
Tree * RootTree::clone() const {
return new RootTree(*this);
}
int RootTree::traceTree() {
return Tree::getRoot();
}
CycleTree::CycleTree(int rootLabel, int currCycle) : Tree(rootLabel), currCycle(currCycle){}
int CycleTree::traceTree() {
Tree* child(this);
int i=0;
while(i<currCycle&&(*child).hasChildren()){
child=child->getChildren().front();
i=i+1;
}
return (*child).getRoot();
}
Tree * CycleTree::clone() const {
return new CycleTree(*this);
}
| [
"noreply@github.com"
] | noreply@github.com |
b7992cfe0f7f3d28393a0f9b70ea583cdaa9ffb6 | 86067b6b4f1a0223ea36f7c1e63b3837e63bbe4c | /visitormath.cpp | f0a3128962a380c5194af5bb6b1cfbfec0406f69 | [
"MIT"
] | permissive | uvguy/antlrmathwidget1 | 9528d057319ea846c767a2a7b9cf8fe84c50c4c9 | bf0d457bba78300caf9c8888ff39a78ed21ce479 | refs/heads/master | 2021-04-03T02:17:07.965035 | 2018-03-10T06:11:18 | 2018-03-10T06:11:18 | 124,623,449 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,708 | cpp | #include "visitormath.h"
VisitorMath::VisitorMath() :edit(nullptr){}
void VisitorMath::setWidgetDebug(QTextEdit *out)
{
edit=out;
}
antlrcpp::Any VisitorMath::visitProg(MathParser::ProgContext *context) {
for (auto m : context->stat()) {
visit(m);
}
QString msg;
msg.append(QObject::tr("\nresult %1").arg (value.value.toString()));
for (const std::pair<std::string, QVariant> &vars : value.globalvars) {
msg.append(QObject::tr("\nglobal id %1 it's val is %2").arg (QString::fromStdString (vars.first)).arg (vars.second.toString()));
}
edit->append (msg) ;
return nullptr;
}
antlrcpp::Any VisitorMath::visitBaseExpr(MathParser::BaseExprContext *context) {
visit(context->expr());
return nullptr;
}
antlrcpp::Any VisitorMath::visitSetVariable(
MathParser::SetVariableContext *context) {
visit(context->expr());
value.globalvars[context->ID()->getText()] = value.value;
return nullptr;
}
antlrcpp::Any VisitorMath::visitInteger(MathParser::IntegerContext *context) {
auto str = QString::fromStdString(context->INT()->getText());
tmpVal = context->MIN () ? -str.toInt (): str.toInt();
return nullptr;
}
antlrcpp::Any VisitorMath::visitVariable(MathParser::VariableContext *context) {
auto s = value.globalvars.find(context->ID()->getText());
if (s != value.globalvars.end()) {
tmpVal = s->second;
} else {
QString msg;
msg.append (QObject::tr ("\nwarning not found id var %1").arg (context->ID()->getText().c_str()));
edit->append (msg) ;
}
return nullptr;
}
antlrcpp::Any VisitorMath::visitAritLondo(
MathParser::AritLondoContext *context) {
visit(context->expr().at(0));
auto left = tmpVal.toInt();
visit(context->expr().at(1));
auto right = tmpVal.toInt();
if (context->op->getText() == "+") {
auto ret = (int)left + right;
value.value=ret;
tmpVal=ret;
} else {
auto ret = (int)left - right;
value.value=ret;
tmpVal=ret;
}
return nullptr;
}
antlrcpp::Any VisitorMath::visitAritPipo(MathParser::AritPipoContext *context) {
visit(context->expr().at(0));
auto left = tmpVal.toInt();
visit(context->expr().at(1));
auto right = tmpVal.toInt();
if (context->op->getText() == "*") {
auto ret = (int)left * right;
value.value=ret;
tmpVal=ret;
} else {
if (right == 0) {
QString msg;
msg.append (QObject::tr ("\ncannot divide by 0!"));
edit->append (msg);
return nullptr;
}
auto ret = (int)left / right;
value.value=ret;
tmpVal=ret;
}
return nullptr;
}
antlrcpp::Any VisitorMath::visitArithBraches(
MathParser::ArithBrachesContext *context) {
visit(context->expr());
return nullptr;
}
| [
"kangjoni76@gmail.com"
] | kangjoni76@gmail.com |
d88bd5abfdc43589df82904ad931abd46bb10238 | 7d860affdeb45465951f1bca5b36bf8993248e79 | /Code/AndroidClient/Classes/UIFile/NASaleMenu.cpp | 85f5c3bf21d73c85a6e056b68069777957a9556e | [] | no_license | Zyl85385215/Resources | 88251abaaa44300c0ca0830d52e62cd13e7a4c5f | 1e2468d03deb7b46b892a870e89c3b4a5ca25aae | refs/heads/master | 2021-02-27T02:13:28.203996 | 2020-04-10T17:08:34 | 2020-04-10T17:08:34 | 245,569,447 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 28,632 | cpp | #include "MainMenu.h"
#include "UserData.h"
#include "NASaleMenu.h"
#include "ios_nasale_packet.h"
static int nItemClr[4][3] = {
{255,255,255},
{0,255,0},
{0,133,207},
{188,52,186},
};
static char* NASaleFilter1[] = {"不限","药品","装备","宠物技能书","怒气技能书","坐骑","强化石","其他"};
static char* NASaleFilter2[] = {"不限","战士","法师","枪手","牧师"};
static char* NASaleFilter3[] = {"不限","0-9","10-19","20-29","30-39","40-49","50-59","60-69","70-79","80-89","90-99"};
bool fun_cbNAItemCheck(ItemObj* pObj,void* param)
{
if(pObj->GetVal(ITEM_AD_BIND)||pObj->GetVal(ITEM_AD_SLOT)!=ITEM_SLOT_BAG)
{
return false;
}
return true;
}
void fun_cbInputSellPrice(int nResult,void * param)
{
ItemObj* pItem = (ItemObj*)param;
//pMainMenu->m_pNaSaleMenu->RequestSellItem(pItem,nResult);
pMainMenu->ShowNetWaiting();
}
void fun_cbNAItemSel(void* pParam,BYTE byType)
{
//pMainMenu->m_pGetNumMenu->Open(fun_cbInputSellPrice,99999999,0,pParam);
pMainMenu->m_pNASalePriceMenu->OpenForm((ItemObj*)pParam);
pMainMenu->m_pChatMenu->m_pItemMenu->Close();
}
void RQOpenMyEvent(InterfaceEvent * pEvent,void * param)
{
if(pEvent->event != INTERFACE_EVENT_CLICK)
return;
NASaleMenu* pMenu = (NASaleMenu*)param;
pMenu->m_pForm->Close();
if(pChar->m_byLvl < 20)
{
pMainMenu->PopTipMsg("等级达到20级开启寄售功能");
return;
}
pMenu->OpenMySale();
}
void RQBackSaleEvent(InterfaceEvent * pEvent,void * param)
{
if(pEvent->event != INTERFACE_EVENT_CLICK)
return;
NASaleMenu* pMenu = (NASaleMenu*)param;
pMenu->m_pMySaleForm->Close();
pMenu->OpenForm();
}
void RQCalcSaleEvent(InterfaceEvent * pEvent,void * param)
{
if(pEvent->event != INTERFACE_EVENT_CLICK)
return;
NASaleMenu* pMenu = (NASaleMenu*)param;
if(pMenu->m_nMySaleMoney)
{
pMenu->SendCmd(NASALE,NA_CALC_MYMONEY);
pMenu->SendCmd(NASALE,NA_MY_LIST);
}
}
void RQSellEvent(InterfaceEvent * pEvent,void * param)
{
if(pEvent->event != INTERFACE_EVENT_CLICK)
return;
NASaleMenu* pMenu = (NASaleMenu*)param;
pMainMenu->m_pChatMenu->m_pItemMenu->SetType(FORM_EX);
pMainMenu->m_pChatMenu->m_pItemMenu->SetFilter(fun_cbNAItemCheck);
pMainMenu->m_pChatMenu->m_pItemMenu->m_bReSort = true;
pMainMenu->m_pChatMenu->m_pItemMenu->SetLockEquip(true);
pMainMenu->m_pChatMenu->m_pItemMenu->SetChooseCallback(fun_cbNAItemSel);
pMainMenu->m_pChatMenu->m_pItemMenu->SetButtonSpr("BT_JISHOU1.png");
pMainMenu->m_pChatMenu->m_pItemMenu->Open();
}
void fun_cbBuyItem(void* pParam,BYTE byType)
{
pMainMenu->m_pNaSaleMenu->RequestBuyItem();
}
void fun_cbGetMyItem(void* pParam,BYTE byType)
{
pMainMenu->m_pNaSaleMenu->RequestGetMyItem();
}
void fun_cbExInfo(ItemObj* pObj)
{
if (pObj)
{
if (pObj->pItemBase->byType == ITEMTYPE_EQUIP)
{
pMainMenu->m_pEquipInfoMenu->Open(pObj,FORM_EX);
pMainMenu->m_pEquipInfoMenu->SetButtonSpr("BT_GM_CZ.png",NULL);
pMainMenu->m_pEquipInfoMenu->SetCallBackEvent(fun_cbBuyItem);
}else{
pMainMenu->m_pItemInfoMenu->Open(pObj,FORM_EX);
pMainMenu->m_pItemInfoMenu->SetButtonSpr("BT_GM_CZ.png",NULL);
pMainMenu->m_pItemInfoMenu->SetCallBackEvent(fun_cbBuyItem);
}
}
}
void fun_cbMyExInfo(ItemObj* pObj)
{
if (pObj)
{
if (pObj->pItemBase->byType == ITEMTYPE_EQUIP)
{
pMainMenu->m_pEquipInfoMenu->Open(pObj,FORM_EX);
pMainMenu->m_pEquipInfoMenu->SetButtonSpr("BT_JS_QH.png",NULL);
pMainMenu->m_pEquipInfoMenu->SetCallBackEvent(fun_cbGetMyItem);
}else{
pMainMenu->m_pItemInfoMenu->Open(pObj,FORM_EX);
pMainMenu->m_pItemInfoMenu->SetButtonSpr("BT_JS_QH.png",NULL);
pMainMenu->m_pItemInfoMenu->SetCallBackEvent(fun_cbGetMyItem);
}
}
}
void NASaleClickFrm(int nPos,char* szName,void* param)
{
NASaleMenu* pMenu = (NASaleMenu*)param;
pMenu->m_nCurSelPos = nPos;
for (int i = 0; i < pMenu->m_pListSale->Count; i++)
{
if (i == nPos)
pMenu->m_pForm->pCFrame->GetFPComp(i,"mb")->SetVisible(true);
else
pMenu->m_pForm->pCFrame->GetFPComp(i,"mb")->SetVisible(false);
}
if(strncmp(szName,"icon1",5) == 0)
{
NASaleClient* pSale = (NASaleClient*)pMenu->m_pForm->pCFrame->GetFPTag(nPos);
pMenu->m_pSelSale = pSale;
if(pSale->dwItemInfo)
{
pChar->m_pItemCenter->GetItemInfoFormServer(0,pSale->dwItemInfo,fun_cbExInfo);
pMainMenu->ShowNetWaiting(500);
}
else
{
ItemExBase* pBase = ItemConfig::GetInstance().GetItemBase(pSale->wItemID);
if(pBase)
{
pMainMenu->m_pItemInfoMenu->Open(pBase,FORM_EX);
pMainMenu->m_pItemInfoMenu->SetButtonSpr("BT_GM_CZ.png",NULL);
pMainMenu->m_pItemInfoMenu->SetCallBackEvent(fun_cbBuyItem);
}
}
}
else
{
}
}
void NAMyClickFrm(int nPos,char* szName,void* param)
{
NASaleMenu* pMenu = (NASaleMenu*)param;
pMenu->m_nCurSelPos = nPos;
for (int i = 0; i < pMenu->m_pListSale->Count; i++)
{
if (i == nPos)
pMenu->m_pMySaleForm->pCFrame->GetFPComp(i,"mb")->SetVisible(true);
else
pMenu->m_pMySaleForm->pCFrame->GetFPComp(i,"mb")->SetVisible(false);
}
if(strncmp(szName,"icon1",5) == 0)
{
NASaleClient* pSale = (NASaleClient*)pMenu->m_pMySaleForm->pCFrame->GetFPTag(nPos);
pMenu->m_pSelSale = pSale;
if(pSale->dwItemInfo)
{
pChar->m_pItemCenter->GetItemInfoFormServer(0,pSale->dwItemInfo,fun_cbMyExInfo);
pMainMenu->ShowNetWaiting(500);
}
else
{
ItemExBase* pBase = ItemConfig::GetInstance().GetItemBase(pSale->wItemID);
if(pBase)
{
pMainMenu->m_pItemInfoMenu->Open(pBase,FORM_EX);
pMainMenu->m_pItemInfoMenu->SetButtonSpr("BT_JS_QH.png",NULL);
pMainMenu->m_pItemInfoMenu->SetCallBackEvent(fun_cbGetMyItem);
}
}
}
else
{
}
}
void NASaleFilterEvent(InterfaceEvent * pEvent,void * param)
{
if(pEvent->event != INTERFACE_EVENT_CLICK)
return;
int nType = (int)param;
if (pMainMenu->m_pNASaleFilterMenu->m_pForm->bOpened&&pMainMenu->m_pNASaleFilterMenu->m_nFilterType == nType)
{
pMainMenu->m_pNASaleFilterMenu->m_pForm->Close();
return;
}
if (nType>=0&&nType<3)
{
char sztxt[32];
sprintf(sztxt,"xia%d",nType+1);
pMainMenu->m_pNASaleFilterMenu->OpenForm(nType,pMainMenu->m_pNaSaleMenu->m_pForm->GetComponent(sztxt)->nX,pMainMenu->m_pNaSaleMenu->m_pForm->GetComponent(sztxt)->nY);
}
}
void ClickLastPageEvent(InterfaceEvent * pEvent,void * param)
{
if(pEvent->event != INTERFACE_EVENT_CLICK)
return;
NASaleMenu* pMenu = (NASaleMenu*)param;
if (pMenu)
{
if (pMenu->m_nPage < 1)
return;
pMenu->FilterUpdata(pMenu->m_nPage-1);
pMenu->m_nPage--;
}
}
void ClickNextPageEvent(InterfaceEvent * pEvent,void * param)
{
if(pEvent->event != INTERFACE_EVENT_CLICK)
return;
NASaleMenu* pMenu = (NASaleMenu*)param;
if (pMenu)
{
if (pMenu->m_nPage > pMenu->m_nMaxPage-1)
return;
pMenu->FilterUpdata(pMenu->m_nPage+1);
pMenu->m_nPage++;
}
}
NASaleMenu::NASaleMenu():m_nMySaleCnt(0),m_nPage(0),m_nMaxPage(0)
{
m_pForm = pMainInterface->GetDForm("jishou2");
m_pMySaleForm = pMainInterface->GetDForm("jishou");
DComponent* pCompBase = m_pForm->GetComponent("zi");
DComponent* ppComp[8];
ppComp[0] = m_pForm->GetComponent("mb");
ppComp[1] = m_pForm->GetComponent("gezi1");
ppComp[2] = m_pForm->GetComponent("pz");
ppComp[3] = m_pForm->GetComponent("lv");
ppComp[4] = m_pForm->GetComponent("num");
ppComp[5] = m_pForm->GetComponent("dj");
ppComp[6] = m_pForm->GetComponent("icon1");
ppComp[7] = m_pForm->GetComponent("s");
m_pForm->pCFrame = new CCtrlFrame(pCompBase->nX,pCompBase->nY,pCompBase->nW,(pCompBase->nH+5)*4);
m_pForm->pCFrame->InitFParts(pCompBase,ppComp,8);
m_pForm->pCFrame->nSpace = 5;
m_pForm->pCFrame->nDisStep = pCompBase->nH+5;
m_pForm->pCFrame->SetEventEx(NASaleClickFrm,this);
pCompBase = m_pMySaleForm->GetComponent("zi");
ppComp[0] = m_pMySaleForm->GetComponent("mb");
ppComp[1] = m_pMySaleForm->GetComponent("gezi1");
ppComp[2] = m_pMySaleForm->GetComponent("pz");
ppComp[3] = m_pMySaleForm->GetComponent("lv");
ppComp[4] = m_pMySaleForm->GetComponent("num");
ppComp[5] = m_pMySaleForm->GetComponent("dj");
ppComp[6] = m_pMySaleForm->GetComponent("icon1");
ppComp[7] = m_pMySaleForm->GetComponent("s");
m_pMySaleForm->pCFrame = new CCtrlFrame(pCompBase->nX,pCompBase->nY,pCompBase->nW,(pCompBase->nH+5)*4);
m_pMySaleForm->pCFrame->InitFParts(pCompBase,ppComp,8);
m_pMySaleForm->pCFrame->nSpace = 5;
m_pMySaleForm->pCFrame->nDisStep = pCompBase->nH+5;
m_pMySaleForm->pCFrame->SetEventEx(NAMyClickFrm,this);
m_pForm->GetComponent("me")->SetEvent(RQOpenMyEvent, this);
m_pForm->GetComponent("qg")->SetVisible(false);
m_pForm->GetComponent("xia1")->SetEvent(NASaleFilterEvent, (void*)0);
m_pForm->GetComponent("xia2")->SetEvent(NASaleFilterEvent, (void*)1);
m_pForm->GetComponent("xia3")->SetEvent(NASaleFilterEvent, (void*)2);
m_pForm->GetComponent("left")->SetEvent(ClickLastPageEvent, this);
m_pForm->GetComponent("right")->SetEvent(ClickNextPageEvent, this);
m_pForm->GetComponent("page1")->SetVisible(false);
m_pForm->GetComponent("page2")->SetVisible(false);
m_pMySaleForm->GetComponent("js")->SetEvent(RQSellEvent, this);
m_pMySaleForm->GetComponent("fh")->SetEvent(RQBackSaleEvent, this);
m_pMySaleForm->GetComponent("qc")->SetEvent(RQCalcSaleEvent, this);
m_pMySaleForm->GetComponent("qg")->SetVisible(false);
m_pMySaleForm->GetComponent("page1")->SetVisible(false);
m_pMySaleForm->GetComponent("page2")->SetVisible(false);
m_nCurSelPos = -1;
m_pListSale = xnList::Create();
m_pListMine = xnList::Create();
for (int i = 0; i < 3; i++)
{
m_nFilterType[i] = 0;
}
//m_pTypeFilterList = xnList::Create();
//m_pJopFilterList = xnList::Create();
//m_pRankFilterList = xnList::Create();
}
NASaleMenu::~NASaleMenu()
{
while(m_pListSale->Count)
delete (NASaleClient*)m_pListSale->Delete(0);
m_pListSale->Free();
while(m_pListMine->Count)
delete (NASaleClient*)m_pListMine->Delete(0);
m_pListMine->Free();
/*while(m_pTypeFilterList->Count)
delete m_pTypeFilterList->Delete(0);
m_pTypeFilterList->Free();
while(m_pJopFilterList->Count)
delete m_pJopFilterList->Delete(0);
m_pJopFilterList->Free();
while(m_pRankFilterList->Count)
delete m_pRankFilterList->Delete(0);
m_pRankFilterList->Free();*/
}
extern void SetItemToDCom(DComponent* pDom,int nID);
extern void SetItemToDCom(DComponent* pDom,ItemObj* pObj);
bool NASaleMenu::PacketProcess( ZPacket* pPacket )
{
if(pPacket->bCmdGroup != NASALE)
return false;
switch(pPacket->bCmd)
{
case NA_SELL_LIST:
{
SET_DATA(pData, NASALE, NA_SELL_LIST, pPacket);
m_pForm->pCFrame->SetFPCnt(pData->wCnt);
m_nCurSelPos = -1;
m_nMaxPage = pData->wPageCnt;
char szTmp[256];
DWORD dwCurSec = xnGetSecCount();
for (int i = 0; i < pData->wCnt; i++)
{
ItemExBase* pBase = ItemConfig::GetInstance().GetItemBase(pData->szData[i].wItemID);
if(pBase)
{
NASaleClient* pSale = new NASaleClient();
pSale->byType = pData->szData[i].byType;
pSale->dwItemInfo = pData->szData[i].dwExInfo;
pSale->dwNAIndex = pData->szData[i].dwNaKey;
pSale->dwEndSec = pData->szData[i].nRmSec+dwCurSec;
pSale->nPrice = pData->szData[i].nPrice;
pSale->wItemCnt = pData->szData[i].wCnt;
pSale->wItemID = pData->szData[i].wItemID;
pSale->pBase = pBase;
m_pListSale->Add(pSale);
m_pForm->pCFrame->GetFPComp(i,"mb")->SetVisible(false);
DComponent* pComp = m_pForm->pCFrame->GetFPComp(i,"icon1");
sprintf(szTmp,"item/%d.png",pBase->nSpr);
pComp->SetViewSpr(szTmp);
if(pSale->wItemCnt > 1)
pComp->SetCaptionEx("%d",2,pSale->wItemCnt);
else
pComp->SetCaption("",2);
char szTmp[32];
sprintf(szTmp,"MB_PZ%d.png",pBase->nStar+1);
pComp->SetAddSprByTag(szTmp,-2,-2,1,100,0,-1);
DWORD dwTime = pSale->dwEndSec-dwCurSec;
if (dwTime/3600)
m_pForm->pCFrame->GetFPComp(i,"dj")->SetCaptionEx("%d小时",1,dwTime/3600);
else
m_pForm->pCFrame->GetFPComp(i,"dj")->SetCaption("小于1小时",1);
m_pForm->pCFrame->GetFPComp(i,"lv")->SetCaptionEx("%d",1,pBase->byLv);
m_pForm->pCFrame->GetFPComp(i,"num")->SetCaptionEx("%d",1,pSale->nPrice);
m_pForm->pCFrame->GetFPComp(i,"pz")->SetCaption(pBase->szName,1);
m_pForm->pCFrame->GetFPComp(i,"pz")->SetSprColor(nItemClr[pBase->nStar][0],nItemClr[pBase->nStar][1],nItemClr[pBase->nStar][2]);
m_pForm->pCFrame->SetFPTag(i,pSale);
}
}
}
return true;
case NA_MY_LIST:
{
SET_DATA(pData, NASALE, NA_MY_LIST, pPacket);
m_pMySaleForm->pCFrame->SetFPCnt(pData->wCnt);
m_nCurSelPos = -1;
m_nMySaleCnt = pData->wCnt;
char szTmp[256];
DWORD dwCurSec = xnGetSecCount();
m_nMySaleMoney = 0;
for (int i = 0; i < pData->wCnt; i++)
{
ItemExBase* pBase = ItemConfig::GetInstance().GetItemBase(pData->szData[i].wItemID);
if(pBase)
{
NASaleClient* pSale = new NASaleClient();
pSale->byType = pData->szData[i].byType;
pSale->dwItemInfo = pData->szData[i].dwExInfo;
pSale->dwNAIndex = pData->szData[i].dwNaKey;
pSale->dwEndSec = pData->szData[i].nRmSec+dwCurSec;
pSale->nPrice = pData->szData[i].nPrice;
pSale->wItemCnt = pData->szData[i].wCnt;
pSale->wItemID = pData->szData[i].wItemID;
pSale->pBase = pBase;
m_pListMine->Add(pSale);
m_pMySaleForm->pCFrame->GetFPComp(i,"mb")->SetVisible(false);
DComponent* pComp = m_pMySaleForm->pCFrame->GetFPComp(i,"icon1");
sprintf(szTmp,"item/%d.png",pBase->nSpr);
pComp->SetViewSpr(szTmp);
if(pSale->wItemCnt > 1)
pComp->SetCaptionEx("%d",2,pSale->wItemCnt);
else
pComp->SetCaption("",2);
if(pSale->byType == 9)
{
pComp->SetAddSprByTag("BT_PM_GUOQI.png",-2,-2,1);
m_pMySaleForm->pCFrame->GetFPComp(i,"dj")->SetCaption("0",1);
}
else if(pSale->byType == 8)
{
pComp->SetAddSprByTag("MB_PM_YISHOU.png",-2,-2,1);
m_nMySaleMoney += pData->szData[i].nPrice;
m_pMySaleForm->pCFrame->GetFPComp(i,"dj")->SetCaption("",1);
}
else
{
char szTmp[32];
sprintf(szTmp,"MB_PZ%d.png",pBase->nStar+1);
pComp->SetAddSprByTag(szTmp,-2,-2,1,100,0,-1);
DWORD dwTime = pSale->dwEndSec-dwCurSec;
if (dwTime/3600)
m_pMySaleForm->pCFrame->GetFPComp(i,"dj")->SetCaptionEx("%d小时",1,dwTime/3600);
else
m_pMySaleForm->pCFrame->GetFPComp(i,"dj")->SetCaption("小于1小时",1);
}
m_pMySaleForm->pCFrame->GetFPComp(i,"lv")->SetCaptionEx("%d",1,pBase->byLv);
m_pMySaleForm->pCFrame->GetFPComp(i,"num")->SetCaptionEx("%d",1,pSale->nPrice);
m_pMySaleForm->pCFrame->GetFPComp(i,"pz")->SetCaption(pBase->szName,1);
m_pMySaleForm->pCFrame->GetFPComp(i,"pz")->SetSprColor(nItemClr[pBase->nStar][0],nItemClr[pBase->nStar][1],nItemClr[pBase->nStar][2]);
m_pMySaleForm->pCFrame->SetFPTag(i,pSale);
}
}
}
return true;
}
return true;
}
static int nFType[8] = {0,6,2,4,7,8,5,20};
void NASaleMenu::FilterUpdata(int nPage)
{
if (nPage<0||nPage>m_nMaxPage)
return;
SearchSellItems(m_nFilterType[1],nFType[m_nFilterType[0]],m_nFilterType[2],nPage*30);
/*if (m_pTypeFilterList)
{
while(m_pTypeFilterList->Count)
m_pTypeFilterList->Delete(0);
}
if (m_pJopFilterList)
{
while(m_pJopFilterList->Count)
m_pJopFilterList->Delete(0);
}
if (m_pRankFilterList)
{
while(m_pRankFilterList->Count)
m_pRankFilterList->Delete(0);
}
if (m_nFilterType[0])
{
for (int i = 0; i < m_pListSale->Count; i++)
{
NASaleClient* pTemp = (NASaleClient*)m_pListSale->Items[i];
if (pTemp&&pTemp->pBase&&pTemp->pBase->byType == nFType[m_nFilterType[0]]&&m_nFilterType[0]<7)
{
m_pTypeFilterList->Add(pTemp);
}else if (pTemp&&pTemp->pBase&&nFType[m_nFilterType[0]] == 20&&(pTemp->pBase->byType == 0||pTemp->pBase->byType == 1))
{
m_pTypeFilterList->Add(pTemp);
}
}
}
if (m_nFilterType[1])
{
if (m_nFilterType[0])
{
for (int i = 0; i < m_pTypeFilterList->Count; i++)
{
NASaleClient* pTemp = (NASaleClient*)m_pTypeFilterList->Items[i];
if (pTemp&&pTemp->pBase&&pTemp->pBase->nJob&(1<<m_nFilterType[1]))
{
m_pJopFilterList->Add(pTemp);
}
}
}else
{
for (int i = 0; i < m_pListSale->Count; i++)
{
NASaleClient* pTemp = (NASaleClient*)m_pListSale->Items[i];
if (pTemp&&pTemp->pBase&&pTemp->pBase->nJob&(1<<m_nFilterType[1]))
{
m_pJopFilterList->Add(pTemp);
}
}
}
}
if (m_nFilterType[2])
{
if (m_nFilterType[0]&&!m_nFilterType[1])
{
for (int i = 0; i < m_pTypeFilterList->Count; i++)
{
NASaleClient* pTemp = (NASaleClient*)m_pTypeFilterList->Items[i];
if (pTemp&&pTemp->pBase&&(pTemp->pBase->byLv > (m_nFilterType[2]-1)*10)&&(pTemp->pBase->byLv <= m_nFilterType[2]*10))
{
m_pRankFilterList->Add(pTemp);
}
}
}else if (m_nFilterType[1])
{
for (int i = 0; i < m_pJopFilterList->Count; i++)
{
NASaleClient* pTemp = (NASaleClient*)m_pJopFilterList->Items[i];
if (pTemp&&pTemp->pBase&&(pTemp->pBase->byLv > (m_nFilterType[2]-1)*10)&&(pTemp->pBase->byLv <= m_nFilterType[2]*10))
{
m_pRankFilterList->Add(pTemp);
}
}
}else
{
for (int i = 0; i < m_pListSale->Count; i++)
{
NASaleClient* pTemp = (NASaleClient*)m_pListSale->Items[i];
if (pTemp&&pTemp->pBase&&(pTemp->pBase->byLv > (m_nFilterType[2]-1)*10)&&(pTemp->pBase->byLv <= m_nFilterType[2]*10))
{
m_pRankFilterList->Add(pTemp);
}
}
}
}
if (!m_nFilterType[0]&&!m_nFilterType[1]&&!m_nFilterType[2])
{
Refresh(m_pListSale);
}else if (m_nFilterType[0]&&!m_nFilterType[1]&&!m_nFilterType[2])
{
Refresh(m_pTypeFilterList);
}else if (m_nFilterType[1]&&!m_nFilterType[2])
{
Refresh(m_pJopFilterList);
}else if (m_nFilterType[2])
{
Refresh(m_pRankFilterList);
}*/
}
/*void NASaleMenu::Refresh(xnList* pList)
{
m_pForm->pCFrame->SetFPCnt(pList->Count);
if (pList->Count)
{
char szTmp[256];
for (int i = 0; i < pList->Count; i++)
{
NASaleClient* pSale = (NASaleClient*)pList->Items[i];
m_pForm->pCFrame->GetFPComp(i,"mb")->SetVisible(false);
DComponent* pComp = m_pForm->pCFrame->GetFPComp(i,"icon1");
sprintf(szTmp,"item/%d.png",pSale->pBase->nSpr);
pComp->SetViewSpr(szTmp);
if(pSale->wItemCnt > 1)
pComp->SetCaptionEx("%d",2,pSale->wItemCnt);
else
pComp->SetCaption("",2);
char szTmp[32];
sprintf(szTmp,"MB_PZ%d.png",pSale->pBase->nStar+1);
pComp->SetAddSprByTag(szTmp,-2,-2,1,100,0,-1);
DWORD dwTime = pSale->dwEndSec-xnGetSecCount();
if (dwTime/3600)
m_pForm->pCFrame->GetFPComp(i,"dj")->SetCaptionEx("%d小时",1,dwTime/3600);
else
m_pForm->pCFrame->GetFPComp(i,"dj")->SetCaption("小于1小时",1);
m_pForm->pCFrame->GetFPComp(i,"lv")->SetCaptionEx("%d",1,pSale->pBase->byLv);
m_pForm->pCFrame->GetFPComp(i,"num")->SetCaptionEx("%d",1,pSale->nPrice);
m_pForm->pCFrame->GetFPComp(i,"pz")->SetCaption(pSale->pBase->szName,1);
m_pForm->pCFrame->GetFPComp(i,"pz")->SetSprColor(nItemClr[pSale->pBase->nStar][0],nItemClr[pSale->pBase->nStar][1],nItemClr[pSale->pBase->nStar][2]);
m_pForm->pCFrame->SetFPTag(i,pSale);
}
}
}*/
void NASaleMenu::OpenForm()
{
m_pForm->Open();
m_pForm->GetComponent("qy")->SetCaption(NASaleFilter1[m_nFilterType[0]],0);
m_pForm->GetComponent("zy")->SetCaption(NASaleFilter2[m_nFilterType[1]],0);
m_pForm->GetComponent("lvl")->SetCaption(NASaleFilter3[m_nFilterType[2]],0);
//SearchSellItems(0,0,0,0);
SearchSellItems(m_nFilterType[1],nFType[m_nFilterType[0]],m_nFilterType[2],0);
m_pForm->pCFrame->SetFPCnt(0);
m_pSelSale = NULL;
}
void NASaleMenu::OpenMySale()
{
m_nMySaleMoney = 0;
m_pMySaleForm->Open();
ViewMySales();
while(m_pListMine->Count)
delete (NASaleClient*)m_pListMine->Delete(0);
m_pMySaleForm->pCFrame->SetFPCnt(0);
m_pSelSale = NULL;
}
void NASaleMenu::Update()
{
if(m_pForm->bOpened == false && m_pMySaleForm->bOpened == false)
return;
m_pForm->GetComponent("left")->SetVisible(m_nPage>0);
m_pForm->GetComponent("right")->SetVisible(m_nPage<m_nMaxPage);
m_pForm->GetComponent("jinbiC4")->SetCaptionEx("%d/%d",1,m_nPage+1,m_nMaxPage+1);
m_pForm->GetComponent("jinbi")->SetCaptionEx("%d",1,pChar->m_dwMoney);
m_pMySaleForm->GetComponent("jinbi")->SetCaptionEx("%d",1,pChar->m_dwMoney);
m_pMySaleForm->GetComponent("total")->SetCaptionEx("%d",1,m_nMySaleMoney);
m_pMySaleForm->GetComponent("qc")->SetVisible(m_nMySaleMoney);
m_pMySaleForm->GetComponent("num1")->SetCaptionEx("%d/10",1,m_nMySaleCnt>0?m_nMySaleCnt:0);
}
void NASaleMenu::SearchSellItems( BYTE bJob, BYTE bType, BYTE bLvStep, int nStartPos )
{
BuildPacketEx(pPacket, NASALE, NA_SEARCH_SELL,buf,256);
SET_DATA(pSend, NASALE,NA_SEARCH_SELL,pPacket);
pSend->bJob = bJob;
pSend->bLvStep = bLvStep;
pSend->bType = bType;
pSend->nStartPos = nStartPos;
SendPacket(pPacket);
while(m_pListSale->Count)
delete (NASaleClient*)m_pListSale->Delete(0);
}
void NASaleMenu::ViewMySales()
{
SendCmd(NASALE,NA_MY_LIST);
}
void NASaleMenu::RequestSellItem( ItemObj* pItem, int nPrice, int nCount )
{
if(nPrice < 100)
{
pMainMenu->PopTipMsg("不支持过低的价格");
return;
}
if (nCount > pItem->GetVal(ITEM_AD_NUM))
{
pMainMenu->PopTipMsg("超过拥有数量");
return;
}
if (m_nMySaleCnt >= 10)
{
pMainMenu->PopTipMsg("寄售数量已满,无法再寄售。");
return;
}
BuildPacketEx(pPacket, NASALE, NA_SELL_ITEM_EX,buf,256);
SET_DATA(pSend, NASALE,NA_SELL_ITEM_EX,pPacket);
pSend->dwIndex = pItem->GetVal(ITEM_AD_ID);
pSend->nPrice = nPrice;
pSend->nCount = nCount;
SendPacket(pPacket);
pMainMenu->PopTipMsg("寄售成功!");
//SearchSellItems(0,0,0,0);
ViewMySales();
}
void NASaleMenu::RequestBuyItem()
{
if(!m_pSelSale)
return;
if(pChar->m_byLvl < 20)
{
pMainMenu->PopTipMsg("等级达到20级开启购买寄售行物品功能");
return;
}
if (m_pSelSale->nPrice > pChar->m_dwMoney)
{
pMainMenu->PopTipMsg("金币不足");
return;
}
BuildPacketEx(pPacket, NASALE, NA_BUY_ITEM,buf,256);
SET_DATA(pSend, NASALE,NA_BUY_ITEM,pPacket);
pSend->dwNAIndex = m_pSelSale->dwNAIndex;
pSend->wCnt = m_pSelSale->wItemCnt;
SendPacket(pPacket);
SearchSellItems(m_nFilterType[1],nFType[m_nFilterType[0]],m_nFilterType[2],0);
}
void NASaleMenu::RequestGetMyItem()
{
if(!m_pSelSale)
return;
if(m_pSelSale->byType == 8)
{
pMainMenu->PopTipMsg("已售物品不可取回");
return;
}
BuildPacketEx(pPacket, NASALE, NA_BUY_ITEM,buf,256);
SET_DATA(pSend, NASALE,NA_BUY_ITEM,pPacket);
pSend->dwNAIndex = m_pSelSale->dwNAIndex;
pSend->wCnt = 0;
SendPacket(pPacket);
ViewMySales();
}
static char* szFilterTypeTxt[] = {"qy","zy","lvl"};
static void CBFrameEvent(int nPos,char* szName,void* param)
{
NASaleFilterMenu* pMenu = (NASaleFilterMenu*)param;
if (strncmp (szName, "qy1",3) == 0&&pMenu->m_nFilterType >= 0&&pMenu->m_nFilterType<3)
{
pMainMenu->m_pNaSaleMenu->m_pForm->GetComponent(szFilterTypeTxt[pMenu->m_nFilterType])->SetCaption("",0);
switch(pMenu->m_nFilterType)
{
case 0:
{
pMainMenu->m_pNaSaleMenu->m_nFilterType[0] = nPos;
pMainMenu->m_pNaSaleMenu->m_pForm->GetComponent(szFilterTypeTxt[pMenu->m_nFilterType])->SetCaption(NASaleFilter1[nPos],0);
pMainMenu->m_pNaSaleMenu->FilterUpdata();
}
break;
case 1:
{
pMainMenu->m_pNaSaleMenu->m_nFilterType[1] = nPos;
pMainMenu->m_pNaSaleMenu->m_pForm->GetComponent(szFilterTypeTxt[pMenu->m_nFilterType])->SetCaption(NASaleFilter2[nPos],0);
pMainMenu->m_pNaSaleMenu->FilterUpdata();
}
break;
case 2:
{
pMainMenu->m_pNaSaleMenu->m_nFilterType[2] = nPos;
pMainMenu->m_pNaSaleMenu->m_pForm->GetComponent(szFilterTypeTxt[pMenu->m_nFilterType])->SetCaption(NASaleFilter3[nPos],0);
pMainMenu->m_pNaSaleMenu->FilterUpdata();
}
break;
}
}
pMenu->m_pForm->Close();
}
NASaleFilterMenu::NASaleFilterMenu()
{
m_pForm = pMainInterface->GetDForm("jishou3");
DComponent* pCompBase = m_pForm->GetComponent("d1");
m_pForm->pCFrame = new CCtrlFrame(pCompBase->nX,pCompBase->nY,pCompBase->nW,(pCompBase->nH+15)*5);
DComponent* ppCompPt[2];
ppCompPt[0] = m_pForm->GetComponent("qy1");
ppCompPt[1] = m_pForm->GetComponent("x1");
m_pForm->pCFrame->InitFParts(pCompBase,ppCompPt,2);
m_pForm->pCFrame->nSpace = 15;
m_pForm->pCFrame->nDisStep = pCompBase->nH+15;
m_pForm->pCFrame->SetEventEx(CBFrameEvent,this);
m_nFilterType = -1;
}
NASaleFilterMenu::~NASaleFilterMenu()
{
}
void NASaleFilterMenu::OpenForm(int nType,int nX,int nY)
{
m_nFilterType = nType;
m_pForm->SetPos(nX,nY-125);
CCtrlFrame* pFrame = m_pForm->pCFrame;
m_pForm->Open();
switch(nType)
{
case 0:
{
pFrame->SetFPCnt(8);
for (int i = 0; i < 8; i++)
{
pFrame->GetFPComp(i,"qy1")->SetCaptionEx("%s",1,NASaleFilter1[i]);
}
}
break;
case 1:
{
pFrame->SetFPCnt(5);
for (int i = 0; i < 5; i++)
{
pFrame->GetFPComp(i,"qy1")->SetCaptionEx("%s",1,NASaleFilter2[i]);
}
}
break;
case 2:
{
pFrame->SetFPCnt(11);
for (int i = 0; i < 11; i++)
{
pFrame->GetFPComp(i,"qy1")->SetCaptionEx("%s",1,NASaleFilter3[i]);
}
}
break;
}
}
void fun_cbInputSaleNums(int nResult,void * param)
{
if (nResult < 0)
nResult = 0;
pMainMenu->m_pNASalePriceMenu->m_nNums = nResult;
pMainMenu->m_pNASalePriceMenu->m_pForm->GetComponent("sl")->SetCaptionEx("%d",1,nResult);
}
void InputSaleNums(InterfaceEvent* pEvent, void* param)
{
if (pEvent->event != INTERFACE_EVENT_CLICK)
return;
pMainMenu->m_pGetNumMenu->Open(fun_cbInputSaleNums,99999999,0,NULL);
}
void fun_cbInputSalePrice(int nResult,void * param)
{
if (nResult < 0)
nResult = 0;
pMainMenu->m_pNASalePriceMenu->m_nPrice = nResult;
pMainMenu->m_pNASalePriceMenu->m_pForm->GetComponent("jg")->SetCaptionEx("%d",1,nResult);
}
void InputSalePrice(InterfaceEvent* pEvent, void* param)
{
if (pEvent->event != INTERFACE_EVENT_CLICK)
return;
pMainMenu->m_pGetNumMenu->Open(fun_cbInputSalePrice,99999999,0,NULL);
}
void SetNaSaleItem(InterfaceEvent* pEvent, void* param)
{
if (pEvent->event != INTERFACE_EVENT_CLICK)
return;
NASalePriceMenu* pMenu = (NASalePriceMenu*)param;
if (pMenu)
{
if (pMenu->m_nNums < 1)
{
pMainMenu->PopTipMsg("请输入数量");
return;
}
if (pMenu->m_nPrice < 100)
{
pMainMenu->PopTipMsg("不支持过低价格");
return;
}
if (pMenu->m_pSaleItem)
{
if (pMenu->m_nNums > pMenu->m_pSaleItem->GetVal(ITEM_AD_NUM))
{
pMainMenu->PopTipMsg("超过物品拥有数量");
return;
}
if (pMenu->m_nNums > pMenu->m_pSaleItem->pItemBase->nNum)
{
pMainMenu->PopTipMsg("超过物品堆叠数量");
return;
}
pMainMenu->m_pNaSaleMenu->RequestSellItem(pMenu->m_pSaleItem,pMenu->m_nPrice,pMenu->m_nNums);
}else
pMainMenu->PopTipMsg("寄售失败");
pMainMenu->ShowNetWaiting();
pMenu->Close();
}
}
NASalePriceMenu::NASalePriceMenu()
{
m_pForm = pMainInterface->GetDForm("xuanjs");
m_pForm->GetComponent("sl")->SetEvent(InputSaleNums);
m_pForm->GetComponent("jg")->SetEvent(InputSalePrice);
m_pForm->GetComponent("js")->SetEvent(SetNaSaleItem,this);
m_nNums = 0;
m_nPrice = 0;
m_pSaleItem = NULL;
}
NASalePriceMenu::~NASalePriceMenu()
{
}
extern char* szItemType[ITEMTYPE_MAX];
extern char* szEquipSlot[EQUIP_MAX];
extern void ChangeJobToTxt(char* sztxt,int nJob);
void NASalePriceMenu::OpenForm(ItemObj* pObj)
{
m_pSaleItem = pObj;
if (pObj)
{
SetItemToDCom(m_pForm->GetComponent("icon"),pObj->pItemBase->nTypeID);
m_pForm->GetComponent("name")->SetCaption(pObj->pItemBase->szName,0);
m_pForm->GetComponent("name")->SetSprColor(nItemColor[pObj->pItemBase->nStar][0],nItemColor[pObj->pItemBase->nStar][1],nItemColor[pObj->pItemBase->nStar][2]);
if (pObj->pItemBase->byType == ITEMTYPE_EQUIP)
m_pForm->GetComponent("buwei")->SetCaption(szEquipSlot[pObj->pItemBase->bySlot],0);
else
m_pForm->GetComponent("buwei")->SetCaption(szItemType[pObj->pItemBase->byType],0);
m_pForm->GetComponent("lv")->SetCaptionEx("使用等级:%d",0,pObj->pItemBase->byLv);
char sztxt[32];
ChangeJobToTxt(sztxt,pObj->pItemBase->nJob);
m_pForm->GetComponent("zhiye")->SetCaptionEx("职业限制:%s",0,sztxt);
bool bLimit = pObj->pItemBase->nJob&(1<<pChar->m_byJob);
m_pForm->GetComponent("zhiye")->SetSprColor(bLimit?255:nItemLimitColor[0][0],bLimit?255:nItemLimitColor[0][1],bLimit?255:nItemLimitColor[0][2]);
if (pObj->pItemBase->nNum > 1)
m_nNums = pObj->GetVal(ITEM_AD_NUM);
else
m_nNums = 1;
m_nPrice = 0;
m_pForm->GetComponent("sl")->SetCaptionEx("%d",1,m_nNums);
m_pForm->GetComponent("jg")->SetCaptionEx("%d",1,m_nPrice);
m_pForm->Open();
}
}
void NASalePriceMenu::Close()
{
m_nPrice = 0;
m_nNums = 0;
m_pSaleItem = NULL;
m_pForm->Close();
} | [
"85385215go@163.com"
] | 85385215go@163.com |
978375973155eedb14d34b3e6a58f0bf34e05932 | b8f14bbbfed728ce879e3cc6a0b33cfdfe426e7a | /Nachos3/nachos-4.0/code/threads/scheduler.cc | 0a961a3fc36ff8fdbe9bdc1f7dada02d1aecf99a | [] | no_license | miamirobin/2018Fall_OperatingSystem | 0ccf2b17cd640f8c86d3b8ff810eafa5f4f6efd5 | e55cfe39159fa79ea0008c4d5017208ad8381480 | refs/heads/master | 2020-04-17T21:09:42.212528 | 2019-01-22T06:23:58 | 2019-01-22T06:23:58 | 166,936,627 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,111 | cc | // scheduler.cc
// Routines to choose the next thread to run, and to dispatch to
// that thread.
//
// These routines assume that interrupts are already disabled.
// If interrupts are disabled, we can assume mutual exclusion
// (since we are on a uniprocessor).
//
// NOTE: We can't use Locks to provide mutual exclusion here, since
// if we needed to wait for a lock, and the lock was busy, we would
// end up calling FindNextToRun(), and that would put us in an
// infinite loop.
//
// Very simple implementation -- no priorities, straight FIFO.
// Might need to be improved in later assignments.
//
// Copyright (c) 1992-1996 The Regents of the University of California.
// All rights reserved. See copyright.h for copyright notice and limitation
// of liability and disclaimer of warranty provisions.
#include "copyright.h"
#include "debug.h"
#include "scheduler.h"
#include "main.h"
int SJFCompare(Thread *a, Thread *b) {
if(a->getBurstTime() == b->getBurstTime())
return 0;
return a->getBurstTime() > b->getBurstTime() ? 1 : -1;
}
int PriorityCompare(Thread *a, Thread *b) {
if(a->getPriority() == b->getPriority())
return 0;
return a->getPriority() > b->getPriority() ? 1 : -1;
}
int FIFOCompare(Thread *a, Thread *b) {
return 1;
}
//----------------------------------------------------------------------
// Scheduler::Scheduler
// Initialize the list of ready but not running threads.
// Initially, no ready threads.
//----------------------------------------------------------------------
Scheduler::Scheduler()
{
schedulerType = RR;
Scheduler(type);
//readyList = new List<Thread *>;
//toBeDestroyed = NULL;
}
Scheduler::Scheduler(SchedulerType type)
{
schedulerType = type;
switch(schedulerType) {
case RR:
readyList = new List<Thread *>;
break;
case SJF:
readyList = new SortedList<Thread *>(SJFCompare);
break;
case Priority:
readyList = new SortedList<Thread *>(PriorityCompare);
break;
case FIFO:
readyList = new SortedList<Thread *>(FIFOCompare);
}
toBeDestroyed = NULL;
}
//----------------------------------------------------------------------
// Scheduler::~Scheduler
// De-allocate the list of ready threads.
//----------------------------------------------------------------------
Scheduler::~Scheduler()
{
delete readyList;
}
//----------------------------------------------------------------------
// Scheduler::ReadyToRun
// Mark a thread as ready, but not running.
// Put it on the ready list, for later scheduling onto the CPU.
//
// "thread" is the thread to be put on the ready list.
//----------------------------------------------------------------------
void
Scheduler::ReadyToRun (Thread *thread)
{
ASSERT(kernel->interrupt->getLevel() == IntOff);
DEBUG(dbgThread, "Putting thread on ready list: " << thread->getName());
thread->setStatus(READY);
readyList->Append(thread);
}
//----------------------------------------------------------------------
// Scheduler::FindNextToRun
// Return the next thread to be scheduled onto the CPU.
// If there are no ready threads, return NULL.
// Side effect:
// Thread is removed from the ready list.
//----------------------------------------------------------------------
Thread *
Scheduler::FindNextToRun ()
{
ASSERT(kernel->interrupt->getLevel() == IntOff);
if (readyList->IsEmpty()) {
return NULL;
} else {
return readyList->RemoveFront();
}
}
//----------------------------------------------------------------------
// Scheduler::Run
// Dispatch the CPU to nextThread. Save the state of the old thread,
// and load the state of the new thread, by calling the machine
// dependent context switch routine, SWITCH.
//
// Note: we assume the state of the previously running thread has
// already been changed from running to blocked or ready (depending).
// Side effect:
// The global variable kernel->currentThread becomes nextThread.
//
// "nextThread" is the thread to be put into the CPU.
// "finishing" is set if the current thread is to be deleted
// once we're no longer running on its stack
// (when the next thread starts running)
//----------------------------------------------------------------------
void
Scheduler::Run (Thread *nextThread, bool finishing)
{
Thread *oldThread = kernel->currentThread;
// cout << "Current Thread" <<oldThread->getName() << " Next Thread"<<nextThread->getName()<<endl;
ASSERT(kernel->interrupt->getLevel() == IntOff);
if (finishing) { // mark that we need to delete current thread
ASSERT(toBeDestroyed == NULL);
toBeDestroyed = oldThread;
}
#ifdef USER_PROGRAM // ignore until running user programs
if (oldThread->space != NULL) { // if this thread is a user program,
oldThread->SaveUserState(); // save the user's CPU registers
oldThread->space->SaveState();
}
#endif
oldThread->CheckOverflow(); // check if the old thread
// had an undetected stack overflow
kernel->currentThread = nextThread; // switch to the next thread
nextThread->setStatus(RUNNING); // nextThread is now running
DEBUG(dbgThread, "Switching from: " << oldThread->getName() << " to: " << nextThread->getName());
// This is a machine-dependent assembly language routine defined
// in switch.s. You may have to think
// a bit to figure out what happens after this, both from the point
// of view of the thread and from the perspective of the "outside world".
SWITCH(oldThread, nextThread);
// we're back, running oldThread
// interrupts are off when we return from switch!
ASSERT(kernel->interrupt->getLevel() == IntOff);
DEBUG(dbgThread, "Now in thread: " << oldThread->getName());
CheckToBeDestroyed(); // check if thread we were running
// before this one has finished
// and needs to be cleaned up
#ifdef USER_PROGRAM
if (oldThread->space != NULL) { // if there is an address space
oldThread->RestoreUserState(); // to restore, do it.
oldThread->space->RestoreState();
}
#endif
}
//----------------------------------------------------------------------
// Scheduler::CheckToBeDestroyed
// If the old thread gave up the processor because it was finishing,
// we need to delete its carcass. Note we cannot delete the thread
// before now (for example, in Thread::Finish()), because up to this
// point, we were still running on the old thread's stack!
//----------------------------------------------------------------------
void
Scheduler::CheckToBeDestroyed()
{
if (toBeDestroyed != NULL) {
delete toBeDestroyed;
toBeDestroyed = NULL;
}
}
//----------------------------------------------------------------------
// Scheduler::Print
// Print the scheduler state -- in other words, the contents of
// the ready list. For debugging.
//----------------------------------------------------------------------
void
Scheduler::Print()
{
cout << "Ready list contents:\n";
readyList->Apply(ThreadPrint);
}
| [
"miamirobin@gmail.com"
] | miamirobin@gmail.com |
cd0d8a35f0b18560a9018fc7b4904e0bced8194c | 407c96d904cf46a5f95217e44071f999783698a3 | /src/MultiversX/Serialization.h | 9105f82257748fe0e28eca5746a692ade233a271 | [
"BSD-3-Clause",
"LicenseRef-scancode-protobuf",
"LGPL-2.1-only",
"Swift-exception",
"MIT",
"BSL-1.0",
"Apache-2.0"
] | permissive | trustwallet/wallet-core | dfeb276ddf1e3faf46c82f0a0cda2551e9c873f6 | 0c8e2e58aa8eb1360e4a6b03df91fb2de97e3caa | refs/heads/master | 2023-08-21T11:58:43.983035 | 2023-08-18T10:51:13 | 2023-08-18T10:51:13 | 170,738,310 | 2,311 | 1,283 | Apache-2.0 | 2023-09-08T11:26:39 | 2019-02-14T18:25:54 | C++ | UTF-8 | C++ | false | false | 619 | h | // Copyright © 2017-2023 Trust Wallet.
//
// This file is part of Trust. The full Trust copyright notice, including
// terms governing use, modification, and redistribution, is contained in the
// file LICENSE at the root of the source code distribution tree.
#pragma once
#include "Data.h"
#include "Transaction.h"
#include <nlohmann/json.hpp>
namespace TW::MultiversX {
using string = std::string;
using json = nlohmann::json;
string serializeTransaction(const Transaction& transaction);
string serializeSignedTransaction(const Transaction& transaction, string encodedSignature);
} // namespace TW::MultiversX
| [
"noreply@github.com"
] | noreply@github.com |
72e9b4624acaf191e1d5b56c376cafc4f7731c1a | 780a48c568afd83c74fe5666e2c890b0a697cd64 | /Dice.cpp | 37ede85327dbb983651310a735c6ae3c2de083b2 | [] | no_license | AliLashkari3375/Tamrin1- | aec4474e928b6e6df6c1f2ad6962694b57f12fe0 | c8abe711d9eb4d7d8d6ed67c5c5bab04fbdcae9b | refs/heads/main | 2023-08-15T18:29:59.601400 | 2021-10-15T16:13:20 | 2021-10-15T16:13:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 594 | cpp | // Dice.cpp : This file contains the 'main' function. Program execution begins and ends there.
//Ali lashkari
#include <iostream>
#include<random>
using namespace std;
int main()
{
int a, r;
srand(time(0));
for (int i = 0; i < 10; i++)
{
r = rand() % 6 + 1;
cout << r << endl;
if (r == 6)
{
for (int i = 0; i < 2; i++)
{
cout << "**Award**" << "\t";
r = rand() % 6 + 1;
cout << r << endl;
}
}
}
return 0;
}//Ali lashkari | [
"noreply@github.com"
] | noreply@github.com |
6086ef720abb99070a7e6aaaf922efd8a51840fb | a14ae93eee8f0fed85ef82f5d6e49e169e682f41 | /boneyard/examples/mune34.cpp | 0a82e5b8f24a61ce4e332faf6c174749d98e33de | [
"MIT"
] | permissive | rdpoor/mu | e860e8a38b85330c95b956166b8daaf2ed1b4c3d | 5cc59c55cb9878aa8d6ff6ff8d058d3bb3274f41 | refs/heads/master | 2020-12-24T14:36:41.651325 | 2016-11-07T05:58:00 | 2016-11-07T05:58:00 | 18,759,872 | 0 | 1 | null | 2015-01-23T23:39:29 | 2014-04-14T12:32:50 | C++ | UTF-8 | C++ | false | false | 9,847 | cpp | /*
* Sketch for a strummed, fretted instrument with a fixed number of
* strings. See also mune32 and mune23 for an earlier version.
*
* TODO:
*
* - Code up the intro to TNVM using this instrument. See also
* https://www.facebook.com/photo.php?v=10201180856748581
* (Thank you Bradley...)
*
* - per-string output busses and/or per-string panning. It can sound
* grand when the strings are panned across the stero space.
*
* - per-string de-tuning
*
* - Cross-fades. I currently use simple cropping to transition from
* one sound to the next, but (predictably) this causes clicks. I
* need SpliceSP, a SampleProcessor with a source, start time and end
* time and fade time. It fades in at start time and fades out and
* end time.
*
* - Mixing many streams. I currently use AddSP to mix an arbitrary
* number of streams together. This works, but if it becomes bogged
* down on a more complex mix, enhance AddSP (or create MixSP) that
* keeps sources sorted by start time and only process sources that
* are actively contributing to the output.
*
* Notes on the original Lolita Nation recording:
* -- 27074 samples per quarter note
*/
#include "mu.h"
#include "add_sp.h"
#include "constant_sp.h"
#include "crop_sp.h"
#include "delay_sp.h"
#include "file_read_sp.h"
#include "loop_sp.h"
#include "multi_source_sp.h"
#include "multiply_sp.h"
#include "null_sp.h"
#include "rt_player.h"
#include "single_source_sp.h"
#include "tick_utils.h"
#include <map>
// ================================================================
// class SpliceSP : public mu::SingleSourceSP<SpliceSP> {
// for now, delgate to mu::CropSP
// };
// ================================================================
// class MixSP : public mu::MultiSourceSP<MixSP> {
// for now, delegate to mu::AddSP
// };
// ================================================================
// SPSet maps an integer pitch number to a SampleProcessor that
// produces that pitch. Its subclass (FileReadSPSet) maps from a
// pitch number to a sound file.
class SPSet {
public:
SPSet( void ) {
}
~SPSet( void ) {
}
virtual mu::SampleProcessor *findSP(int pitch) = 0;
protected:
mu::NullSP null_sp_;
}; // class SPSet
class FileReadSPSet : public SPSet {
public:
mu::SampleProcessor *findSP(int pitch) {
if (cache_.find(pitch) == cache_.end()) {
std::string file_name = makeFileName(pitch);
mu::FileReadSP *frs = new mu::FileReadSP();
frs->fileName(file_name).doNormalize(true);
cache_[pitch] = frs;
}
return cache_[pitch];
}
std::string getDirectoryName( void ) { return directory_name_; }
FileReadSPSet& setDirectoryName(std::string directory_name) {
directory_name_ = directory_name;
return *this;
}
protected:
std::string makeFileName(int pitch) {
std::stringstream ss;
ss << directory_name_ << pitch << ".wav";
return ss.str();
}
std::string directory_name_;
std::map<int, mu::FileReadSP *> cache_;
}; // class FileReadSPSet
// ================================================================
class FrettedString {
public:
static const int kHammer = 1000;
static const int kDamped = -1;
static const int kSustain = -2;
FrettedString( int open_pitch, mu::AddSP *output, FileReadSPSet *sp_set ) {
open_pitch_ = open_pitch;
output_ = output;
sp_set_ = sp_set;
curr_sp_ = NULL;
}
FrettedString& pluck(mu::Tick start, int fret) {
if (fret == kSustain) {
return *this;
} else if (fret == kDamped) {
return emitDamped(start);
} else if (fret >= kHammer) {
return emitHammer(start, findSP(fret - kHammer));
} else {
return emitPluck(start, findSP(fret));
}
}
protected:
// emit the previously started note
FrettedString &emitDamped(mu::Tick start) {
emit(start);
curr_sp_ = NULL;
return *this;
}
// emit the previously started note, start a new note
// that has the same attack time as the previous note,
// but cropped to start at the current start time.
FrettedString &emitHammer(mu::Tick start, mu::SampleProcessor *sp) {
if (curr_sp_ == NULL) {
// special case: hammer on from no note is same as plucking
return emitPluck(start, sp);
}
emit(start);
hammer_time_ = start;
curr_sp_ = sp;
return *this;
}
// emit previously started note and start a new note.
FrettedString &emitPluck(mu::Tick start, mu::SampleProcessor *sp) {
emit(start);
attack_time_ = hammer_time_ = start;
curr_sp_ = sp;
return *this;
}
FrettedString &emit(mu::Tick start) {
if (curr_sp_ != NULL) {
mu::CropSP *cropSP = &(new mu::CropSP)->
setSource(curr_sp_).
setStart(hammer_time_ - attack_time_).
setEnd(start - attack_time_);
mu::DelaySP *delaySP = &(new mu::DelaySP)->
setSource(cropSP).
setDelay(attack_time_);
output_->addSource(delaySP);
}
return *this;
}
mu::SampleProcessor *findSP(int fret) {
mu::SampleProcessor *sp = sp_set_->findSP(open_pitch_ + fret);
return (sp == NULL) ? &null_sp_ : sp;
}
int open_pitch_;
FileReadSPSet *sp_set_;
mu::AddSP *output_;
mu::NullSP null_sp_;
mu::SampleProcessor *curr_sp_; // sample source
mu::Tick attack_time_; // time of attack
mu::Tick hammer_time_; // time of hammer on / hammer off
};
// ================================================================
class FrettedInstrument {
public:
FrettedInstrument( void ) {
}
~FrettedInstrument( void ) {
}
FileReadSPSet *getSPSet() { return stream_set_; }
FrettedInstrument& setSPSet( FileReadSPSet *stream_set ) { stream_set_ = stream_set; return *this; }
mu::AddSP *getOutput() {
return &output_;
}
FrettedInstrument& addString(int open_pitch) {
strings_.push_back(new FrettedString(open_pitch, getOutput(), getSPSet()));
return *this;
}
/*
* Generate a strum. If rate is positive, it's a downstroke. If
* negative, it's an upstroke.
*
* Frets specifies the fret number (including 0 for open), and
* recognizes the following special values:
*
* negative pitch -- change pitch without re-attack
* FrettedInstrument::kDamped -- string does not play
* FrettedInstrument::kSustain -- prev note allowed to ring.
*
* nb: \c frets must contain exactly one item per string.
*/
FrettedInstrument& strum(mu::Tick start, int frets[], mu::Tick rate) {
if (rate < 0) {
start = start + (1-strings_.size()) * rate;
}
for (long int i=0; i<strings_.size(); i++) {
FrettedString *s = strings_.at(i);
s->pluck(start + (i * rate), frets[i]);
}
return *this;
}
FrettedInstrument& damp(mu::Tick end) {
for (long int i=0; i<strings_.size(); i++) {
FrettedString *s = strings_.at(i);
s->pluck(end, FrettedString::kDamped);
}
return *this;
}
protected:
std::vector<FrettedString *> strings_;
mu::AddSP output_;
FileReadSPSet *stream_set_;
};
// ================================================================
int main() {
mu::RtPlayer player;
FileReadSPSet file_read_sp_set;
FrettedInstrument guit;
file_read_sp_set.setDirectoryName("/Users/r/Projects/Mu/SoundSets/A/");
guit.setSPSet(&file_read_sp_set);
// 6 string standard tuning
#define TRANSPOSE 1
guit.addString(40 + TRANSPOSE); // E2
guit.addString(45 + TRANSPOSE); // A2
guit.addString(50 + TRANSPOSE); // D3
guit.addString(55 + TRANSPOSE); // G3
guit.addString(59 + TRANSPOSE); // B3
guit.addString(64 + TRANSPOSE); // E4
#define T_STROKE (44100 * 0.01)
#define TQ (44100 * 0.7)
#define TE (TQ/2)
#define TS (TQ/4)
mu::Tick t = 100;
guit.strum(t, (int []){2, 4, 4, 3, 2, 2}, T_STROKE);
t += 3*TS;
guit.strum(t, (int []){2, 4, 4, 3, 2, 2}, -T_STROKE);
t += 1*TS;
guit.strum(t, (int []){2, 4, 4, 3, 2, 2}, T_STROKE);
t += 2*TS;
guit.strum(t, (int []){FrettedString::kDamped, 0, 4, 4, 4, 2}, T_STROKE);
t += 1*TS;
guit.strum(t, (int []){FrettedString::kDamped,
FrettedString::kHammer+2,
FrettedString::kSustain,
FrettedString::kSustain,
FrettedString::kSustain,
FrettedString::kSustain}, T_STROKE);
t += 2*TS;
guit.strum(t, (int []){FrettedString::kDamped, 2, 4, 4, 4, 2}, -T_STROKE);
t += 1*TS;
guit.strum(t, (int []){FrettedString::kDamped, 2, 4, 4, 4, 2}, T_STROKE);
t += 1*TS;
guit.strum(t, (int []){FrettedString::kDamped, 2, 4, 4, 4, 2}, -T_STROKE);
t += 1*TS;
guit.strum(t, (int []){FrettedString::kDamped, 2, 4, 4, 4, 2}, T_STROKE);
t += 4*TS;
guit.strum(t, (int []){0, 2, 2, 1, 0, 0}, T_STROKE);
t += 3*TS;
guit.strum(t, (int []){0, 2, 2, 1, 0, 0}, -T_STROKE);
t += 1*TS;
guit.strum(t, (int []){0, 2, 2, 1, 0, 0}, T_STROKE);
t += 2*TS;
guit.strum(t, (int []){FrettedString::kDamped, 4, 6, 6, 6, 4}, T_STROKE);
t += 3*TS;
guit.strum(t, (int []){FrettedString::kDamped, 4, 6, 6, 6, 4}, -T_STROKE);
t += 1*TS;
guit.strum(t, (int []){FrettedString::kDamped, 4, 6, 6, 6, 4}, T_STROKE);
t += 1*TS;
guit.strum(t, (int []){FrettedString::kDamped, 4, 6, 6, 6, 4}, -T_STROKE);
t += 1*TS;
guit.strum(t, (int []){FrettedString::kDamped, 4, 6, 6, 6, 4}, T_STROKE);
t += 4*TS;
guit.damp(t); // final stop
mu::LoopSP loop_sp;
mu::MultiplySP multiply_sp;
mu::ConstantSP constant_sp;
// add loop and gain control
loop_sp.setSource(guit.getOutput()).setLoopDuration(8*TQ);
constant_sp.setValue(0.25);
multiply_sp.addSource(&loop_sp);
multiply_sp.addSource(&constant_sp);
player.setSource(&multiply_sp);
player.start();
fprintf(stderr, "Type [return] to quit:"); getchar();
player.stop();
// std::cout << guit.getOutput()->inspect();
}
| [
"rdpoor@gmail.com"
] | rdpoor@gmail.com |
7908b7882dbd7cf1009e55084a58f627511f2b91 | daffb5f31e4f2e1690f4725fad5df9f2382416e3 | /AtCoder/DP_Edu/Y/main.cpp | a79e6a7959a4236fd600f966ea6ed6c6d6b4ddf0 | [] | no_license | cuom1999/CP | 1ad159819fedf21a94c102d7089d12d22bb6bfa2 | 4e37e0d35c91545b3d916bfa1de5076a18f29a75 | refs/heads/master | 2023-06-02T01:57:00.252932 | 2021-06-21T03:41:34 | 2021-06-21T03:41:34 | 242,620,572 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,014 | cpp | #include <bits/stdc++.h>
#define ld long double
#define sf scanf
#define pf printf
#define pb push_back
#define mp make_pair
#define PI ( acos(-1.0) )
#define IN freopen("input.txt","r",stdin)
#define OUT freopen("output.txt","w",stdout)
#define FOR(i,a,b) for(int i=a ; i<=b ; i++)
#define FORD(i,a,b) for(int i=a ; i>=b ; i--)
#define INF 1000000000
#define ll long long int
#define eps (1e-8)
#define sq(x) ( (x)*(x) )
#define all(x) x.begin(),x.end()
#define flog2(n) 64 - __builtin_clzll(n) - 1
#define popcnt(n) __builtin_popcountll(n)
using namespace std;
typedef pair < int, int > pii;
typedef pair < ll, ll > pll;
const ll K = 1e9 + 7;
ll d[3005], gt[200005], rev[200005];
ll mu(ll a, ll n) {
if (n == 0) return 1;
ll q = mu(a, n / 2);
if (n % 2 == 0) return q * q % K;
return q * q % K * a % K;
}
ll combi(int n, int k) {
if (n < k || k < 0) return 0;
return gt[n] * rev[n - k] % K * rev[k] % K;
}
ll numPaths(int r1, int c1, int r2, int c2) {
return combi(r2 - r1 + c2 - c1, r2 - r1);
}
struct Data {
int r, c;
Data(int __r = 0, int __c = 0): r(__r), c(__c) {}
bool operator < (const Data & x) {
if (r != x.r) return r < x.r;
return c < x.c;
}
};
vector<Data> data;
int main()
{IN;
ios::sync_with_stdio(0);
cin.tie(NULL);
gt[0] = rev[0] = 1;
FOR (i, 1, 200000) {
gt[i] = gt[i - 1] * 1ll * i % K;
rev[i] = mu(gt[i], K - 2);
}
int H, W;
cin >> H >> W;
int n;
cin >> n;
FOR (i, 1, n) {
int r, c;
cin >> r >> c;
data.pb(Data(r, c));
}
sort(all(data));
ll res = numPaths(1, 1, H, W);
FOR (i, 0, n - 1) {
d[i] = numPaths(1, 1, data[i].r, data[i].c);
FOR (j, 0, n - 1) {
if (i == j) continue;
d[i] = (d[i] - d[j] * numPaths(data[j].r, data[j].c, data[i].r, data[i].c) % K + K) % K;
}
res = (res - d[i] * numPaths(data[i].r, data[i].c, H, W) % K + K) % K;
//cout << d[i] << " ";
}
//cout << endl;
cout << res << endl;
return 0;
} | [
"lephuocdinh99@gmail.com"
] | lephuocdinh99@gmail.com |
5df87bb485091ba399294c932a00252d6ec73010 | 5468b90e7d3718318e052c023776eb625ebb93d7 | /POO/Prova 3/questao2.cpp | 52db365bf1a9ba6fc6f794d75f3b1886e887207d | [
"GPL-3.0-only",
"Apache-2.0"
] | permissive | VGasparini/BCC | a708e3b79cb3d57733d749eab4a009c65bd7d404 | 5a7f635182b948069edd52a0f817fdb90bae366c | refs/heads/main | 2023-06-08T08:56:59.620081 | 2021-06-28T16:51:56 | 2021-06-28T16:51:56 | 308,941,940 | 10 | 2 | Apache-2.0 | 2021-06-28T16:51:57 | 2020-10-31T17:59:01 | Java | UTF-8 | C++ | false | false | 2,101 | cpp | // Vinicius Gasparini | Prova 3 - Questão 2
#include <bits/stdc++.h>
using namespace std;
class Complex {
private:
float a;
float b;
public:
Complex(float n, float img){
this->a = n;
this->b = img;
}
Complex(float n){
this->a = n;
this->b = 0;
}
float getReal(){
return this->a;
}
float getImag(){
return this->b;
}
void setReal(float t){
this->a = t;
}
void setImag(float t){
this->b = t;
}
void show(){
cout << this->getReal() << " ± " << this->getImag() << "i" << endl;
}
Complex operator* (Complex n2){
Complex *r = new Complex(this->getReal() * n2.getReal() - this->getImag() * n2.getImag(),
this->getReal() * n2.getImag() + this->getImag() * n2.getReal());
return *r;
}
float operator% (float c){
Complex *r = this;
return (*r).getReal() / c;
}
Complex operator- (){
Complex *r = new Complex(-this->getReal(), - this->getImag());
return *r;
}
Complex operator! (){
float u,w;
u = this->getImag();
w = this->getReal();
this->setReal(u);
this->setImag(w);
}
};
int main(){
Complex *n1 = new Complex(1); // Questão b
Complex *n2 = new Complex(10,5); // Questão c
cout << (*n1).getReal() << endl; // Questão d
cout << (*n2).getReal() << " " << (*n2).getImag() << endl;
(*n1).show(); // Questão e
(*n2).show();
((*n1) * (*n2)).show(); // Questão f
cout << (*n2) % 2 << endl; // Questão g
(-(*n2)).show(); // Questão h
!(*n2); // Questão i
((*n2)).show();
}
| [
"viniciuszeiko@gmail.com"
] | viniciuszeiko@gmail.com |
0100e07f50b44594a88555e21458a0a11c154294 | 9586f8160aeaf38abe766fc880a9af92a45c358c | /v1/implementation/Task 7/Main.cpp | 3dc5502517104928309caaae3e3ab419ead0c5f7 | [] | no_license | nithinr07/Data-Processing-ToolKit | 6218cf61667d7588e40cbe0e24c764c6a25112ad | 09dae23ddd5d9089a2a4c649a45dea695a9621ad | refs/heads/master | 2020-04-08T00:51:19.164132 | 2018-12-06T06:28:04 | 2018-12-06T06:28:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,412 | cpp | #include<iostream>
#include <fstream>
#include <sstream>
#include <iterator>
#include "ReorderingSSM.h"
using namespace std;
template<typename T>
ostream& operator<<(ostream& out,vector<T> const& v){
for(int i=0;i<v.size();i++)out<<v[i]<<' ';return out;}
vector<double> CommaSeparation(string init){
stringstream ss(init);
vector<double> token;
double i;
while(ss >> i){
token.push_back(i);
if(ss.peek() == ',') ss.ignore();
}
return token;
}
int main(){
int num_rows;
vector<vector<double>> data;
// for(int i=0;i<num_rows;i++){
// vector <double> datai;
// for(int j=0;j<num_rows;j++) datai.push_back(0.8);
// data.push_back(datai);
// }
// data[0] = {0.0,0.78,0.79,0.8,0.23};
// data[1] = {0.9,0.0,0.43,0.771,0.702};
// data[2] = {0.82,0.0,0.6,0.79,0.34};
// data[3] = {0.8,0.8,0.8,0.0,0.8};
// data[4] = {0.54,0.97,0.12,0.78,0.0};
string line;
ifstream input;
input.open("../Task1/similarity.csv");
if(input.is_open()){
while(getline(input, line)) {
data.push_back(CommaSeparation(line));
}
input.close();
}
else{
cout << "Unable to open file" << endl;
exit(0);
}
SymmetricSquareMatrix matrix(data);
ReorderingSSM m(matrix);
vector<int> r = m.ReverseCuthillMckee();
cout << r << endl;
return 0;
} | [
"ronakvipul.doshi@iiitb.org"
] | ronakvipul.doshi@iiitb.org |
d50fba8c926de032f5c13c3b9fb74a531545578d | 412bf1c63d44a73b7881f1e4e9c2c3dab41dc673 | /src/masternodeconfig.h | 1585dc97aa9ddf2db42fe75ff37c661d5959f914 | [
"MIT"
] | permissive | NasdaCash/NSDC | 72ecdd22492d4f75a6b8a80a2ff8e2d2632600d7 | 2fcbb7075b5c4e6eaaf9419cdaa0cdbf75915e23 | refs/heads/master | 2022-12-15T21:53:37.247070 | 2020-09-18T02:59:52 | 2020-09-18T02:59:52 | 295,922,583 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,757 | h | // Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2019 The PIVX developers
// Copyright (c) 2020 The Nasda Cash developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef SRC_MASTERNODECONFIG_H_
#define SRC_MASTERNODECONFIG_H_
#include "fs.h"
#include <string>
#include <vector>
class CMasternodeConfig;
extern CMasternodeConfig masternodeConfig;
class CMasternodeConfig
{
public:
class CMasternodeEntry
{
private:
std::string alias;
std::string ip;
std::string privKey;
std::string txHash;
std::string outputIndex;
public:
CMasternodeEntry(std::string alias, std::string ip, std::string privKey, std::string txHash, std::string outputIndex)
{
this->alias = alias;
this->ip = ip;
this->privKey = privKey;
this->txHash = txHash;
this->outputIndex = outputIndex;
}
const std::string& getAlias() const
{
return alias;
}
void setAlias(const std::string& alias)
{
this->alias = alias;
}
const std::string& getOutputIndex() const
{
return outputIndex;
}
bool castOutputIndex(int& n) const;
void setOutputIndex(const std::string& outputIndex)
{
this->outputIndex = outputIndex;
}
const std::string& getPrivKey() const
{
return privKey;
}
void setPrivKey(const std::string& privKey)
{
this->privKey = privKey;
}
const std::string& getTxHash() const
{
return txHash;
}
void setTxHash(const std::string& txHash)
{
this->txHash = txHash;
}
const std::string& getIp() const
{
return ip;
}
void setIp(const std::string& ip)
{
this->ip = ip;
}
};
CMasternodeConfig()
{
entries = std::vector<CMasternodeEntry>();
}
void clear();
bool read(std::string& strErr);
CMasternodeConfig::CMasternodeEntry* add(std::string alias, std::string ip, std::string privKey, std::string txHash, std::string outputIndex);
void remove(std::string alias);
std::vector<CMasternodeEntry>& getEntries()
{
return entries;
}
int getCount()
{
int c = -1;
for (CMasternodeEntry e : entries) {
if (e.getAlias() != "") c++;
}
return c;
}
private:
std::vector<CMasternodeEntry> entries;
};
#endif /* SRC_MASTERNODECONFIG_H_ */
| [
"71147574+NasdaCash@users.noreply.github.com"
] | 71147574+NasdaCash@users.noreply.github.com |
3f19c6251d42ab2ecdfca4a3b17f420e9cb82eed | f838c13620d97c0d7c48b3b6dd9d08c9d5f9d9f3 | /Transcriber/IPA/IpaDecode.h | e027fa122773280c5926671d942975cfebb38ace | [] | no_license | nikhil-chaturvedi/sanskrit-transliteration | 52fa9bb0dd4b8e8491f8ee820c192f004443828b | 4d7f05aef4fef69bbacfc06c12e2cca014da0df2 | refs/heads/master | 2021-08-23T20:02:22.943836 | 2017-12-06T09:56:56 | 2017-12-06T09:56:56 | 93,077,642 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 426 | h | //
// Created by Nikhil Chaturvedi on 17/03/17.
//
#ifndef TRANSCRIBER_IPADECODE_H
#define TRANSCRIBER_IPADECODE_H
#include "../Resources/CodeMap.h"
#include "../Resources/Decode.h"
class IpaDecode: public Decode {
CodeMap* vyanjan;
CodeMap* swar;
CodeMap* maatra;
CodeMap* punctuation;
CodeMap* number;
public:
IpaDecode();
string decode(short int code);
};
#endif //TRANSCRIBER_IPADECODE_H
| [
"709nikhil@gmail.com"
] | 709nikhil@gmail.com |
dd640c6ddd611fdc976d4a54ff2bf75238b191d6 | 050c8a810d34fe125aecae582f9adfd0625356c6 | /ccc/level5.cpp | c5327eda3f44eab3c589c944886c7a82227359e7 | [] | no_license | georgerapeanu/c-sources | adff7a268121ae8c314e846726267109ba1c62e6 | af95d3ce726325dcd18b3d94fe99969006b8e138 | refs/heads/master | 2022-12-24T22:57:39.526205 | 2022-12-21T16:05:01 | 2022-12-21T16:05:01 | 144,864,608 | 11 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,315 | cpp | #include <bits/stdc++.h>
using namespace std;
const int NMAX = 1e3;
const int VMAX = 1e9;
const int KMAX = 1e5;
int n,m;
int t;
int a[NMAX + 5][NMAX + 5];
int col[NMAX + 5][NMAX + 5];
const int dx[] = {-1,0,1,0};
const int dy[] = {0,1,0,-1};
const long double eps = 1e-10;
int border[NMAX + 5];
bool is_border[NMAX + 5][NMAX + 5];
vector<pair<int,int> > comp[NMAX + 5];
pair<long double,long double> capital[NMAX + 5];
long double get_dist(pair<long double,long double> a,pair<long double,long double> b) {
return sqrt((b.first - a.first) * (b.first - a.first) + (b.second - a.second) * (b.second - a.second));
}
int my_int(long double val) {
if(int(val) <= val) {
// printf("%.6f %d\n",double(val),int(val));
return int(val);
}
// printf("%.6f %d\n",double(val),int(val) - 1);
return int(val) - 1;
}
pair<int,int> get_cell(long double a,long double b) {
if(a - my_int(a) - 0.5 > 0) {
a++;
}
if(b - my_int(b) - 0.5 > 0) {
b++;
}
return {my_int(a),my_int(b)};
}
bool ok( pair<int,int> a) {
if(a.first < 0 || a.first >= n || a.second < 0 || a.second >= m) {
return false;
}
return true;
}
vector<pair<int,int> > do_light_beam(int n,int m,int stx,int sty,int dx,int dy) {
swap(stx,sty);
swap(dx,dy);
long double x = stx;
long double y = sty;
vector<pair<int,int> > ans;
while(true) {
int i = get_cell(x,y).first;
int j = get_cell(x,y).second;
if(ok({i,j}) == false) {
break;
}
ans.push_back({i,j});
long double nx = 0,ny = 0;
long double nx_cost = 0,ny_cost = 0;
if(dx < 0) {
nx = get_cell(x - 1,y).first + 0.5;
nx_cost = (x - nx) / abs(double(dx));
}
else if(dx == 0) {
nx = x;
nx_cost = 1e9;
}
else {
nx = get_cell(x + 1,y).first - 0.5;
nx_cost = (nx - x) / abs(double(dx));
}
if(dy < 0) {
ny = get_cell(x,y - 1).second + 0.5;
ny_cost = (y - ny) / abs(double(dy));
}
else if(dy == 0) {
ny = y;
ny_cost = 1e9;
}
else {
ny = get_cell(x,y + 1).second - 0.5;
ny_cost = (ny - y) / abs(double(dy));
}
// printf("%.6f %.6f %.6f %.6f %.6f %.6f\n",double(x),double(y),double(nx),double(ny),double(nx_cost),double(ny_cost));
if(ny_cost - nx_cost > eps) {
y += (nx_cost + eps) * dy;
x += (nx_cost + eps) * dx;
}
else if(abs(ny_cost - nx_cost) < eps) {
long double bx = x;
long double by = y;
if(abs(dx) > abs(dy)) {
y += (nx_cost + eps) * dy;
x += (nx_cost + eps) * dx;
if(ok(get_cell(x,by))) {
ans.push_back(get_cell(x,by));
}
if(ok(get_cell(bx,y))) {
ans.push_back(get_cell(bx,y));
}
}
else {
y += (ny_cost + eps) * dy;
x += (ny_cost + eps) * dx;
if(ok(get_cell(bx,y))) {
ans.push_back(get_cell(bx,y));
}
if(ok(get_cell(x,by))) {
ans.push_back(get_cell(x,by));
}
}
}
else {
y += (ny_cost + eps) * dy;
x += (ny_cost + eps) * dx;
}
}
return ans;
}
class dijkstra_solver {
public:
vector<vector<pair<int,long double> > > graph;
dijkstra_solver(int n) {
graph.resize(n + 1);
}
void add_edge(int x,int y,long double cost) {
graph[x].push_back({y,cost});
graph[y].push_back({x,cost});
}
vector<long double> get(int orig,long double orig_cost) {
vector<long double> ans(graph.size(),1e9);
priority_queue<pair<long double,int>,vector<pair<long double,int> >,greater<pair<long double,int> > > pq;
ans[orig] = orig_cost;
pq.push({orig_cost,orig});
while(pq.empty() == false) {
long double cost = pq.top().first;
int node = pq.top().second;
pq.pop();
if(cost != ans[node]) {
continue;
}
for(auto it:graph[node]) {
if(ans[it.first] > ans[node] + it.second) {
ans[it.first] = ans[node] + it.second;
pq.push({ans[it.first],it.first});
}
}
}
return ans;
}
};
int k;
struct solar_panel {
int orig;
int cost;
} sp[KMAX + 5];
vector<int> cost[NMAX + 5];
int main() {
scanf("%d",&k);
for(int i = 0; i < k; i++) {
scanf("%d %d\n",&sp[i].orig,&sp[i].cost);
}
scanf("%d %d",&n,&m);
int mi = VMAX + 5;
int ma = -VMAX - 5;
long double avg = 0;
int ma_country = -VMAX - 5;
for(int i = 0; i < n; i++) {
for(int j = 0; j < m; j++) {
scanf("%d",&a[i][j]);
scanf("%d",&col[i][j]);
mi = min(mi,a[i][j]);
ma = max(ma,a[i][j]);
avg += a[i][j];
ma_country = max(ma_country,col[i][j]);
}
}
for(int i = 0; i < n; i++) {
for(int j = 0; j < m; j++) {
comp[col[i][j]].push_back({i,j});
capital[col[i][j]].first += i;
capital[col[i][j]].second += j;
for(int k = 0; k < 4; k++) {
int x = i + dx[k];
int y = j + dy[k];
if(x < 0 || x >= n || y < 0 || y >= m || col[i][j] != col[x][y]) {
border[col[i][j]]++;
is_border[i][j] = true;
break;
}
}
}
}
for(int i = 0; i <= ma_country; i++) {
capital[i].first /= double(comp[i].size());
capital[i].second /= double(comp[i].size());
capital[i].first = int(capital[i].first);
capital[i].second = int(capital[i].second);
pair<int,int> best_cap = comp[i].back();
long double dist = 1e9;
for(auto it:comp[i]) {
if(is_border[it.first][it.second]) {
continue;
}
if(dist > get_dist(it,capital[i])) {
dist = get_dist(it,capital[i]);
best_cap = it;
}
}
capital[i] = best_cap;
}
dijkstra_solver pula(ma_country + 1);
for(int i = 0; i < n; i++) {
for(int j = 0; j < m; j++) {
for(int k = 0; k < 4; k++) {
int x = i + dx[k];
int y = j + dy[k];
if(ok({x,y}) == true && col[i][j] != col[x][y]) {
pula.add_edge(col[i][j],col[x][y],int(get_dist(capital[col[i][j]],capital[col[x][y]])));
}
}
}
}
for(int i = 0; i < k; i++) {
vector<long double> tmp = pula.get(sp[i].orig,sp[i].cost);
for(int j = 0; j < (int)tmp.size(); j++) {
cost[j].push_back(tmp[j]);
}
}
for(int i = 0; i <= ma_country; i++) {
for(auto it:cost[i]) {
printf("%d ",int(it));
}
printf("\n");
}
return 0;
}
| [
"alexandrurapeanu@yahoo.com"
] | alexandrurapeanu@yahoo.com |
438182fa12e2527965646ad40d1e506973812743 | 23378c451e396684f712fc9f9e2a65a53a61a8a8 | /BFS/802.Find-Eventual-Safe-States/802.Find-Eventual-Safe-States_BFS.cpp | 5ad92f2b01268634612f272e833947fd8f971911 | [] | no_license | wisdompeak/LeetCode | 25676a8bf606c0511dd9844d4e61388235de82f4 | f3d38bbe9e40ceb0ab9780a4cb0dec938eae578e | refs/heads/master | 2023-09-01T18:45:36.056015 | 2023-08-28T08:01:22 | 2023-08-28T08:01:22 | 83,542,585 | 5,153 | 1,209 | null | 2023-07-22T18:15:25 | 2017-03-01T10:30:52 | C++ | UTF-8 | C++ | false | false | 1,071 | cpp | class Solution {
public:
vector<int> eventualSafeNodes(vector<vector<int>>& graph)
{
int n = graph.size();
vector<int>outDegree(n,0);
vector<vector<int>>prev(n);
for (int i=0; i<n; i++)
for (auto j: graph[i])
{
prev[j].push_back(i);
outDegree[i]+=1;
}
vector<int>ret;
queue<int>q;
for (int i=0; i<n; i++)
{
if (outDegree[i]==0)
{
q.push(i);
ret.push_back(i);
}
}
while (!q.empty())
{
int cur = q.front();
q.pop();
for (int prev: prev[cur])
{
outDegree[prev] -= 1;
if (outDegree[prev]==0)
{
q.push(prev);
ret.push_back(prev);
}
}
}
sort(ret.begin(), ret.end());
return ret;
}
};
| [
"noreply@github.com"
] | noreply@github.com |
00acbeac5ad79b0a6ef00f13aae6aadb9544edfa | 3fcff9628a53c506c409dcfd371edbc4fe68fd2c | /Audible_Altimeter/Audible_Altimeter.ino | f1fa164af303a3e19cab5d13143e407512ae0b03 | [] | no_license | glydrfreak/vSpeedVario-mini | 05f54ffa829463ac1c6c4c381755c35581898dcc | b75c79de3c6e205c46d31bc4c40e044534941724 | refs/heads/master | 2023-07-05T20:19:50.944145 | 2023-06-28T13:11:39 | 2023-06-28T13:11:39 | 132,998,928 | 19 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 13,135 | ino | #include "MS5611.h"
#include "FILTER.h"
#define BAUD_RATE 115200 // Serial Monitor baud rate
#define POT_UD A0
#define POT_INC A1
#define VOL_DOWN A2
#define VOL_UP A3
#define POT_CS A4
#define BEEP_CTRL A5
#define MS5611_CSB 13
#define VBATPIN 9 // Pin monitors battery level (Pin A7)
#define START_UP_VOLUME 32 // 0-32
#define ALTITUDE_UNITS 1 // [1]FEET, [2]METERS
#define VELOCITY_UNITS 1 // [1]FEET_PER_SECOND, [2]METERS_PER_SECOND, [3]FEET_PER_MINUTE
#define PRESSURE_FILTER_DURATION 0 // (AVERAGING DURATION: 1ms to 2000ms)
#define ALTITUDE_FILTER_DURATION 1000 // (AVERAGING DURATION: 1ms to 2000ms)
#define VSPEED_FILTER_DURATION 750 // (AVERAGING DURATION: 1ms to 2000ms)
#define TEMPERATURE_FILTER_DURATION 0 // (AVERAGING DURATION: 1ms to 2000ms)
#define ARMED_ALTITUDE 7000 // must climb above this altitude to activate audible beeps
#define DISARM_ALTITUDE 1000 // must descend below this altitude to deactivate audible beeps
#define BREAK_OFF 5500 // Break-off altitude
#define PULL 4000 // Pull altitude
#define DECISION_ALTITUDE 2500 // You f***ed up, idiot!
MS5611 MS5611(MS5611_CSB);
FILTER1 FILTER1;
FILTER2 FILTER2;
FILTER3 FILTER3;
FILTER4 FILTER4;
void adjustVolumeTo(int volLevel); // 0 - 100;
void volumeUp();
void volumeDown();
float getBatteryLvl(); //Volts
int volDelay = 150; // Volume shall only be changed every 150ms;
unsigned long volMillis = 0;
unsigned long previousMillis = 0;
int samplesThisSec = 0; // Used for calculating averaging duration
int samplesPerSec = 0; // Used for displaying samplesPerSec updated every once second
long battMillis = -5000;
float batteryLvl = 0;
int batteryPercent = 100;
bool measure_battery = 1;
int estimatedVolume = 0;
float temperatureF = 0;
float pressurePa = 0;
float altitudeFt = 0;
float velocityFtPerSec = 0;
float altitude = 0;
float AGL = 0;
float AGL_offset = 0;
float velocity = 0;
bool armed = false;
bool breakOffBeepInitiated = false;
bool pullBeepInitiated = false;
bool decisionAltitudeBeepInitiated = false;
void setup() {
delay(1000);
Serial.begin(BAUD_RATE);
Serial.println("********SETUP********");
pinMode(VBATPIN, INPUT);
pinMode(POT_CS,OUTPUT);
pinMode(POT_UD,OUTPUT);
pinMode(POT_INC,OUTPUT);
digitalWrite(POT_INC,HIGH);
digitalWrite(POT_UD,LOW);
digitalWrite(POT_CS,HIGH);
pinMode(VOL_UP, INPUT);
pinMode(VOL_DOWN, INPUT);
MS5611_init();
int result = MS5611.read();
if(result != 0){
Serial.print("Error in read: ");
Serial.println(result);
}
temperatureF = MS5611.getTemperature()*0.01*(9/5.0)+32;
pressurePa = MS5611.getPressure();
altitudeFt = getAltitudeFt(temperatureF, pressurePa);
AGL_offset = altitudeFt;
adjustVolumeTo(START_UP_VOLUME);
estimatedVolume = START_UP_VOLUME;
batteryLvl = getBatteryLvl();
batteryPercent = (int)(batteryLvl*156.25 - 556.25); //conversion to percent;
if(batteryPercent > 99){batteryPercent = 99;}
else if(batteryPercent < 0){batteryPercent = 0;}
if(batteryPercent>=66){
Serial.print("BATT:>=66");
tone(BEEP_CTRL, 300, 100);
delay(200);
tone(BEEP_CTRL, 400, 100);
delay(200);
tone(BEEP_CTRL, 500, 100);
delay(200);
}
else if(batteryPercent>=33){
Serial.print("BATT:>=33");
tone(BEEP_CTRL, 400, 100);
delay(200);
tone(BEEP_CTRL, 400, 100);
delay(200);
tone(BEEP_CTRL, 400, 100);
delay(200);
}
else if(batteryPercent<33){
Serial.print("BATT:<33");
tone(BEEP_CTRL, 500, 100);
delay(200);
tone(BEEP_CTRL, 400, 100);
delay(200);
tone(BEEP_CTRL, 300, 100);
delay(200);
}
Serial.print("==");
Serial.println(batteryPercent);
Serial.println("******END SETUP******");
}
void loop() {
//delay(100);
samplesThisSec++; //increment each time the loop cycles
if(millis() - previousMillis >= 1000){ // Update value of samplesPerSec once every second:
previousMillis=millis();
samplesPerSec = samplesThisSec;
samplesThisSec=0;
//Serial.print("BLE:"); Serial.print(ble.isConnected()); Serial.print(" ");
//Serial.println(samplesPerSec); //print debug info
}
//====BATTERY================================================================/
//Measure battery level every 5 seconds
if(measure_battery && millis()-battMillis>=5000){
battMillis = millis();
batteryLvl = getBatteryLvl();
batteryPercent = (int)(batteryLvl*156.25 - 556.25); //conversion to percent;
if(batteryPercent > 99){batteryPercent = 99;}
else if(batteryPercent < 0){batteryPercent = 0;}
}
//====MS5611=================================================================/
int result = MS5611.read();
if(result != 0){
Serial.print("Error in read: ");
Serial.println(result);
}
//TEMPERATURE:
if(TEMPERATURE_FILTER_DURATION){
temperatureF = FILTER4.RUNNING_AVERAGE(
//(MS5611_I2C.readTemperature()*9/5.0)+32,
//MS5611.getTemperatureF(D2_OSR),
MS5611.getTemperature()*0.01*(9/5.0)+32,
samplesPerSec,
TEMPERATURE_FILTER_DURATION
);
}
else{
temperatureF = MS5611.getTemperature()*0.01*(9/5.0)+32;
//temperatureF = MS5611.getTemperatureF(D2_OSR);
//temperatureF = (MS5611_I2C.readTemperature()*9/5.0)+32;
//temperatureF = initialTemperature;
}
//PRESSURE:
if(PRESSURE_FILTER_DURATION){
pressurePa = FILTER1.RUNNING_AVERAGE(
MS5611.getPressure(),
//MS5611.getPressurePa(D1_OSR),
//MS5611_I2C.readPressure(),
samplesPerSec,
PRESSURE_FILTER_DURATION
);
}
else{
pressurePa = MS5611.getPressure();
//pressurePa = MS5611.getPressurePa(D1_OSR);
//pressurePa = MS5611_I2C.readPressure();
}
//ALTITUDE:
if(ALTITUDE_FILTER_DURATION){
altitudeFt = FILTER2.RUNNING_AVERAGE(
getAltitudeFt(temperatureF, pressurePa),
//MS5611.getAltitudeFt(temperatureF, pressurePa),
samplesPerSec,
ALTITUDE_FILTER_DURATION
);
AGL = altitudeFt - AGL_offset;
}
else{
//altitudeFt = MS5611.getAltitudeFt(temperatureF, pressurePa);
altitudeFt = getAltitudeFt(temperatureF, pressurePa);
AGL = altitudeFt - AGL_offset;
}
switch(ALTITUDE_UNITS){
default: altitude=altitudeFt*1; break;
case 2: altitude=altitudeFt*0.3048; break;
}
//VERTICAL SPEED:
if(millis()>8000){
if(VSPEED_FILTER_DURATION){
velocityFtPerSec = FILTER3.RUNNING_AVERAGE(
//MS5611.getVelocityFtPerSec(altitudeFt, millis()),
getVelocityFtPerSec(altitudeFt, millis()),
samplesPerSec,
VSPEED_FILTER_DURATION
);
//velocityFtPerSec -= 0.1;
}
else{
velocityFtPerSec = getVelocityFtPerSec(altitudeFt, millis());
//velocityFtPerSec = MS5611.getVelocityFtPerSec(altitudeFt, millis());
}
switch(VELOCITY_UNITS){
default: velocity=velocityFtPerSec*1; break;
case 2: velocity=velocityFtPerSec*0.3048; break;
case 3: velocity=velocityFtPerSec*60; break;
}
}
else{velocity=0;}
//DEBUG:
//Serial.print(samplesPerSec);
//Serial.print(" ");
//Serial.print(temperatureF);
//Serial.print(" ");
//Serial.print(pressurePa);
//Serial.print(" ");
//Serial.print(altitude);
//Serial.print(" ");
Serial.print(AGL);
Serial.print(" ");
Serial.println(velocity);
//====BEEP====================================================================/
// TODO: add beep routine
// armed altitude - 7000
// break off - 5500
// pull - 4000
// decision altitude - 2500
if(AGL>ARMED_ALTITUDE && !armed){
armed = true;
tone(BEEP_CTRL, 400, 300);
}
if(AGL<DISARM_ALTITUDE && armed){
armed = false;
breakOffBeepInitiated = false;
pullBeepInitiated = false;
decisionAltitudeBeepInitiated = false;
tone(BEEP_CTRL, 400, 300);
}
if(armed){
if(AGL<BREAK_OFF && !breakOffBeepInitiated){
beginBreakOffBeep(BEEP_CTRL);
breakOffBeepInitiated = true;
}
if(AGL<PULL && !pullBeepInitiated){
beginPullBeep(BEEP_CTRL);
pullBeepInitiated = true;
}
if(AGL<DECISION_ALTITUDE /*&& velocity > 70*/ && !decisionAltitudeBeepInitiated){
beginDecisionAltitudeBeep(BEEP_CTRL);
decisionAltitudeBeepInitiated = true;
}
}
//====BUTTONS=================================================================/
if(analogRead(VOL_UP)<500 && millis()-volMillis>=volDelay){
volMillis = millis();
volumeUp();
}
if(analogRead(VOL_DOWN)<500 && millis()-volMillis>=volDelay){
volMillis = millis();
volumeDown();
}
}
void MS5611_init(){
MS5611.init();
unsigned int C_read[8];
uint8_t i;
unsigned int n_rem = 0;
unsigned int crc_read;
unsigned char n_bit;
// Calculate and check PROM's CRC4
//
int result = MS5611.read();
for (i = 0; i < 8; i++)
{
C_read[i] = MS5611.getPromValue(i);
//C_read[i] = C_test[i];
}
crc_read = C_read[7];
C_read[7]=(0xFF00 & (C_read[7]));
for (i = 0; i < 16; i++)
{
if (i%2==1) n_rem ^= (unsigned short) ( (C_read[i>>1]) & 0x00FF );
else n_rem ^= (unsigned short) (C_read[i>>1]>>8);
for (n_bit = 8; n_bit > 0; n_bit--)
{
if (n_rem & (0x8000))
{
n_rem = (n_rem << 1) ^ 0x3000;
}
else
{
n_rem = (n_rem << 1);
}
}
}
n_rem= (0x000F & (n_rem >> 12));
Serial.print ("CRC (calculated) : ");
Serial.println (n_rem,HEX);
Serial.print ("CRC (read) : ");
C_read[7]=crc_read;
Serial.println (C_read[7] & 15,HEX);
Serial.println();
}
float getAltitudeFt(float tempF, float pressPa){
float sLvl = 101325.00;
//float sLvl = 100680.00;
float pressPaTemp = pressPa;
if(pressPaTemp <= 0){pressPaTemp=1.0;}
return 504.745*((5.00*(tempF - 32.00))/9.00 + 273.15)*(pow((sLvl/pressPaTemp),0.190223) - 1.00);
}
bool firstTimeVelo = true;
float prevAlti = 0;
unsigned long prevTimeVelo = 0;
float getVelocityFtPerSec(float altiFeet, unsigned long currentVeloMillis){
if(firstTimeVelo){
firstTimeVelo = false;
prevAlti = altiFeet; //initializing
prevTimeVelo = currentVeloMillis; //initializing
return 0;
}
else{
float velo = (1000.0*((float)altiFeet - (float)prevAlti)) / ((float)currentVeloMillis - (float)prevTimeVelo);
prevAlti = altiFeet;
prevTimeVelo = currentVeloMillis;
return velo;
}
}
void beginBreakOffBeep(int _beepCtrl){
int pitch = 500;
int beepDuration = 2000;
tone(_beepCtrl, pitch, beepDuration);
}
void beginPullBeep(int _beepCtrl){
int pitch = 600;
int beepDuration = 2000;
tone(_beepCtrl, pitch, beepDuration);
}
void beginDecisionAltitudeBeep(int _beepCtrl){
int pitch = 700;
int beepDuration = 2000;
tone(_beepCtrl, pitch, beepDuration);
}
void volumeUp(){
//X9C.trimPot(31, X9C_UP, true);
digitalWrite(POT_CS,LOW);
digitalWrite(POT_UD, HIGH);
digitalWrite(POT_INC, HIGH);
digitalWrite(POT_INC, LOW);
digitalWrite(POT_INC, HIGH);
digitalWrite(POT_CS,HIGH);
tone(BEEP_CTRL, 400, 100);
Serial.print("VOL_UP: ");
estimatedVolume++;
if(estimatedVolume>32){estimatedVolume=32;}
Serial.println(estimatedVolume);
}
void volumeDown(){
//X9C.trimPot(31, X9C_DOWN, true);
digitalWrite(POT_CS,LOW);
digitalWrite(POT_UD, LOW);
digitalWrite(POT_INC, HIGH);
digitalWrite(POT_INC, LOW);
digitalWrite(POT_INC, HIGH);
digitalWrite(POT_CS,HIGH);
tone(BEEP_CTRL, 400, 100);
Serial.print("VOL_DOWN: ");
estimatedVolume--;
if(estimatedVolume<0){estimatedVolume=0;}
Serial.println(estimatedVolume);
}
void adjustVolumeTo(int volLevel){
//RESET VOLUME TO ZERO:
digitalWrite(POT_CS,LOW);
digitalWrite(POT_UD, LOW);
for(int i = 0; i <= 100; i++){
digitalWrite(POT_INC, LOW);
digitalWrite(POT_INC, HIGH);
}
digitalWrite(POT_CS,HIGH);
//MOVE UP TO A DESIRED VOLUME:
digitalWrite(POT_CS,LOW);
digitalWrite(POT_UD, HIGH);
for(int i = 0; i <= volLevel; i++){
digitalWrite(POT_INC, LOW);
digitalWrite(POT_INC, HIGH);
}
digitalWrite(POT_CS,HIGH);
Serial.print("VOLUME:"); Serial.println(volLevel);
}
float getBatteryLvl(){
float measuredvbat = analogRead(VBATPIN);
measuredvbat *= 2; // we divided by 2, so multiply back
measuredvbat *= 3.3; // Multiply by 3.3V, our reference voltage
measuredvbat /= 1024; // convert to voltage
return measuredvbat;
}
| [
"noreply@github.com"
] | noreply@github.com |
8227c4b16192b6aa0d123cead163db495a9062c2 | 6531326f910d8947a068a372ff353f31bcd4b1dd | /de-la-Rosa-de-la-Rosa-Daniel-S4/main.cpp | b566bfed3d4dcf83e88cba2c4e03b011bf397c45 | [] | no_license | Dr4keps/p4pag | d69d7fae08191d8db95cfde9cdd4849484078f5e | 92aedb3a1ade74b04eb25748d8143356518431ff | refs/heads/master | 2021-07-24T16:15:34.603206 | 2017-10-23T11:49:51 | 2017-10-23T11:49:51 | 107,973,171 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 5,894 | cpp | #include <iostream>
#include <stdlib.h>
// - IMPORTANTE: El include de Glew debe llamarse siempre ANTES de llamar al de GLFW.
#include <GL\glew.h>
#include <GLFW\glfw3.h>
#include "PagRenderer.h"
// - Esta función callback será llamada cada vez que el área de dibujo
// OpenGL deba ser redibujada.
void window_refresh_callback(GLFWwindow *window) {
//Llamamos a la funcion refreshCallback del Renderer.
PagRenderer::getInstance()->refreshCallback();
// - GLFW usa un doble buffer para que no haya parpadeo. Esta orden
// intercambia el buffer back (que se ha estado dibujando) por el
// que se mostraba hasta ahora front.
//No es una función que deba realizar el renderer. Se encarga el main. Así evitamos acoplamiento de código.
glfwSwapBuffers(window);
}
// - Esta función callback será llamada cada vez que se cambie el tamaño
// del área de dibujo OpenGL.
void framebuffer_size_callback(GLFWwindow *window, int width, int height) {
//Llamamos a la función correspondiente a un cambio de tamaño del área de dibujo del Renderer
PagRenderer::getInstance()->framebufferSizeCallback(width, height);
}
// - Esta función callback será llamada cada vez que se pulse una tecla
// dirigida al área de dibujo OpenGL.
void key_callback(GLFWwindow *window, int key, int scancode, int action, int mods) {
//Si pulsamos la tecla ESC, nos encargamos directamente de cerrarla. No es necesario usar al
//renderer para ello.
if (key == GLFW_KEY_ESCAPE && action == GLFW_PRESS) {
glfwSetWindowShouldClose(window, GLFW_TRUE);
}
//Si ha sido otra tecla, entonces si llamamos a PagRenderer y su función correspondiente.
else {
PagRenderer::getInstance()->keyCallback(key, scancode, action, mods);
}
}
// - Esta función callback será llamada cada vez que se pulse algún botón
// del ratón sobre el área de dibujo OpenGL.
void mouse_button_callback(GLFWwindow *window, int button, int action, int mods) {
//Llamamos al renderer.
PagRenderer::getInstance()->mouseButtonCallback(button, action, mods);
}
// - Esta función callback será llamada cada vez que se mueva la rueda
// del ratón sobre el área de dibujo OpenGL.
void scroll_callback(GLFWwindow *window, double xoffset, double yoffset) {
//Llamamos al renderer.
PagRenderer::getInstance()->scrollCallback(xoffset, yoffset);
}
int main() {
std::cout << "Starting application De-la-Rosa-de-la-Rosa-Daniel-S4" << std::endl;
// - Inicializar GLFW. Es un proceso que sólo debe realizarse una vez.
if (glfwInit() != GLFW_TRUE) {
std::cout << "Failed to initialize GLFW" << std::endl;
return -1;
}
// - Definimos las características que queremos que tenga nuestro contexto gráfico
// OpenGL. Por ejemplo, el número de muestras o modo Core Profile.
glfwWindowHint(GLFW_SAMPLES, 4); // - Activa antialiasing con 4 muestras.
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); // - Esta y las
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4); // siguientes activan un contexto
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 1); // OpenGL Core Profile 4.1.
// - Definimos la ventana de la aplicación y la creamos
GLFWwindow *window;
// - Tamaño, título de la ventana, en ventana y no en pantalla completa,
// sin compartir recursos con otras ventanas.
window = glfwCreateWindow(1024, 576, "De-la-Rosa-de-la-Rosa-Daniel-S4", NULL, NULL);
// - Comprobamos si la creación de la ventana ha tenido éxito.
if (window == NULL) {
std::cout << "Failed to open GLFW window" << std::endl;
glfwTerminate(); // - Liberamos los recursos que ocupaba GLFW.
return -2;
}
// - Hace que la ventana que se pasa como argumento use el contexto
// de GLFW cuyas características se han definido previamente.
glfwMakeContextCurrent(window);
// - Ahora inicializamos GLEW.
// IMPORTANTE: Glew debe inicializarse siempre DESPUES de que se haya
// inicializado y creado GLFW.
glewExperimental = true;
if (glewInit() != GLEW_OK) {
std::cout << "Failed to initialize GLEW" << std::endl;
glfwTerminate(); // - Liberamos los recursos que ocupaba GLFW.
return -3;
}
// - Interrogamos a OpenGL para que nos informe de las propiedades del contexto
// 3D construído.
std::cout << glGetString(GL_RENDERER) << std::endl;
std::cout << glGetString(GL_VENDOR) << std::endl;
std::cout << glGetString(GL_VERSION) << std::endl;
std::cout << glGetString(GL_SHADING_LANGUAGE_VERSION) << std::endl;
// - Registramos los callbacks que responderán a los eventos principales
glfwSetWindowRefreshCallback(window, window_refresh_callback);
glfwSetFramebufferSizeCallback(window, framebuffer_size_callback);
glfwSetKeyCallback(window, key_callback);
glfwSetMouseButtonCallback(window, mouse_button_callback);
glfwSetScrollCallback(window, scroll_callback);
// - Establecemos un gris medio como color con el que se borrará el frame buffer.
// No tiene por qué ejecutarse en cada paso por el ciclo de eventos.
glClearColor(0.6, 0.6, 0.6, 1.0);
// - Ciclo de eventos de la aplicación. La condición de parada es que la
// ventana principal deba cerrarse, por ejemplo, si el usuario pulsa el
// botón de cerrar la ventana (la X).
while (!glfwWindowShouldClose(window)) {
// - Obtiene y organiza los eventos pendientes, tales como pulsaciones de
// teclas o de ratón, etc. Siempre al final de cada iteración del ciclo de
// eventos y después de glfwSwapBuffers(window);
glfwPollEvents();
}
// - Una vez terminado el ciclo de eventos, liberar recursos, etc.
std::cout << "Finishing application De-la-Rosa-de-la-Rosa-Daniel-S4" << std::endl;
glfwDestroyWindow(window); // - Cerramos y destruimos la ventana de la aplicación.
glfwTerminate(); // - Liberamos los recursos que ocupaba GLFW.
// - Esta llamada es para impedir que la consola se cierre inmediatamente tras la
// ejecución y poder leer los mensajes.
system("pause");
} | [
"Ordenador@DELAROSA"
] | Ordenador@DELAROSA |
09777c5c0e60efb0de002c79132d668458be36f5 | 50adc086e90f6e73c6ce4df279356538ba88fae5 | /HelloLightMap.cpp | 1834a3fb5b05b2c618b80b53b59bdfcbb555de07 | [] | no_license | qqlizhn/learnOpenGL | b5212077b67dcc1314688b040eb496e57ae6af72 | ad159f5f832a66dd1e8137afdbe16380b02174d2 | refs/heads/master | 2022-12-02T21:20:41.941611 | 2020-08-26T12:28:06 | 2020-08-26T12:28:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,886 | cpp | #include "HelloLightMap.h"
void HelloLightMap::OnInit()
{
glEnable(GL_DEPTH_TEST);
//Default_Init();
//Exercise2_Init();
//Exercise3_Init();
Exercise4_Init();
glGenVertexArrays(1, &containerVAO);
glGenBuffers(1, &VBO);
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW);
glBindVertexArray(containerVAO);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, sizeof(GL_FLOAT) * 8, (GLvoid*)0);
glEnableVertexAttribArray(0);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, sizeof(GL_FLOAT) * 8, (GLvoid*)(3 * sizeof(GLfloat)));
glEnableVertexAttribArray(1);
glVertexAttribPointer(2, 2, GL_FLOAT, GL_FALSE, sizeof(GL_FLOAT) * 8, (GLvoid*)(6 * sizeof(GLfloat)));
glEnableVertexAttribArray(2);
glBindVertexArray(0);
glGenVertexArrays(1, &lightVAO);
glBindVertexArray(lightVAO);
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, sizeof(GL_FLOAT) * 8, (GLvoid*)0);
glEnableVertexAttribArray(0);
glBindVertexArray(0);
}
void HelloLightMap::OnRender()
{
//Default_Update();
Exercise4_Update();
}
void HelloLightMap::OnWindowAttach(GLFWwindow* wnd)
{
}
void HelloLightMap::HandleInput(GLFWwindow* wnd)
{
GLfloat deltaTime = Time::deltaTime;
auto mainCamera = Camera::GetMainCamera();
if (glfwGetKey(wnd, GLFW_KEY_W))
{
mainCamera->ProcessKeyboard(FORWARD, deltaTime);
}
else if (glfwGetKey(wnd, GLFW_KEY_S))
{
mainCamera->ProcessKeyboard(BACKWARD, deltaTime);
}
if (glfwGetKey(wnd, GLFW_KEY_A))
{
mainCamera->ProcessKeyboard(LEFT, deltaTime);
}
else if (glfwGetKey(wnd, GLFW_KEY_D))
{
mainCamera->ProcessKeyboard(RIGHT, deltaTime);
}
}
void HelloLightMap::OnMouseMoveCallback(GLFWwindow* window, double xpos, double ypos)
{
if (Mouse::IsFisrtMove())
{
Mouse::SetLastXY(xpos, ypos);
Mouse::SetFirstMove(false);
}
GLfloat xoffset = xpos - Mouse::GetLastX();
GLfloat yoffset = Mouse::GetLastY() - ypos; // Reversed since y-coordinates go from bottom to left
Mouse::SetLastXY(xpos, ypos);
Camera::GetMainCamera()->ProcessMouseMovement(xoffset, yoffset);
}
void HelloLightMap::OnMouseScrollCallBack(GLFWwindow* window, double xoffset, double yoffset)
{
Camera::GetMainCamera()->ProcessMouseScroll(yoffset);
}
void HelloLightMap::OnDeInit()
{
delete m_LightingObjShader;
delete m_LampShader;
}
void HelloLightMap::Default_Update()
{
glClearColor(0.1f, 0.1f, 0.1f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
DrawLightParamWindow();
auto mainCamera = Camera::GetMainCamera();
m_LightingObjShader->Use();
m_LightingObjShader->setVec3("light.position", lightPos[0], lightPos[1], lightPos[2]);
m_LightingObjShader->setVec3("viewPos", mainCamera->Position);
m_LightingObjShader->setVec3("light.ambient", light_ambient[0], light_ambient[1], light_ambient[2]);
m_LightingObjShader->setVec3("light.diffuse", light_diffuse[0], light_diffuse[1], light_diffuse[2]);
m_LightingObjShader->setVec3("light.specular", light_specular[0], light_specular[1], light_specular[2]);
m_LightingObjShader->setInt("material.diffuse", 0);
m_LightingObjShader->setInt("material.specular", 1);
m_LightingObjShader->setFloat("material.shininess", shininess);
glm::mat4 view = mainCamera->GetViewMatrix();
auto projection = glm::perspective(mainCamera->Zoom, 800.0f / 600.0f, 0.1f, 100.0f);
glm::mat4 model(1);
m_LightingObjShader->setMat4("model", model);
m_LightingObjShader->setMat4("view", view);
m_LightingObjShader->setMat4("projection", projection);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, diffuseTex);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, SpecularTex);
glBindVertexArray(containerVAO);
glDrawArrays(GL_TRIANGLES, 0, 36);
glBindVertexArray(0);
m_LampShader->Use();
m_LampShader->setMat4("projection", projection);
m_LampShader->setMat4("view", view);
model = glm::mat4(1);
model = glm::translate(model, glm::vec3(lightPos[0], lightPos[1], lightPos[2]));
model = glm::scale(model, glm::vec3(0.2f));
m_LampShader->setMat4("model", model);
m_LampShader->setVec3("lightColor", lightColor[0], lightColor[1], lightColor[2]);
glBindVertexArray(lightVAO);
glDrawArrays(GL_TRIANGLES, 0, 36);
glBindVertexArray(0);
}
void HelloLightMap::DrawLightParamWindow()
{
ImGui::SetNextWindowPos(ImVec2(800, 600), 0, ImVec2(1, 1));
ImGui::Begin("Light Modifier", 0, ImGuiWindowFlags_AlwaysAutoResize);
ImGui::BulletText("Lamp Attribute");
ImGui::ColorEdit3("Lamp Color", lightColor);
ImGui::DragFloat3("Lamp Pos", lightPos, 0.05f);
ImGui::BulletText("Cube Attribute");
ImGui::SliderInt("shininess", &shininess, 0, 256);
ImGui::BulletText("Light Attribute");
ImGui::DragFloat3("Ambient ", light_ambient, 0.05f, 0, 1);
ImGui::DragFloat3("Diffuse ", light_diffuse, 0.05f, 0, 1);
ImGui::DragFloat3("Specular ", light_specular, 0.05f, 0, 1);
ImGui::End();
}
void HelloLightMap::Default_Init()
{
m_LightingObjShader = new Shader("./Shaders/Vertex/HelloLightMap/Cube.vertex", "./Shaders/Fragment/HelloLightMap/Cube.frag");
m_LampShader = new Shader("./Shaders/Vertex/HelloLightMap/Light.vertex", "./Shaders/Fragment/HelloLightMap/Light.frag");
diffuseTex = Resource::LoadTexture("./resources/HelloLightMap/WoodenChest.png");
SpecularTex = Resource::LoadTexture("./resources/HelloLightMap/WoodenChest_specular.png");
}
void HelloLightMap::Exercise2_Init()
{
m_LightingObjShader = new Shader("./Shaders/Vertex/HelloLightMap/Cube.vertex", "./Shaders/Fragment/HelloLightMap/Cube_Exercise2.frag");
m_LampShader = new Shader("./Shaders/Vertex/HelloLightMap/Light.vertex", "./Shaders/Fragment/HelloLightMap/Light.frag");
diffuseTex = Resource::LoadTexture("./resources/HelloLightMap/WoodenChest.png");
SpecularTex = Resource::LoadTexture("./resources/HelloLightMap/WoodenChest_specular.png");
}
void HelloLightMap::Exercise3_Init()
{
m_LightingObjShader = new Shader("./Shaders/Vertex/HelloLightMap/Cube.vertex", "./Shaders/Fragment/HelloLightMap/Cube.frag");
m_LampShader = new Shader("./Shaders/Vertex/HelloLightMap/Light.vertex", "./Shaders/Fragment/HelloLightMap/Light.frag");
diffuseTex = Resource::LoadTexture("./resources/HelloLightMap/WoodenChest.png");
SpecularTex = Resource::LoadTexture("./resources/HelloLightMap/lighting_maps_specular_color.png");
}
void HelloLightMap::Exercise4_Init()
{
m_LightingObjShader = new Shader("./Shaders/Vertex/HelloLightMap/Cube.vertex", "./Shaders/Fragment/HelloLightMap/Cube_Exercise4.frag");
m_LampShader = new Shader("./Shaders/Vertex/HelloLightMap/Light.vertex", "./Shaders/Fragment/HelloLightMap/Light.frag");
diffuseTex = Resource::LoadTexture("./resources/HelloLightMap/WoodenChest.png");
SpecularTex = Resource::LoadTexture("./resources/HelloLightMap/lighting_maps_specular_color.png");
EmissionMapTex = Resource::LoadTexture("./resources/HelloLightMap/matrix.jpg");
}
void HelloLightMap::Exercise4_Update()
{
glClearColor(0.1f, 0.1f, 0.1f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
DrawLightParamWindow();
auto mainCamera = Camera::GetMainCamera();
m_LightingObjShader->Use();
m_LightingObjShader->setVec3("light.position", lightPos[0], lightPos[1], lightPos[2]);
m_LightingObjShader->setVec3("viewPos", mainCamera->Position);
m_LightingObjShader->setVec3("light.ambient", light_ambient[0], light_ambient[1], light_ambient[2]);
m_LightingObjShader->setVec3("light.diffuse", light_diffuse[0], light_diffuse[1], light_diffuse[2]);
m_LightingObjShader->setVec3("light.specular", light_specular[0], light_specular[1], light_specular[2]);
m_LightingObjShader->setInt("material.diffuse", 0);
m_LightingObjShader->setInt("material.specular", 1);
m_LightingObjShader->setInt("material.emission", 2);
m_LightingObjShader->setFloat("material.shininess", shininess);
glm::mat4 view = mainCamera->GetViewMatrix();
auto projection = glm::perspective(mainCamera->Zoom, 800.0f / 600.0f, 0.1f, 100.0f);
glm::mat4 model(1);
m_LightingObjShader->setMat4("model", model);
m_LightingObjShader->setMat4("view", view);
m_LightingObjShader->setMat4("projection", projection);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, diffuseTex);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, SpecularTex);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, EmissionMapTex);
glBindVertexArray(containerVAO);
glDrawArrays(GL_TRIANGLES, 0, 36);
glBindVertexArray(0);
m_LampShader->Use();
m_LampShader->setMat4("projection", projection);
m_LampShader->setMat4("view", view);
model = glm::mat4(1);
model = glm::translate(model, glm::vec3(lightPos[0], lightPos[1], lightPos[2]));
model = glm::scale(model, glm::vec3(0.2f));
m_LampShader->setMat4("model", model);
m_LampShader->setVec3("lightColor", lightColor[0], lightColor[1], lightColor[2]);
glBindVertexArray(lightVAO);
glDrawArrays(GL_TRIANGLES, 0, 36);
glBindVertexArray(0);
}
| [
"2549366978@qq.com"
] | 2549366978@qq.com |
f5d65144c2fa2237bf1759c4edde22becc8601f1 | 58fc34324e28598d208f8abc61b1e15ef9606aaf | /DemoDirectX/GameObjects/Player/PlayerSpawningState.cpp | 4b763c0c2b435fb710a643eeaeacc78ebf9e397e | [] | no_license | txbac98/Megaman-X3---UIT--SE102 | 2708c5827a60f4e4f5d12bdbb289166130e24b91 | 3c6b08ac6cf927ea2b47f35106ba2b111a63bc94 | refs/heads/master | 2021-10-09T07:36:41.170754 | 2018-12-23T16:30:48 | 2018-12-23T16:30:48 | 160,013,872 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 428 | cpp | #include "PlayerSpawningState.h"
PlayerSpawningState::PlayerSpawningState(PlayerData * playerData)
{
}
PlayerSpawningState::~PlayerSpawningState()
{
}
void PlayerSpawningState::Update(float dt)
{
}
void PlayerSpawningState::HandleKeyboard()
{
}
void PlayerSpawningState::OnCollision(Entity * other, Entity::SideCollisions side)
{
}
PlayerState::StateName PlayerSpawningState::GetState()
{
return PlayerState::Spawning;
}
| [
"txbac196@gmail.com"
] | txbac196@gmail.com |
9886a26f570d77923ecd97eae86c102c572521dd | 0c44da76a30138ebaee6700e2e33df5204ef21fc | /PSME/common/ipmi/include/ipmi/command/sdv/rsd/get_acpi_table_names.hpp | 8b421259f7dba9a111e2ca0729f6db565882c7c3 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-other-permissive",
"BSD-3-Clause",
"BSL-1.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | rwleea/intelRSD | 263e4c86801792be88e528d30d5a1d3c85af3a62 | 8e404abc211211a2d49776b8e3bf07d108c4bd4b | refs/heads/master | 2023-02-20T22:26:07.222243 | 2022-08-04T22:08:00 | 2022-08-04T22:08:00 | 64,722,362 | 0 | 0 | null | 2016-08-02T03:49:59 | 2016-08-02T03:49:58 | null | UTF-8 | C++ | false | false | 3,118 | hpp | /*!
* @brief GetAcpiTableNames command interface.
*
* @copyright Copyright (c) 2018-2019 Intel Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @file get_acpi_table_names.hpp
*/
#pragma once
#include "ipmi/request.hpp"
#include "ipmi/response.hpp"
namespace ipmi {
namespace command {
namespace sdv {
namespace rsd {
namespace request {
/*!
* @brief Get ACPI Table Names request.
*/
class GetAcpiTableNames : public Request {
public:
/*!
* @brief Default constructor.
*/
GetAcpiTableNames();
/*! Copy constructor. */
GetAcpiTableNames(const GetAcpiTableNames&) = default;
/*! Assignment operator */
GetAcpiTableNames& operator=(const GetAcpiTableNames&) = default;
/*!
* @brief Default destructor.
*/
virtual ~GetAcpiTableNames();
virtual const char* get_command_name() const override {
return "GetAcpiTableNames";
}
private:
virtual void pack(IpmiInterface::ByteBuffer& data) const override;
};
}
namespace response {
/*!
* @brief Get ACPI Table Names response.
*/
class GetAcpiTableNames : public Response {
public:
/*!
* @brief Default constructor.
*/
GetAcpiTableNames();
/*! Copy constructor. */
GetAcpiTableNames(const GetAcpiTableNames&) = default;
/*! Assignment operator */
GetAcpiTableNames& operator=(const GetAcpiTableNames&) = default;
/*!
* @brief Default destructor.
*/
virtual ~GetAcpiTableNames();
/*!
* @brief Gets data length
* @return Data length
*/
std::uint8_t get_data_length() const {
return m_data_length;
}
/*!
* @brief Gets ACPI table names
* @return ACPI table names
*/
const std::vector<std::string>& get_acpi_table_names() const {
return m_acpi_table_names;
}
/*!
* @brief Check if RackScale extension byte is present in the response.
* @return True if extension byte is present, false otherwise.
*/
bool is_rackscale_extension_byte_present() const {
return m_is_rackscale_extension_byte_present;
}
virtual const char* get_command_name() const override {
return "GetAcpiTableNames";
}
private:
static constexpr size_t RESPONSE_MINIMUM_SIZE = 4;
static constexpr const uint8_t DATA_LENGTH_OFFSET = 2;
static constexpr const uint8_t ACPI_TABLE_NAMES_OFFSET = 3;
std::uint8_t m_data_length{};
std::vector<std::string> m_acpi_table_names{};
bool m_is_rackscale_extension_byte_present{false};
void unpack(const IpmiInterface::ByteBuffer& data) override;
};
}
}
}
}
}
| [
"noreply@github.com"
] | noreply@github.com |
4aaa0946ba9eeda3e344e2e0fb045e8716badc7d | 45ba5c51e81a9c4fc7b820c2a60e6e6cf9b7529a | /1001.cpp | 412d3349659b1477261f87edc3c459cbb3011c25 | [] | no_license | LinxinKevin/-PAT | ca1920bb525353c2cd412ec14476d503b32756a4 | b0e7e3dc8a474e8413b4a87df932be7ca9f76f00 | refs/heads/master | 2021-05-08T05:08:31.050526 | 2017-10-27T04:37:42 | 2017-10-27T04:37:42 | 108,426,002 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 576 | cpp | #include <iostream>
#include <string>
using namespace std;
int main(){
int a,b;
std::cin >> a>>b;
int c = a+b;
string s = to_string(c);
if(c<0){
std::cout << "-";
s = s.substr(1,s.length()-1);
}
int length = s.length();
int others = length%3;
int i ;
for(i=0;i<others;i++) std::cout <<s[i];
if(i!=0 && i<length) std::cout << "," ;
while(i<length-2){
int index;
for(index = i;index<i+3;index++) std::cout <<s[index];
i = index;
if(i<length) std::cout << ",";
}
return 0;
}
| [
"linxinkevin@gmail.com"
] | linxinkevin@gmail.com |
0e76464743192ef676f8b99ac951251bd62e201a | 19194c2f2c07ab3537f994acfbf6b34ea9b55ae7 | /android-30/android/icu/text/LocaleDisplayNames_DialectHandling.def.hpp | 790464fcf6be0ed612688a481e5c4cf266e6d92e | [
"GPL-3.0-only"
] | permissive | YJBeetle/QtAndroidAPI | e372609e9db0f96602da31b8417c9f5972315cae | ace3f0ea2678967393b5eb8e4edba7fa2ca6a50c | refs/heads/Qt6 | 2023-08-05T03:14:11.842336 | 2023-07-24T08:35:31 | 2023-07-24T08:35:31 | 249,539,770 | 19 | 4 | Apache-2.0 | 2022-03-14T12:15:32 | 2020-03-23T20:42:54 | C++ | UTF-8 | C++ | false | false | 855 | hpp | #pragma once
#include "../../../java/lang/Enum.def.hpp"
class JArray;
class JString;
namespace android::icu::text
{
class LocaleDisplayNames_DialectHandling : public java::lang::Enum
{
public:
// Fields
static android::icu::text::LocaleDisplayNames_DialectHandling DIALECT_NAMES();
static android::icu::text::LocaleDisplayNames_DialectHandling STANDARD_NAMES();
// QJniObject forward
template<typename ...Ts> explicit LocaleDisplayNames_DialectHandling(const char *className, const char *sig, Ts...agv) : java::lang::Enum(className, sig, std::forward<Ts>(agv)...) {}
LocaleDisplayNames_DialectHandling(QJniObject obj) : java::lang::Enum(obj) {}
// Constructors
// Methods
static android::icu::text::LocaleDisplayNames_DialectHandling valueOf(JString arg0);
static JArray values();
};
} // namespace android::icu::text
| [
"yjbeetle@gmail.com"
] | yjbeetle@gmail.com |
fbeb42481ea62a2b55bdc38299876503c1bfbb3c | b10933e7dd293dafd804417186163aa1483290b1 | /sphere.hpp | 8976539b35088b3a3898a6465b244f544fc190b1 | [] | no_license | asdredmitry/RayTracingCuda | c7dad69b9782c3deb2b2ecb28c8a8eb5103e9301 | 41ae5a3a8798bd5cfce49fc23c6a05f1f3899234 | refs/heads/master | 2020-05-15T15:48:18.226073 | 2019-05-21T07:06:30 | 2019-05-21T07:06:30 | 182,380,099 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,311 | hpp | #ifndef SPHERE_H
#define SPHERE_H
#include "hitable.hpp"
#include "materials.hpp"
class sphere: public hitable
{
public:
sphere() {}
sphere(vec3 cen, float r, material * mat1): center(cen), radius(r), mat(mat1) {};
virtual bool hit(const ray& r, float tmin, float tmax, hit_record& rec)const;
material* mat;
vec3 center;
float radius;
};
bool sphere::hit(const ray& r, float tmin, float tmax, hit_record& rec)const
{
vec3 oc = r.origin() - center;
float a = dot(r.direction(), r.direction());
float b = dot(oc, r.direction());
float c = dot(oc, oc) - radius*radius;
float discriminant = b*b - a*c;
if(discriminant > 0)
{
float temp = (-b - sqrt(discriminant))/a;
if(temp < tmax && temp > tmin)
{
rec.t = temp;
rec.p = r.point_at_parameter(rec.t);
rec.normal = (rec.p - center) /radius;
rec.mat_ptr = mat;
return true;
}
temp = (-b + sqrt(discriminant))/a;
if(temp < tmax && temp > tmin)
{
rec.t = temp;
rec.p = r.point_at_parameter(rec.t);
rec.normal = (rec.p - center)/radius;
rec.mat_ptr = mat;
return true;
}
}
return false;
}
#endif | [
"michalych2014@yandex.ru"
] | michalych2014@yandex.ru |
9a568f7b48c0473997d7152f5e8c00bb73a08656 | 32809f6f425bf5665fc19de2bc929bacc3eeb469 | /src/0930-Binary-Subarrays-With-Sum/0930.cpp | e8f163ce4792989d054fd436a0797985a9f15df0 | [] | no_license | luliyucoordinate/Leetcode | 9f6bf01f79aa680e2dff11e73e4d10993467f113 | bcc04d49969654cb44f79218a7ef2fd5c1e5449a | refs/heads/master | 2023-05-25T04:58:45.046772 | 2023-05-24T11:57:20 | 2023-05-24T11:57:20 | 132,753,892 | 1,575 | 569 | null | 2023-05-24T11:57:22 | 2018-05-09T12:30:59 | C++ | UTF-8 | C++ | false | false | 1,173 | cpp | #include <iostream>
#include <vector>
#include <string>
#include <unordered_map>
using namespace std;
static int x = []() {std::ios::sync_with_stdio(false); cin.tie(0); return 0; }();
class Solution
{
public:
int numSubarraysWithSum(vector<int>& A, int S)
{
vector<int> zeros;
int result = 0, cnt = 0;
if (A.empty()) return result;
for (auto num : A)
{
if (num)
{
zeros.push_back(cnt); cnt = 0;
}
else cnt++;
}
zeros.push_back(cnt);
if (S)
{
for (unsigned int i = 0; i < zeros.size() - S; ++i)
{
result += (zeros[i] + 1) * (zeros[i + S] + 1);
}
return result;
}
if (S == 0)
{
for (unsigned int i = 0; i < zeros.size(); ++i)
{
if (zeros[i]) result += (zeros[i] + 1)*zeros[i];
}
result /= 2;
return result;
}
}
};
int main()
{
vector<int> nums = {1, 1, 1, 1, 1};
int k = 3;
cout << Solution().numSubarraysWithSum(nums, k);
return 0;
}
| [
"luliyucoordinate@outlook.com"
] | luliyucoordinate@outlook.com |
fb6ae42dd33ab6606d4932ee94ef29917398546c | bd5673632d9d65808d81e1e6f45ccd1899b4267a | /src/Ludum/State/State.cpp | 09be56dddf2042d29a11cb1c1271725c79a7ded3 | [] | no_license | gingerBill/LD-30 | 6b2676f5cb5ca45979bd5347cfb462ad2ef06b01 | 875dcc17cb4b87af08b22de0d5a7a8d3fb0e22cd | refs/heads/master | 2020-07-03T16:52:55.938626 | 2016-11-19T23:29:58 | 2016-11-19T23:29:58 | 74,241,619 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 497 | cpp | #include <Ludum/State/State.hpp>
#include <Ludum/State/StateStack.hpp>
namespace gb
{
State::State(StateStack& stack, Context context)
:m_stack(&stack)
,m_context(context)
{
}
State::~State()
{
}
void State::requestStackPush(States::ID stateID)
{
m_stack->pushState(stateID);
}
void State::requestStackPop()
{
m_stack->popState();
}
void State::requestStateClear()
{
m_stack->clearStates();
}
State::Context State::getContext() const
{
return m_context;
}
}
| [
"noreply@github.com"
] | noreply@github.com |
45d7b3c0ea2945a6cfe9fecd39749e6c763ad0db | c94b20c900fa7773336d0095350dadcb846ce2da | /cpp/Mar/21_thread/producer_consumer/MutexLock.cc | 774f609bad1c17424def489ab864ec8c4735a59e | [] | no_license | gongjianc/Learn | bae6a4928291c702b95575b6935d3f2993a2ec8c | be772a70ed5e96b48ae2623c16c333c0250ed87e | refs/heads/master | 2020-12-12T14:12:59.107400 | 2018-05-25T03:14:38 | 2018-05-25T03:14:38 | 54,636,263 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 619 | cc | /*
** @file MutexLock.cc
** @author jaygong(gongjian0309@gmail.com)
** @date 2016-03-21 04:53:43
*/
#include "MutexLock.h"
#include <iostream>
using std::cout;
using std::endl;
namespace wd{
MutexLock::MutexLock()
: _isLocked(false)
{
pthread_mutex_init(&_mutex, NULL);
}
MutexLock::~MutexLock()
{
if(!_isLocked)
pthread_mutex_destroy(&_mutex);
}
void MutexLock::lock()
{
pthread_mutex_lock(&_mutex);
_isLocked = true;
}
void MutexLock::unlock()
{
pthread_mutex_unlock(&_mutex);
}
pthread_mutex_t *MutexLock::getMutexLockPtr()
{
return &_mutex;
}
}//end of naamespace
| [
"gongjian0309@gmail.com"
] | gongjian0309@gmail.com |
358701bae9abebf6824f44c6c5a4fe5a90ceb8cf | 9b21d5b495a5318f349eab3c7c8c6e979fc5b77a | /Hackerrank/transform_string.cpp | cd60ad43d6a2d304e0160a9a7a0c0c4932314f57 | [] | no_license | raokartikkumar24/CodingCompetition | 95c52f916e624ec553ed6b7666f1478269c89cb1 | 3b77f72b81d833ed56f304e5cbac70fed27da5b3 | refs/heads/master | 2021-06-03T15:35:24.314843 | 2020-09-29T07:33:39 | 2020-09-29T07:33:39 | 23,706,876 | 1 | 1 | null | 2015-07-06T11:33:39 | 2014-09-05T14:55:44 | C++ | UTF-8 | C++ | false | false | 481 | cpp | #include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <set>
#include <string>
typedef long long LL;
using namespace std;
int main() {
string input;
cin >> input;
int Q;
cin >> Q;
while( Q-- )
{
int a,b;
cin >> a >> b;
string::iterator s = input.begin() + a;
string::iterator e = input.begin() + b + 1;
reverse(s,e);
//input = newstring;
cout << input << endl;
}
return 0;
} | [
"krao24@gmail.com"
] | krao24@gmail.com |
e75e0dfca661a3a591a026b89df5a6e20d100aab | 2ae0b8d95d439ccfd55ea7933ad4a2994ad0f6c5 | /src/plugins/intel_gpu/tests/unit/test_cases/batch_to_space_gpu_test.cpp | 36eb362a7034bbdb5a35c125f5ed977fd880237d | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | openvinotoolkit/openvino | 38ea745a247887a4e14580dbc9fc68005e2149f9 | e4bed7a31c9f00d8afbfcabee3f64f55496ae56a | refs/heads/master | 2023-08-18T03:47:44.572979 | 2023-08-17T21:24:59 | 2023-08-17T21:24:59 | 153,097,643 | 3,953 | 1,492 | Apache-2.0 | 2023-09-14T21:42:24 | 2018-10-15T10:54:40 | C++ | UTF-8 | C++ | false | false | 29,598 | cpp | // Copyright (C) 2018-2023 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include "test_utils.h"
#include <intel_gpu/primitives/input_layout.hpp>
#include <intel_gpu/primitives/batch_to_space.hpp>
#include <intel_gpu/primitives/data.hpp>
#include <cstddef>
using namespace cldnn;
using namespace ::tests;
TEST(batch_to_space_fp16_gpu, i8111_bs1222_cb0000_ce0000) {
// Input : 8x1x1x1
// Block shape : 1x2x2x2
// Crops begin : 0x0x0x0
// Crops end : 0x0x0x0
// Output : 1x2x2x2
// Input values in fp16
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(8), feature(1), spatial(1, 1)};
auto input = engine.allocate_memory({ data_types::f16, format::bfyx, input_shape });
set_values(input, {
FLOAT16(0.0f), FLOAT16(1.0f),
FLOAT16(2.0f), FLOAT16(3.0f),
FLOAT16(4.0f), FLOAT16(5.0f),
FLOAT16(6.0f), FLOAT16(7.0f)
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(batch_to_space("batch_to_space", input_info("Input"), tensor(format::bfyx, {1,2,2,2}, 1),
tensor(format::bfyx, {0,0,0,0}, 0),
tensor(format::bfyx, {0,0,0,0}, 0),
tensor(format::bfyx, {1,2,2,2}, 1)));
network network(engine, topology, get_test_default_config(engine));
network.set_input_data("Input", input);
auto outputs = network.execute();
auto output = outputs.at("batch_to_space").get_memory();
cldnn::mem_lock<uint16_t> output_ptr(output, get_test_stream());
std::vector<float> expected_results = {
0.f, 1.f, 2.f, 3.f, 4.f, 5.f, 6.f, 7.f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], half_to_float(output_ptr[i]));
}
}
TEST(batch_to_space_fp16_gpu, i4321_bs1212_cb0000_ce0000) {
// Input : 4x3x2x1
// Block shape : 1x2x1x2
// Crops begin : 0x0x0x0
// Crops end : 0x0x0x0
// Output : 1x6x2x2
// Input values in fp16
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(4), feature(3), spatial(1, 2)};
auto input = engine.allocate_memory({ data_types::f16, format::bfyx, input_shape });
set_values(input, {
FLOAT16(0.0f), FLOAT16(1.0f), FLOAT16(2.0f), FLOAT16(3.0f),
FLOAT16(4.0f), FLOAT16(5.0f), FLOAT16(6.0f), FLOAT16(7.0f),
FLOAT16(8.0f), FLOAT16(9.0f), FLOAT16(10.0f), FLOAT16(11.0f),
FLOAT16(12.0f), FLOAT16(13.0f), FLOAT16(14.0f), FLOAT16(15.0f),
FLOAT16(16.0f), FLOAT16(17.0f), FLOAT16(18.0f), FLOAT16(19.0f),
FLOAT16(20.0f), FLOAT16(21.0f), FLOAT16(22.0f), FLOAT16(23.0f)
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(batch_to_space("batch_to_space", input_info("Input"), tensor(format::bfyx, {1,2,1,2}, 1),
tensor(format::bfyx, {0,0,0,0}, 0),
tensor(format::bfyx, {0,0,0,0}, 0),
tensor(format::bfyx, {1,6,2,2}, 1)));
network network(engine, topology, get_test_default_config(engine));
network.set_input_data("Input", input);
auto outputs = network.execute();
auto output = outputs.at("batch_to_space").get_memory();
cldnn::mem_lock<uint16_t> output_ptr(output, get_test_stream());
std::vector<float> expected_results = {
0.f, 6.f, 1.f, 7.f, 12.f, 18.f,
13.f, 19.f, 2.f, 8.f, 3.f, 9.f,
14.f, 20.f, 15.f, 21.f, 4.f, 10.f,
5.f, 11.f, 16.f, 22.f, 17.f, 23.f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], half_to_float(output_ptr[i]));
}
}
TEST(batch_to_space_fp16_gpu, i4321_bs1212_cb0010_ce0101) {
// Input : 4x3x2x1
// Block shape : 1x2x1x2
// Crops begin : 0x0x1x0
// Crops end : 0x1x0x1
// Output : 1x5x1x1
// Input values in fp16
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(4), feature(3), spatial(1, 2)};
auto input = engine.allocate_memory({ data_types::f16, format::bfyx, input_shape });
set_values(input, {
FLOAT16(0.0f), FLOAT16(1.0f), FLOAT16(2.0f), FLOAT16(3.0f),
FLOAT16(4.0f), FLOAT16(5.0f), FLOAT16(6.0f), FLOAT16(7.0f),
FLOAT16(8.0f), FLOAT16(9.0f), FLOAT16(10.0f), FLOAT16(11.0f),
FLOAT16(12.0f), FLOAT16(13.0f), FLOAT16(14.0f), FLOAT16(15.0f),
FLOAT16(16.0f), FLOAT16(17.0f), FLOAT16(18.0f), FLOAT16(19.0f),
FLOAT16(20.0f), FLOAT16(21.0f), FLOAT16(22.0f), FLOAT16(23.0f)
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(batch_to_space("batch_to_space", input_info("Input"), tensor(format::bfyx, {1,2,1,2}, 1),
tensor(format::bfyx, {0,0,1,0}, 0),
tensor(format::bfyx, {0,1,0,1}, 0),
tensor(format::bfyx, {1,5,1,1}, 1)));
network network(engine, topology, get_test_default_config(engine));
network.set_input_data("Input", input);
auto outputs = network.execute();
auto output = outputs.at("batch_to_space").get_memory();
cldnn::mem_lock<uint16_t> output_ptr(output, get_test_stream());
std::vector<float> expected_results = {
1.f, 13.f, 3.f, 15.f, 5.f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], half_to_float(output_ptr[i]));
}
}
TEST(batch_to_space_fp16_gpu, i62121_bs12311_cb02000_ce00110) {
// Input : 6x2x1x2x1
// Block shape : 1x2x3x1x1
// Crops begin : 0x2x0x0x0
// Crops end : 0x0x1x1x0
// Output : 1x2x2x1x1
// Input values in fp16
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(6), feature(2), spatial(1, 2, 1)};
auto input = engine.allocate_memory({ data_types::f16, format::bfzyx, input_shape });
set_values(input, {
FLOAT16(0.0f), FLOAT16(1.0f), FLOAT16(2.0f), FLOAT16(3.0f),
FLOAT16(4.0f), FLOAT16(5.0f), FLOAT16(6.0f), FLOAT16(7.0f),
FLOAT16(8.0f), FLOAT16(9.0f), FLOAT16(10.0f), FLOAT16(11.0f),
FLOAT16(12.0f), FLOAT16(13.0f), FLOAT16(14.0f), FLOAT16(15.0f),
FLOAT16(16.0f), FLOAT16(17.0f), FLOAT16(18.0f), FLOAT16(19.0f),
FLOAT16(20.0f), FLOAT16(21.0f), FLOAT16(22.0f), FLOAT16(23.0f)
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(batch_to_space("batch_to_space", input_info("Input"), tensor(format::bfzyx, {1,2,3,1,1}, 1),
tensor(format::bfzyx, {0,2,0,0,0}, 0),
tensor(format::bfzyx, {0,0,1,1,0}, 0),
tensor(format::bfzyx, {1,2,2,1,1}, 1)));
network network(engine, topology, get_test_default_config(engine));
network.set_input_data("Input", input);
auto outputs = network.execute();
auto output = outputs.at("batch_to_space").get_memory();
cldnn::mem_lock<uint16_t> output_ptr(output, get_test_stream());
std::vector<float> expected_results = {
2.f, 6.f, 14.f, 18.f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], half_to_float(output_ptr[i]));
}
}
TEST(batch_to_space_fp16_gpu, i1212112_bs112321_cb02000_ce00110) {
// Input : 12x1x2x1x1x2
// Block shape : 1x1x2x3x2x1
// Crops begin : 0x0x1x0x0x0
// Crops end : 0x0x0x2x0x0
// Output : 1x1x3x1x2x2
// Input values in fp16
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(12), feature(1), spatial(2, 1, 1, 2)};
auto input = engine.allocate_memory({ data_types::f16, format::bfwzyx, input_shape });
set_values(input, {
FLOAT16(0.0f), FLOAT16(1.0f), FLOAT16(2.0f), FLOAT16(3.0f),
FLOAT16(4.0f), FLOAT16(5.0f), FLOAT16(6.0f), FLOAT16(7.0f),
FLOAT16(8.0f), FLOAT16(9.0f), FLOAT16(10.0f), FLOAT16(11.0f),
FLOAT16(12.0f), FLOAT16(13.0f), FLOAT16(14.0f), FLOAT16(15.0f),
FLOAT16(16.0f), FLOAT16(17.0f), FLOAT16(18.0f), FLOAT16(19.0f),
FLOAT16(20.0f), FLOAT16(21.0f), FLOAT16(22.0f), FLOAT16(23.0f),
FLOAT16(24.0f), FLOAT16(25.0f), FLOAT16(26.0f), FLOAT16(27.0f),
FLOAT16(28.0f), FLOAT16(29.0f), FLOAT16(30.0f), FLOAT16(31.0f)
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(batch_to_space("batch_to_space", input_info("Input"), tensor(format::bfwzyx, {1,1,2,3,2,1}, 1),
tensor(format::bfwzyx, {0,0,1,0,0,0}, 0),
tensor(format::bfwzyx, {0,0,0,2,0,0}, 0),
tensor(format::bfwzyx, {1,1,3,1,2,2}, 1)));
network network(engine, topology, get_test_default_config(engine));
network.set_input_data("Input", input);
auto outputs = network.execute();
auto output = outputs.at("batch_to_space").get_memory();
cldnn::mem_lock<uint16_t> output_ptr(output, get_test_stream());
std::vector<float> expected_results = {
24.f, 25.f, 28.f, 29.f,
2.f, 3.f, 6.f, 7.f,
26.f, 27.f, 30.f, 31.f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], half_to_float(output_ptr[i]));
}
}
TEST(batch_to_space_fp16_gpu, i21611_bs1112_cb0000_ce0000_b_fs_yx_fsv16) {
// Input : 2x16x1x1
// Block shape : 1x1x1x2
// Crops begin : 0x0x0x0
// Crops end : 0x0x0x0
// Output : 1x16x1x2
// Input values in fp16
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(2), feature(16), spatial(1, 1)};
auto input = engine.allocate_memory({ data_types::f16, format::bfyx, input_shape });
set_values(input, {
FLOAT16(0.0f), FLOAT16(1.0f), FLOAT16(2.0f), FLOAT16(3.0f), FLOAT16(4.0f), FLOAT16(5.0f), FLOAT16(6.0f), FLOAT16(7.0f),
FLOAT16(8.0f), FLOAT16(9.0f), FLOAT16(10.0f), FLOAT16(11.0f), FLOAT16(12.0f), FLOAT16(13.0f), FLOAT16(14.0f), FLOAT16(15.0f),
FLOAT16(16.0f), FLOAT16(17.0f), FLOAT16(18.0f), FLOAT16(19.0f), FLOAT16(20.0f), FLOAT16(21.0f), FLOAT16(22.0f), FLOAT16(23.0f),
FLOAT16(24.0f), FLOAT16(25.0f), FLOAT16(26.0f), FLOAT16(27.0f), FLOAT16(28.0f), FLOAT16(29.0f), FLOAT16(30.0f), FLOAT16(31.0f)
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(reorder("input_fsv", input_info("Input"), format::b_fs_yx_fsv16, data_types::f16));
topology.add(batch_to_space("batch_to_space", input_info("input_fsv"), tensor(format::bfyx, {1,1,1,2}, 1),
tensor(format::bfyx, {0,0,0,0}, 0),
tensor(format::bfyx, {0,0,0,0}, 0),
tensor(format::bfyx, {1,16,1,2}, 1)));
topology.add(reorder("bts_to_bfyx", input_info("batch_to_space"), format::bfyx, data_types::f16));
network network(engine, topology, get_test_default_config(engine));
network.set_input_data("Input", input);
auto outputs = network.execute();
auto output = outputs.at("bts_to_bfyx").get_memory();
cldnn::mem_lock<uint16_t> output_ptr(output, get_test_stream());
std::vector<float> expected_results = {
0.f, 16.f, 1.f, 17.f, 2.f, 18.f, 3.f, 19.f,
4.f, 20.f, 5.f, 21.f, 6.f, 22.f, 7.f, 23.f,
8.f, 24.f, 9.f, 25.f, 10.f, 26.f, 11.f, 27.f,
12.f, 28.f, 13.f, 29.f, 14.f, 30.f, 15.f, 31.f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], half_to_float(output_ptr[i]));
}
}
TEST(batch_to_space_fp16_gpu, i2812_bs1112_cb0000_ce0000_b_fs_yx_fsv16) {
// Input : 2x8x1x2
// Block shape : 1x1x1x2
// Crops begin : 0x2x0x0
// Crops end : 0x0x0x0
// Output : 1x6x1x4
// Input values in fp16
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(2), feature(8), spatial(2, 1)};
auto input = engine.allocate_memory({ data_types::f16, format::bfyx, input_shape });
set_values(input, {
FLOAT16(0.0f), FLOAT16(1.0f), FLOAT16(2.0f), FLOAT16(3.0f), FLOAT16(4.0f), FLOAT16(5.0f), FLOAT16(6.0f), FLOAT16(7.0f),
FLOAT16(8.0f), FLOAT16(9.0f), FLOAT16(10.0f), FLOAT16(11.0f), FLOAT16(12.0f), FLOAT16(13.0f), FLOAT16(14.0f), FLOAT16(15.0f),
FLOAT16(16.0f), FLOAT16(17.0f), FLOAT16(18.0f), FLOAT16(19.0f), FLOAT16(20.0f), FLOAT16(21.0f), FLOAT16(22.0f), FLOAT16(23.0f),
FLOAT16(24.0f), FLOAT16(25.0f), FLOAT16(26.0f), FLOAT16(27.0f), FLOAT16(28.0f), FLOAT16(29.0f), FLOAT16(30.0f), FLOAT16(31.0f)
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(reorder("input_fsv", input_info("Input"), format::b_fs_yx_fsv16, data_types::f16));
topology.add(batch_to_space("batch_to_space", input_info("input_fsv"), tensor(format::bfyx, {1,1,1,2}, 1),
tensor(format::bfyx, {0,2,0,0}, 0),
tensor(format::bfyx, {0,0,0,0}, 0),
tensor(format::bfyx, {1,6,1,4}, 1)));
topology.add(reorder("bts_to_bfyx", input_info("batch_to_space"), format::bfyx, data_types::f16));
network network(engine, topology, get_test_default_config(engine));
network.set_input_data("Input", input);
auto outputs = network.execute();
auto output = outputs.at("bts_to_bfyx").get_memory();
cldnn::mem_lock<uint16_t> output_ptr(output, get_test_stream());
std::vector<float> expected_results = {
4.f, 20.f, 5.f, 21.f, 6.f, 22.f, 7.f, 23.f,
8.f, 24.f, 9.f, 25.f, 10.f, 26.f, 11.f, 27.f,
12.f, 28.f, 13.f, 29.f, 14.f, 30.f, 15.f, 31.f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], half_to_float(output_ptr[i]));
}
}
TEST(batch_to_space_fp32_gpu, i8111_bs1222_cb0000_ce0000) {
// Input : 8x1x1x1
// Block shape : 1x2x2x2
// Crops begin : 0x0x0x0
// Crops end : 0x0x0x0
// Output : 1x2x2x2
// Input values in fp32
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(8), feature(1), spatial(1, 1)};
auto input = engine.allocate_memory({ data_types::f32, format::bfyx, input_shape });
set_values(input, {
0.0f, 1.0f, 2.0f, 3.0f,
4.0f, 5.0f, 6.0f, 7.0f
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(batch_to_space("batch_to_space", input_info("Input"), tensor(format::bfyx, {1,2,2,2}, 1),
tensor(format::bfyx, {0,0,0,0}, 0),
tensor(format::bfyx, {0,0,0,0}, 0),
tensor(format::bfyx, {1,2,2,2}, 1)));
network network(engine, topology, get_test_default_config(engine));
network.set_input_data("Input", input);
auto outputs = network.execute();
auto output = outputs.at("batch_to_space").get_memory();
cldnn::mem_lock<float> output_ptr(output, get_test_stream());
std::vector<float> expected_results = {
0.f, 1.f, 2.f, 3.f, 4.f, 5.f, 6.f, 7.f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], output_ptr[i]);
}
}
TEST(batch_to_space_fp32_gpu, i4321_bs1212_cb0000_ce0000) {
// Input : 4x3x2x1
// Block shape : 1x2x1x2
// Crops begin : 0x0x0x0
// Crops end : 0x0x0x0
// Output : 1x6x2x2
// Input values in fp32
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(4), feature(3), spatial(1, 2)};
auto input = engine.allocate_memory({ data_types::f32, format::bfyx, input_shape });
set_values(input, {
0.0f, 1.0f, 2.0f, 3.0f,
4.0f, 5.0f, 6.0f, 7.0f,
8.0f, 9.0f, 10.0f, 11.0f,
12.0f, 13.0f, 14.0f, 15.0f,
16.0f, 17.0f, 18.0f, 19.0f,
20.0f, 21.0f, 22.0f, 23.0f
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(batch_to_space("batch_to_space", input_info("Input"), tensor(format::bfyx, {1,2,1,2}, 1),
tensor(format::bfyx, {0,0,0,0}, 0),
tensor(format::bfyx, {0,0,0,0}, 0),
tensor(format::bfyx, {1,6,2,2}, 1)));
network network(engine, topology, get_test_default_config(engine));
network.set_input_data("Input", input);
auto outputs = network.execute();
auto output = outputs.at("batch_to_space").get_memory();
cldnn::mem_lock<float> output_ptr(output, get_test_stream());
std::vector<float> expected_results = {
0.f, 6.f, 1.f, 7.f, 12.f, 18.f,
13.f, 19.f, 2.f, 8.f, 3.f, 9.f,
14.f, 20.f, 15.f, 21.f, 4.f, 10.f,
5.f, 11.f, 16.f, 22.f, 17.f, 23.f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], output_ptr[i]);
}
}
TEST(batch_to_space_fp32_gpu, i4321_bs1212_cb0010_ce0101) {
// Input : 4x3x2x1
// Block shape : 1x2x1x2
// Crops begin : 0x0x1x0
// Crops end : 0x1x0x1
// Output : 1x5x1x1
// Input values in fp32
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(4), feature(3), spatial(1, 2)};
auto input = engine.allocate_memory({ data_types::f32, format::bfyx, input_shape });
set_values(input, {
0.0f, 1.0f, 2.0f, 3.0f,
4.0f, 5.0f, 6.0f, 7.0f,
8.0f, 9.0f, 10.0f, 11.0f,
12.0f, 13.0f, 14.0f, 15.0f,
16.0f, 17.0f, 18.0f, 19.0f,
20.0f, 21.0f, 22.0f, 23.0f
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(batch_to_space("batch_to_space", input_info("Input"), tensor(format::bfyx, {1,2,1,2}, 1),
tensor(format::bfyx, {0,0,1,0}, 0),
tensor(format::bfyx, {0,1,0,1}, 0),
tensor(format::bfyx, {1,5,1,1}, 1)));
network network(engine, topology, get_test_default_config(engine));
network.set_input_data("Input", input);
auto outputs = network.execute();
auto output = outputs.at("batch_to_space").get_memory();
cldnn::mem_lock<float> output_ptr(output, get_test_stream());
std::vector<float> expected_results = {
1.f, 13.f, 3.f, 15.f, 5.f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], output_ptr[i]);
}
}
TEST(batch_to_space_fp32_gpu, i62121_bs12311_cb02000_ce00110) {
// Input : 6x2x1x2x1
// Block shape : 1x2x3x1x1
// Crops begin : 0x2x0x0x0
// Crops end : 0x0x1x1x0
// Output : 1x2x2x1x1
// Input values in fp32
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(6), feature(2), spatial(1, 2, 1)};
auto input = engine.allocate_memory({ data_types::f32, format::bfzyx, input_shape });
set_values(input, {
0.0f, 1.0f, 2.0f, 3.0f,
4.0f, 5.0f, 6.0f, 7.0f,
8.0f, 9.0f, 10.0f, 11.0f,
12.0f, 13.0f, 14.0f, 15.0f,
16.0f, 17.0f, 18.0f, 19.0f,
20.0f, 21.0f, 22.0f, 23.0f
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(batch_to_space("batch_to_space", input_info("Input"), tensor(format::bfzyx, {1,2,3,1,1}, 1),
tensor(format::bfzyx, {0,2,0,0,0}, 0),
tensor(format::bfzyx, {0,0,1,1,0}, 0),
tensor(format::bfzyx, {1,2,2,1,1}, 1)));
network network(engine, topology, get_test_default_config(engine));
network.set_input_data("Input", input);
auto outputs = network.execute();
auto output = outputs.at("batch_to_space").get_memory();
cldnn::mem_lock<float> output_ptr(output, get_test_stream());
std::vector<float> expected_results = {
2.f, 6.f, 14.f, 18.f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], output_ptr[i]);
}
}
TEST(batch_to_space_fp32_gpu, i1212112_bs112321_cb02000_ce00110) {
// Input : 12x1x2x1x1x2
// Block shape : 1x1x2x3x2x1
// Crops begin : 0x0x1x0x0x0
// Crops end : 0x0x0x2x0x0
// Output : 1x1x3x1x2x2
// Input values in fp32
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(12), feature(1), spatial(2, 1, 1, 2)};
auto input = engine.allocate_memory({ data_types::f32, format::bfwzyx, input_shape });
set_values(input, {
0.0f, 1.0f, 2.0f, 3.0f,
4.0f, 5.0f, 6.0f, 7.0f,
8.0f, 9.0f, 10.0f, 11.0f,
12.0f, 13.0f, 14.0f, 15.0f,
16.0f, 17.0f, 18.0f, 19.0f,
20.0f, 21.0f, 22.0f, 23.0f,
24.0f, 25.0f, 26.0f, 27.0f,
28.0f, 29.0f, 30.0f, 31.0f
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(batch_to_space("batch_to_space", input_info("Input"), tensor(format::bfwzyx, {1,1,2,3,2,1}, 1),
tensor(format::bfwzyx, {0,0,1,0,0,0}, 0),
tensor(format::bfwzyx, {0,0,0,2,0,0}, 0),
tensor(format::bfwzyx, {1,1,3,1,2,2}, 1)));
network network(engine, topology, get_test_default_config(engine));
network.set_input_data("Input", input);
auto outputs = network.execute();
auto output = outputs.at("batch_to_space").get_memory();
cldnn::mem_lock<float> output_ptr(output, get_test_stream());
std::vector<float> expected_results = {
24.f, 25.f, 28.f, 29.f,
2.f, 3.f, 6.f, 7.f,
26.f, 27.f, 30.f, 31.f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], output_ptr[i]);
}
}
TEST(batch_to_space_fp32_gpu, i21621_bs1112_cb0201_ce0810_b_fs_yx_fsv16) {
// Input : 2x16x2x1
// Block shape : 1x1x1x2
// Crops begin : 0x2x0x1
// Crops end : 0x8x1x0
// Output : 1x6x1x1
// Input values in fp32
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(2), feature(16), spatial(1, 2)};
auto input = engine.allocate_memory({ data_types::f32, format::bfyx, input_shape });
set_values(input, {
0.0f, 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f,
8.0f, 9.0f, 10.0f, 11.0f, 12.0f, 13.0f, 14.0f, 15.0f,
16.0f, 17.0f, 18.0f, 19.0f, 20.0f, 21.0f, 22.0f, 23.0f,
24.0f, 25.0f, 26.0f, 27.0f, 28.0f, 29.0f, 30.0f, 31.0f,
32.0f, 33.0f, 34.0f, 35.0f, 36.0f, 37.0f, 38.0f, 39.0f,
40.0f, 41.0f, 42.0f, 43.0f, 44.0f, 45.0f, 46.0f, 47.0f,
48.0f, 49.0f, 50.0f, 51.0f, 52.0f, 53.0f, 54.0f, 55.0f,
56.0f, 57.0f, 58.0f, 59.0f, 60.0f, 61.0f, 62.0f, 63.0f
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(reorder("input_fsv", input_info("Input"), format::b_fs_yx_fsv16, data_types::f32));
topology.add(batch_to_space("batch_to_space", input_info("input_fsv"), tensor(format::bfyx, {1,1,1,2}, 1),
tensor(format::bfyx, {0,2,0,1}, 0),
tensor(format::bfyx, {0,8,1,0}, 0),
tensor(format::bfyx, {1,6,1,1}, 1)));
topology.add(reorder("bts_to_bfyx", input_info("batch_to_space"), format::bfyx, data_types::f32));
network network(engine, topology, get_test_default_config(engine));
network.set_input_data("Input", input);
auto outputs = network.execute();
auto output = outputs.at("bts_to_bfyx").get_memory();
cldnn::mem_lock<float> output_ptr(output, get_test_stream());
std::vector<float> expected_results = {
36.0f, 38.0f, 40.0f, 42.0f, 44.0f, 46.0f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], output_ptr[i]);
}
}
template <typename T>
void test_batch_to_space_fp32_gpu_i41021_bs1221_cb0201_ce0810_b_fs_yx_fsv16(bool is_caching_test) {
// Input : 4x10x2x1
// Block shape : 1x2x2x1
// Crops begin : 0x8x1x0
// Crops end : 0x4x0x0
// Output : 1x8x3x1
// Input values in fp32
auto& engine = get_test_engine();
tensor input_shape = tensor{batch(4), feature(10), spatial(1, 2)};
auto input = engine.allocate_memory({ data_types::f32, format::bfyx, input_shape });
set_values(input, {
0.0f, 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f, 9.0f,
10.0f, 11.0f, 12.0f, 13.0f, 14.0f, 15.0f, 16.0f, 17.0f, 18.0f, 19.0f,
20.0f, 21.0f, 22.0f, 23.0f, 24.0f, 25.0f, 26.0f, 27.0f, 28.0f, 29.0f,
30.0f, 31.0f, 32.0f, 33.0f, 34.0f, 35.0f, 36.0f, 37.0f, 38.0f, 39.0f,
40.0f, 41.0f, 42.0f, 43.0f, 44.0f, 45.0f, 46.0f, 47.0f, 48.0f, 49.0f,
50.0f, 51.0f, 52.0f, 53.0f, 54.0f, 55.0f, 56.0f, 57.0f, 58.0f, 59.0f,
60.0f, 61.0f, 62.0f, 63.0f, 64.0f, 65.0f, 66.0f, 67.0f, 68.0f, 69.0f,
70.0f, 71.0f, 72.0f, 73.0f, 74.0f, 75.0f, 76.0f, 77.0f, 78.0f, 79.0f
});
topology topology;
topology.add(input_layout("Input", input->get_layout()));
topology.add(reorder("input_fsv", input_info("Input"), format::b_fs_yx_fsv16, data_types::f32));
topology.add(batch_to_space("batch_to_space", input_info("input_fsv"), tensor(format::bfyx, {1,2,2,1}, 1),
tensor(format::bfyx, {0,8,1,0}, 0),
tensor(format::bfyx, {0,4,0,0}, 0),
tensor(format::bfyx, {1,8,3,1}, 1)));
topology.add(reorder("bts_to_bfyx", input_info("batch_to_space"), format::bfyx, data_types::f32));
cldnn::network::ptr network = get_network(engine, topology, get_test_default_config(engine), get_test_stream_ptr(), is_caching_test);
network->set_input_data("Input", input);
auto outputs = network->execute();
auto output = outputs.at("bts_to_bfyx").get_memory();
cldnn::mem_lock<T> output_ptr(output, get_test_stream());
std::vector<T> expected_results = {
28.0f, 9.0f, 29.0f, 68.0f, 49.0f, 69.0f,
30.0f, 11.0f, 31.0f, 70.0f, 51.0f, 71.0f,
32.0f, 13.0f, 33.0f, 72.0f, 53.0f, 73.0f,
34.0f, 15.0f, 35.0f, 74.0f, 55.0f, 75.0f
};
ASSERT_EQ(output_ptr.size(), expected_results.size());
for (size_t i = 0; i < expected_results.size(); ++i) {
ASSERT_EQ(expected_results[i], output_ptr[i]);
}
}
TEST(batch_to_space_fp32_gpu, i41021_bs1221_cb0201_ce0810_b_fs_yx_fsv16) {
test_batch_to_space_fp32_gpu_i41021_bs1221_cb0201_ce0810_b_fs_yx_fsv16<float>(false);
}
TEST(export_import_batch_to_space_fp32_gpu, i41021_bs1221_cb0201_ce0810_b_fs_yx_fsv16) {
test_batch_to_space_fp32_gpu_i41021_bs1221_cb0201_ce0810_b_fs_yx_fsv16<float>(true);
}
| [
"noreply@github.com"
] | noreply@github.com |
78b2689d668835ab38a37df6dde74e0fe2553076 | 1abf985d2784efce3196976fc1b13ab91d6a2a9e | /opentracker/include/OpenTracker/input/GPSInfoSource.h | 93615e79c8bedaa61ab77cb0b00f23ca33ee4608 | [
"BSD-3-Clause"
] | permissive | dolphinking/mirror-studierstube | 2550e246f270eb406109d4c3a2af7885cd7d86d0 | 57249d050e4195982c5380fcf78197073d3139a5 | refs/heads/master | 2021-01-11T02:19:48.803878 | 2012-09-14T13:01:15 | 2012-09-14T13:01:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,286 | h | /* ========================================================================
* Copyright (c) 2006,
* Institute for Computer Graphics and Vision
* Graz University of Technology
* 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 Graz University of Technology 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.
* ========================================================================
* PROJECT: OpenTracker
* ======================================================================== */
/** header file for GPSInfoSource Node.
*
* @author Gerhard Reitmayr
*
* $Id: GPSInfoSource.h 712 2004-07-14 12:44:50Z tamer $
* @file */
/* ======================================================================= */
/**
* @page Nodes Node Reference
* @section gpsinfosource GPSInfoSource
* The GPSInfoSource node is a simple EventGenerator that outputs additional
* status data on the GPS signal. It encodes the type of fix in the first entry
* of the position, the number of satellites in the second and the hdop value in
* the third. It will always fire even if no there is no position fix. The fix type is
* 0 for no fix, 1 for uncorrected and 2 for corrected position.
*
* An example element looks like this :
* @verbatim
<GPSInfoSource/>@endverbatim
*/
#ifndef _GPSINFOSOURCE_H
#define _GPSINFOSOURCE_H
#include <assert.h>
#include "../OpenTracker.h"
#include "GPSDriver.h"
#ifndef OT_NO_GPS_SUPPORT
namespace ot {
/**
* A very simple EventGenerator node for outputing GPS position data.
* @author Gerhard Reitmayr
* @ingroup input
*/
class OPENTRACKER_API GPSInfoSource : public Node, public GPSListener
{
public:
/// the event that is posted to the EventObservers
Event event;
/// the buffer event for data from the GPS receiver
Event buffer;
/** tests for EventGenerator interface being present. Is overriden to
* return 1 always.
* @return always 1 */
virtual int isEventGenerator()
{
return 1;
}
virtual void newData( const GPResult * point, const char * line, void * userData );
protected:
/// protected constructor so it is only accessible by the module
GPSInfoSource() {};
void pushEvent()
{
lock();
if(event.time < buffer.time )
{
event = buffer;
unlock();
updateObservers( event );
}
else
{
unlock();
}
}
void pullEvent() {};
friend class GPSModule;
};
inline void GPSInfoSource::newData( const GPResult * res, const char * line, void * userData )
{
assert( userData != NULL );
if( res->type == GPResult::GPGGA){
GPGGA * point = (GPGGA *) res;
GPSModule * module = (GPSModule *)userData;
module->lockLoop();
buffer.timeStamp();
buffer.getPosition()[0] = (float)point->fix;
buffer.getPosition()[1] = (float)point->numsats;
buffer.getPosition()[2] = (float)point->hdop;
module->unlockLoop();
}
}
} // namespace ot
#endif // OT_NO_GPS_SUPPORT
#endif // !defined(_GPSINFOSOURCE_H)
/*
* ------------------------------------------------------------
* End of GPSInfoSource.h
* ------------------------------------------------------------
* Automatic Emacs configuration follows.
* Local Variables:
* mode:c++
* c-basic-offset: 4
* eval: (c-set-offset 'substatement-open 0)
* eval: (c-set-offset 'case-label '+)
* eval: (c-set-offset 'statement 'c-lineup-runin-statements)
* eval: (setq indent-tabs-mode nil)
* End:
* ------------------------------------------------------------
*/
| [
"s.astanin@gmail.com"
] | s.astanin@gmail.com |
8763bb659c3425f85b8ef4ca4f9dc5ae1e280055 | 156d7b3e35d249377df5923017cc8af52489f97f | /brlycmbd/CrdBrlyUsr/PnlBrlyUsr1NSession.cpp | a0ceac768f4cfc89e61b9dbcc759570c1933c223 | [
"MIT"
] | permissive | mpsitech/brly-BeamRelay | fa11efae1fdd34110505ac10dee9d2e96a5ea8bd | ade30cfa9285360618d9d8c717fe6591da0c8683 | refs/heads/master | 2022-09-30T21:12:35.188234 | 2022-09-12T20:46:24 | 2022-09-12T20:46:24 | 282,705,295 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,672 | cpp | /**
* \file PnlBrlyUsr1NSession.cpp
* job handler for job PnlBrlyUsr1NSession (implementation)
* \copyright (C) 2016-2020 MPSI Technologies GmbH
* \author Alexander Wirthmueller (auto-generation)
* \date created: 11 Jan 2021
*/
// IP header --- ABOVE
#ifdef BRLYCMBD
#include <Brlycmbd.h>
#else
#include <Brlyd.h>
#endif
#include "PnlBrlyUsr1NSession.h"
#include "PnlBrlyUsr1NSession_blks.cpp"
using namespace std;
using namespace Sbecore;
using namespace Xmlio;
// IP ns.cust --- INSERT
/******************************************************************************
class PnlBrlyUsr1NSession
******************************************************************************/
PnlBrlyUsr1NSession::PnlBrlyUsr1NSession(
XchgBrly* xchg
, DbsBrly* dbsbrly
, const ubigint jrefSup
, const uint ixBrlyVLocale
) :
JobBrly(xchg, VecBrlyVJob::PNLBRLYUSR1NSESSION, jrefSup, ixBrlyVLocale)
{
jref = xchg->addJob(dbsbrly, this, jrefSup);
feedFCsiQst.tag = "FeedFCsiQst";
feedFCsiQst.appendIxSrefTitles(VecBrlyVQrystate::MNR, "ong", VecBrlyVQrystate::getTitle(VecBrlyVQrystate::MNR, ixBrlyVLocale));
feedFCsiQst.appendIxSrefTitles(VecBrlyVQrystate::OOD, "red", VecBrlyVQrystate::getTitle(VecBrlyVQrystate::OOD, ixBrlyVLocale));
feedFCsiQst.appendIxSrefTitles(VecBrlyVQrystate::SLM, "yel", VecBrlyVQrystate::getTitle(VecBrlyVQrystate::SLM, ixBrlyVLocale));
feedFCsiQst.appendIxSrefTitles(VecBrlyVQrystate::UTD, "grn", VecBrlyVQrystate::getTitle(VecBrlyVQrystate::UTD, ixBrlyVLocale));
qry = NULL;
// IP constructor.cust1 --- INSERT
xchg->addRefPreset(VecBrlyVPreset::PREBRLYREFSEL, jref, 0);
qry = new QryBrlyUsr1NSession(xchg, dbsbrly, jref, ixBrlyVLocale);
// IP constructor.cust2 --- INSERT
set<uint> moditems;
refresh(dbsbrly, moditems);
xchg->addClstn(VecBrlyVCall::CALLBRLYSTATCHG, jref, Clstn::VecVJobmask::IMM, 0, false, Arg(), 0, Clstn::VecVJactype::LOCK);
// IP constructor.cust3 --- INSERT
};
PnlBrlyUsr1NSession::~PnlBrlyUsr1NSession() {
// IP destructor.spec --- INSERT
// IP destructor.cust --- INSERT
xchg->removeJobByJref(jref);
};
// IP cust --- INSERT
DpchEngBrly* PnlBrlyUsr1NSession::getNewDpchEng(
set<uint> items
) {
DpchEngBrly* dpcheng = NULL;
if (items.empty()) {
dpcheng = new DpchEngBrlyConfirm(true, jref, "");
} else {
insert(items, DpchEngData::JREF);
dpcheng = new DpchEngData(jref, &continf, &feedFCsiQst, &stgiac, &(qry->rst), &(qry->statshr), &(qry->stgiac), items);
};
return dpcheng;
};
void PnlBrlyUsr1NSession::refresh(
DbsBrly* dbsbrly
, set<uint>& moditems
, const bool unmute
) {
if (muteRefresh && !unmute) return;
muteRefresh = true;
ContInf oldContinf(continf);
// IP refresh --- BEGIN
// continf
continf.numFCsiQst = feedFCsiQst.getNumByIx(qry->ixBrlyVQrystate);
// IP refresh --- END
if (continf.diff(&oldContinf).size() != 0) insert(moditems, DpchEngData::CONTINF);
muteRefresh = false;
};
void PnlBrlyUsr1NSession::updatePreset(
DbsBrly* dbsbrly
, const uint ixBrlyVPreset
, const ubigint jrefTrig
, const bool notif
) {
// IP updatePreset --- BEGIN
set<uint> moditems;
if (ixBrlyVPreset == VecBrlyVPreset::PREBRLYREFUSR) {
recSes = BrlyMSession();
xchg->addRefPreset(VecBrlyVPreset::PREBRLYREFSEL, jref, 0);
qry->stgiac.jnumFirstload = 1;
qry->rerun(dbsbrly);
refresh(dbsbrly, moditems);
if (notif) {
insert(moditems, {DpchEngData::STATSHRQRY, DpchEngData::STGIACQRY, DpchEngData::RST});
xchg->submitDpch(getNewDpchEng(moditems));
};
};
// IP updatePreset --- END
};
void PnlBrlyUsr1NSession::handleRequest(
DbsBrly* dbsbrly
, ReqBrly* req
) {
if (req->ixVBasetype == ReqBrly::VecVBasetype::CMD) {
reqCmd = req;
if (req->cmd == "cmdset") {
} else {
cout << "\tinvalid command!" << endl;
};
if (!req->retain) reqCmd = NULL;
} else if (req->ixVBasetype == ReqBrly::VecVBasetype::DPCHAPP) {
if (req->dpchapp->ixBrlyVDpch == VecBrlyVDpch::DPCHAPPBRLYINIT) {
handleDpchAppBrlyInit(dbsbrly, (DpchAppBrlyInit*) (req->dpchapp), &(req->dpcheng));
} else if (req->dpchapp->ixBrlyVDpch == VecBrlyVDpch::DPCHAPPBRLYUSR1NSESSIONDATA) {
DpchAppData* dpchappdata = (DpchAppData*) (req->dpchapp);
if (dpchappdata->has(DpchAppData::STGIAC)) {
handleDpchAppDataStgiac(dbsbrly, &(dpchappdata->stgiac), &(req->dpcheng));
} else if (dpchappdata->has(DpchAppData::STGIACQRY)) {
handleDpchAppDataStgiacqry(dbsbrly, &(dpchappdata->stgiacqry), &(req->dpcheng));
};
} else if (req->dpchapp->ixBrlyVDpch == VecBrlyVDpch::DPCHAPPBRLYUSR1NSESSIONDO) {
DpchAppDo* dpchappdo = (DpchAppDo*) (req->dpchapp);
if (dpchappdo->ixVDo != 0) {
if (dpchappdo->ixVDo == VecVDo::BUTREFRESHCLICK) {
handleDpchAppDoButRefreshClick(dbsbrly, &(req->dpcheng));
};
};
};
};
};
void PnlBrlyUsr1NSession::handleDpchAppBrlyInit(
DbsBrly* dbsbrly
, DpchAppBrlyInit* dpchappbrlyinit
, DpchEngBrly** dpcheng
) {
*dpcheng = getNewDpchEng({DpchEngData::ALL});
};
void PnlBrlyUsr1NSession::handleDpchAppDataStgiac(
DbsBrly* dbsbrly
, StgIac* _stgiac
, DpchEngBrly** dpcheng
) {
set<uint> diffitems;
set<uint> moditems;
diffitems = _stgiac->diff(&stgiac);
// IP handleDpchAppDataStgiac --- INSERT
insert(moditems, DpchEngData::STGIAC);
*dpcheng = getNewDpchEng(moditems);
};
void PnlBrlyUsr1NSession::handleDpchAppDataStgiacqry(
DbsBrly* dbsbrly
, QryBrlyUsr1NSession::StgIac* _stgiacqry
, DpchEngBrly** dpcheng
) {
set<uint> diffitems;
set<uint> moditems;
diffitems = _stgiacqry->diff(&(qry->stgiac));
BrlyQUsr1NSession* recSelNew = NULL;
BrlyMSession* _recSes = NULL;
if (!diffitems.empty()) {
muteRefresh = true;
qry->stgiac = *_stgiacqry;
if (has(diffitems, QryBrlyUsr1NSession::StgIac::JNUM)) recSelNew = qry->getRecByJnum(_stgiacqry->jnum);
if (!has(diffitems, QryBrlyUsr1NSession::StgIac::JNUM) || (diffitems.size() > 1)) {
qry->rerun(dbsbrly);
insert(moditems, {DpchEngData::STATSHRQRY, DpchEngData::RST});
};
if (has(diffitems, QryBrlyUsr1NSession::StgIac::JNUM)) {
if (!recSelNew) recSelNew = qry->getRecByJnum(_stgiacqry->jnum);
recSes = BrlyMSession();
if (recSelNew) {
if (dbsbrly->tblbrlymsession->loadRecByRef(recSelNew->ref, &_recSes)) {
recSes = *_recSes;
delete _recSes;
};
};
xchg->addRefPreset(VecBrlyVPreset::PREBRLYREFSEL, jref, ((recSelNew) ? recSelNew->ref : 0));
qry->refreshJnum();
};
refresh(dbsbrly, moditems, true);
};
insert(moditems, DpchEngData::STGIACQRY);
*dpcheng = getNewDpchEng(moditems);
};
void PnlBrlyUsr1NSession::handleDpchAppDoButRefreshClick(
DbsBrly* dbsbrly
, DpchEngBrly** dpcheng
) {
set<uint> moditems;
muteRefresh = true;
qry->rerun(dbsbrly, false);
refresh(dbsbrly, moditems, true);
insert(moditems, {DpchEngData::STATSHRQRY, DpchEngData::STGIACQRY, DpchEngData::RST});
*dpcheng = getNewDpchEng(moditems);
};
void PnlBrlyUsr1NSession::handleCall(
DbsBrly* dbsbrly
, Call* call
) {
if (call->ixVCall == VecBrlyVCall::CALLBRLYSTATCHG) {
call->abort = handleCallBrlyStatChg(dbsbrly, call->jref);
};
};
bool PnlBrlyUsr1NSession::handleCallBrlyStatChg(
DbsBrly* dbsbrly
, const ubigint jrefTrig
) {
bool retval = false;
// IP handleCallBrlyStatChg --- BEGIN
set<uint> moditems;
if (jrefTrig == qry->jref) {
if (!muteRefresh) {
refresh(dbsbrly, moditems);
if (qry->ixBrlyVQrystate == VecBrlyVQrystate::UTD) insert(moditems, {DpchEngData::STATSHRQRY, DpchEngData::STGIACQRY, DpchEngData::RST});
if (!moditems.empty()) xchg->submitDpch(getNewDpchEng(moditems));
};
};
// IP handleCallBrlyStatChg --- END
return retval;
};
| [
"aw@mpsitech.com"
] | aw@mpsitech.com |
2b05df7031badc81299548409e646d5eb9c21665 | d33effaf17c65ae4d3df384fb8625554e7ee2768 | /src/cpp/main/common/tools/sparse_rating_splitter_tool.cpp | d01c4dae28e946ae948497a2598acb45de5c5c50 | [] | no_license | kisstom/cppdist | daa67112692305390752143b5d5c3ab577d7dd0f | 703950cda8fff00b0eeda9c089872c8ca9e9785d | refs/heads/master | 2021-01-15T19:28:12.199804 | 2015-02-26T10:10:51 | 2015-02-26T10:10:51 | 30,190,921 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 506 | cpp | #include "../io/sparse_rating_splitter.h"
int main(int agc, char* argv[]) {
Util util;
SparseRatingSplitter splitter(string(argv[1]), util.stringToLong(argv[2]));
FILE* inputF;
FILE* configF;
inputF = fopen(argv[3], "r");
configF = fopen(argv[4], "w");
if (NULL == inputF || NULL == configF) {
fprintf(stderr, "Error opening files: %s %s\n", argv[3], argv[4]);
return 1;
}
splitter.setPartiConfig(configF);
splitter.process(inputF);
fclose(inputF);
fclose(configF);
}
| [
"tamkis1@gmail.com"
] | tamkis1@gmail.com |
4fcdb666429863a496f1c5625a6962b5408b5370 | 77fd5bf55a7c4c3a27eca0d5ee25bcb55a03639c | /IDCA/Classes/EffectManager.cpp | fa85099787b252e40fd2f8a9e7a3a385d5f9944d | [] | no_license | highfence/2016_3rd_gameproject | 44d2c72eb7438fbdbd338918c1c943eb102bc06c | b345337aa718cc8af4ac2d800362d6fa4352e9ec | refs/heads/master | 2020-12-30T12:44:24.181936 | 2017-01-09T16:16:39 | 2017-01-09T16:16:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,119 | cpp | #include "pch.h"
#include "EffectManager.h"
#include "Define.h"
void EffectManager::MakeEffect(int damage)
{
m_pEffect = Sprite::create(EFFECT_IMAGE);
m_pEffect->setPosition(Vec2(EFFECT_POSITION_X, EFFECT_POSITION_Y));
m_pEffect->setScale(EFFECT_SCALE);
addChild(m_pEffect);
auto damageStr = itoa(damage,damageBuf,10);
m_pDamageLabel = LabelBMFont::create( damageStr, DAMAGE_FONT);
m_pDamageLabel->setPosition(Vec2(LABEL_POSITION_X, LABEL_POSITION_Y));
m_pDamageLabel->setScale(LABEL_SCALE);
m_pEffect->addChild(m_pDamageLabel);
auto effectMove = MoveBy::create(EFFECT_MOVE_TIME, Vec2(EFFECT_POSITION_X, EFFECT_POSITION_Y));
m_pEaseEffectMove = EaseElasticInOut::create(effectMove, EFFECT_ELASTIC_TIME);
auto callBack = CallFunc::create(CC_CALLBACK_0(EffectManager::afterEnd, this));
auto sequence = Sequence::create(m_pEaseEffectMove, callBack,NULL);
m_pEffect->runAction(sequence);
}
void EffectManager::afterEnd()
{
removeChild(m_pEffect);
removeChild(m_pDamageLabel);
}
bool EffectManager::init()
{
if (!Node::init())
{
return false;
}
scheduleUpdate();
return true;
}
| [
"qkfkathr42@naver.com"
] | qkfkathr42@naver.com |
d83229f1f57e5748be82277886ee76cfc687f026 | 8a57eb0993bdd61746246c815faae725b22e9547 | /src/httpserver.h | 1afd21de4ed8b71eb9ed98b78f52225858413733 | [
"MIT"
] | permissive | bastiencaillot/BitcoinCloud | 1596b9be8c8a3a5afba852dfbcc2d1dc89282978 | c519c4e87e80330fa23eb68d63c6a2d387507261 | refs/heads/master | 2022-02-13T23:21:16.217680 | 2019-07-23T12:52:20 | 2019-07-23T12:52:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,283 | h | // Copyright (c) 2015-2018 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOINCLOUD_HTTPSERVER_H
#define BITCOINCLOUD_HTTPSERVER_H
#include <string>
#include <stdint.h>
#include <functional>
static const int DEFAULT_HTTP_THREADS = 4;
static const int DEFAULT_HTTP_WORKQUEUE = 16;
static const int DEFAULT_HTTP_SERVER_TIMEOUT = 30;
struct evhttp_request;
struct event_base;
class CService;
class HTTPRequest;
/** Initialize HTTP server.
* Call this before RegisterHTTPHandler or EventBase().
*/
bool InitHTTPServer();
/** Start HTTP server.
* This is separate from InitHTTPServer to give users race-condition-free time
* to register their handlers between InitHTTPServer and StartHTTPServer.
*/
void StartHTTPServer();
/** Interrupt HTTP server threads */
void InterruptHTTPServer();
/** Stop HTTP server */
void StopHTTPServer();
/** Change logging level for libevent. Removes BCLog::LIBEVENT from log categories if
* libevent doesn't support debug logging.*/
bool UpdateHTTPServerLogging(bool enable);
/** Handler for requests to a certain HTTP path */
typedef std::function<bool(HTTPRequest* req, const std::string&)> HTTPRequestHandler;
/** Register handler for prefix.
* If multiple handlers match a prefix, the first-registered one will
* be invoked.
*/
void RegisterHTTPHandler(const std::string& prefix, bool exactMatch, const HTTPRequestHandler& handler);
/** Unregister handler for prefix */
void UnregisterHTTPHandler(const std::string& prefix, bool exactMatch);
/** Return evhttp event base. This can be used by submodules to
* queue timers or custom events.
*/
struct event_base* EventBase();
/** In-flight HTTP request.
* Thin C++ wrapper around evhttp_request.
*/
class HTTPRequest
{
private:
struct evhttp_request* req;
bool replySent;
public:
explicit HTTPRequest(struct evhttp_request* req);
~HTTPRequest();
enum RequestMethod {
UNKNOWN,
GET,
POST,
HEAD,
PUT
};
/** Get requested URI.
*/
std::string GetURI();
/** Get CService (address:ip) for the origin of the http request.
*/
CService GetPeer();
/** Get request method.
*/
RequestMethod GetRequestMethod();
/**
* Get the request header specified by hdr, or an empty string.
* Return a pair (isPresent,string).
*/
std::pair<bool, std::string> GetHeader(const std::string& hdr);
/**
* Read request body.
*
* @note As this consumes the underlying buffer, call this only once.
* Repeated calls will return an empty string.
*/
std::string ReadBody();
/**
* Write output header.
*
* @note call this before calling WriteErrorReply or Reply.
*/
void WriteHeader(const std::string& hdr, const std::string& value);
/**
* Write HTTP reply.
* nStatus is the HTTP status code to send.
* strReply is the body of the reply. Keep it empty to send a standard message.
*
* @note Can be called only once. As this will give the request back to the
* main thread, do not call any other HTTPRequest methods after calling this.
*/
void WriteReply(int nStatus, const std::string& strReply = "");
};
/** Event handler closure.
*/
class HTTPClosure
{
public:
virtual void operator()() = 0;
virtual ~HTTPClosure() {}
};
/** Event class. This can be used either as a cross-thread trigger or as a timer.
*/
class HTTPEvent
{
public:
/** Create a new event.
* deleteWhenTriggered deletes this event object after the event is triggered (and the handler called)
* handler is the handler to call when the event is triggered.
*/
HTTPEvent(struct event_base* base, bool deleteWhenTriggered, const std::function<void(void)>& handler);
~HTTPEvent();
/** Trigger the event. If tv is 0, trigger it immediately. Otherwise trigger it after
* the given time has elapsed.
*/
void trigger(struct timeval* tv);
bool deleteWhenTriggered;
std::function<void(void)> handler;
private:
struct event* ev;
};
std::string urlDecode(const std::string& urlEncoded);
#endif // BITCOINCLOUD_HTTPSERVER_H
| [
"dev@bitcoincloud.email"
] | dev@bitcoincloud.email |
50d1f4d68c49498878abedb7644f63bb2636065c | a2111a80faf35749d74a533e123d9da9da108214 | /raw/pmsb13/pmsb13-data-20130530/sources/6ndbc4zuiueuaiyv/2013-04-11T10-07-38.176+0200/sandbox/my_sandbox/apps/index_a2/index_a2.cpp | c652bc0b62f3fcce3489a386cbbd54000f8dea9e | [
"MIT"
] | permissive | bkahlert/seqan-research | f2c550d539f511825842a60f6b994c1f0a3934c2 | 21945be863855077eec7cbdb51c3450afcf560a3 | refs/heads/master | 2022-12-24T13:05:48.828734 | 2015-07-01T01:56:22 | 2015-07-01T01:56:22 | 21,610,669 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 690 | cpp | #include <seqan/sequence.h>
#include <seqan/index.h>
using namespace seqan;
int main()
{
String<Dna5> genome = "TTATTAAGCGTATAGCCCTATAAATATAA";
Index<String<Dna5>, IndexEsa<> > esaIndex(genome);
Finder<Index<String<Dna5>, IndexEsa<> > > esaFinder(esaIndex);
StringSet< String<char> > patternSet;
resize(patternSet,3);
patternSet[0] = "TATAA";
patternSet[1] = "GATA";
patternSet[2] = "AGCC";
std::cout << sizeof(patternSet) << std::endl;
/* for (unsigned i = 0; i < sizeof(patternSet); i++) {
while (find(esaFinder, patternSet[i]) == 1) {
std::cout << position(esaFinder) << std::endl;
}
}
*/
return 0;
}
| [
"mail@bkahlert.com"
] | mail@bkahlert.com |
4dd453e11791fd862321c354bf0b07ab329d0353 | 215dd7f9c0ffdd3d7e9ed86f05eda4b184012d4e | /include/x3/char/literal_char.hpp | ed3405c012c698e2d5f7e9f7ce0923f45e76923f | [
"MIT"
] | permissive | 15831944/ECAD | 5050f09384bf5f0369d8aa4875723ae8e83fe71c | 9089253afd39adecd88f4a33056f91b646207e00 | refs/heads/master | 2022-01-22T13:40:30.868819 | 2019-07-27T23:59:31 | 2019-07-27T23:59:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,907 | hpp |
//from: "c:\cpp\boost_1_68_0\boost/spirit/home/x3\char\literal_char.hpp"
/*=============================================================================
Copyright (c) 2001-2014 Joel de Guzman
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
==============================================================================*/
#if !defined(BOOST_SPIRIT_X3_LITERAL_CHAR_APRIL_16_2006_1051AM)
#define BOOST_SPIRIT_X3_LITERAL_CHAR_APRIL_16_2006_1051AM
#include "../char/char_parser.hpp"
#include "../support/utility/utf8.hpp"
#include <boost/type_traits/is_same.hpp>
namespace boost { namespace spirit { namespace x3
{
template <typename Encoding, typename Attribute = typename Encoding::char_type>
struct literal_char : char_parser<literal_char<Encoding, Attribute>>
{
typedef typename Encoding::char_type char_type;
typedef Encoding encoding;
typedef Attribute attribute_type;
static bool const has_attribute =
!is_same<unused_type, attribute_type>::value;
template <typename Char>
literal_char(Char ch)
: ch(static_cast<char_type>(ch)) {}
template <typename Char, typename Context>
bool test(Char ch_, Context const& context) const
{
return ((sizeof(Char) <= sizeof(char_type)) || encoding::ischar(ch_))
&& (get_case_compare<encoding>(context)(ch, char_type(ch_)) == 0);
}
char_type ch;
};
template <typename Encoding, typename Attribute>
struct get_info<literal_char<Encoding, Attribute>>
{
typedef std::string result_type;
std::string operator()(literal_char<Encoding, Attribute> const& p) const
{
return '\'' + to_utf8(Encoding::toucs4(p.ch)) + '\'';
}
};
}}}
#endif
| [
"contest@lakeweb.net"
] | contest@lakeweb.net |
6cbd937a7b5693c1363939f1106f68379abef9bb | 04a21f3cf123bb04d27291348a4796770f5bd60c | /features/nanostack/FEATURE_NANOSTACK/sal-stack-nanostack/test/nanostack/unittest/service_libs/fhss_channel/fhsschanneltest.cpp | d53f591f26b4837c97ef99eb64c4f4ff96688bb1 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | Wenchou01/mbed-os | f946b291aa54cc2356633ac466df5ffed626baa9 | 70e7b40468854d33431889a9cd415364c00a2501 | refs/heads/master | 2021-08-20T09:09:26.038479 | 2017-11-27T16:37:40 | 2017-11-27T16:37:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,841 | cpp | /*
* Copyright (c) 2016-2017, Arm Limited and affiliates.
* SPDX-License-Identifier: Apache-2.0
*
* 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 "CppUTest/TestHarness.h"
#include "test_fhss_channel.h"
TEST_GROUP(fhss_channel)
{
void setup()
{
}
void teardown()
{
}
};
TEST(fhss_channel, test_fhss_change_to_rx_channel)
{
CHECK(test_fhss_change_to_rx_channel());
}
TEST(fhss_channel, test_fhss_change_to_parent_channel)
{
CHECK(test_fhss_change_to_parent_channel());
}
TEST(fhss_channel, test_fhss_change_to_tx_channel)
{
CHECK(test_fhss_change_to_tx_channel());
}
TEST(fhss_channel, test_fhss_update_channel)
{
CHECK(test_fhss_update_channel());
}
TEST(fhss_channel, test_fhss_is_current_channel_broadcast)
{
CHECK(test_fhss_is_current_channel_broadcast());
}
TEST(fhss_channel, test_channels_used_equally)
{
CHECK(test_channels_used_equally());
}
TEST(fhss_channel, test_channel_list_repeating_64_channels)
{
CHECK(test_channel_list_repeating_64_channels());
}
TEST(fhss_channel, test_channel_list_repeating_50_channels)
{
CHECK(test_channel_list_repeating_50_channels());
}
TEST(fhss_channel, test_channel_randomization)
{
CHECK(test_channel_randomization());
}
TEST(fhss_channel, test_fhss_get_offset)
{
CHECK(test_fhss_get_offset());
}
| [
"arto.kinnunen@arm.com"
] | arto.kinnunen@arm.com |
30a76d5c52e8bf6e4d7148485a5e1f23e4c3968a | 5d83739af703fb400857cecc69aadaf02e07f8d1 | /Archive2/48/376de242e91741/main.cpp | 5b67af168efdf38e06030553d3ed40ceb127647d | [] | no_license | WhiZTiM/coliru | 3a6c4c0bdac566d1aa1c21818118ba70479b0f40 | 2c72c048846c082f943e6c7f9fa8d94aee76979f | refs/heads/master | 2021-01-01T05:10:33.812560 | 2015-08-24T19:09:22 | 2015-08-24T19:09:22 | 56,789,706 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 414 | cpp | #include <iostream>
using namespace std;
class Base
{
public:
virtual void fun ( int x = 0 )
{
cout << "Base::fun(), x = " << x << endl;
}
};
class Derived : public Base
{
public:
virtual void fun ( int x )
{
cout << "Derived::fun(), x = " << x << endl;
}
};
int main()
{
Derived d1;
Base *bp = &d1;
bp->fun();
return 0;
} | [
"francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df"
] | francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df |
9eaa0211b32410f0e7da2ee73a1105485edc4021 | dddae6b0d7ef2ebbe19b1c0cf61b15ec352ff1b0 | /src/cMultiplayerSetup.h | a7930d604efa7a6d753beb826fdd736df36a7daf | [] | no_license | Wesxdz/Wrath-of-the-Crickets-vs-Brigham-Young | 39f9d5e65c8614a6eb91ecc532384ea0550a8482 | f19f3e344661187fd920e5c7b43b63bf23e0ba0a | refs/heads/master | 2022-03-04T14:31:01.902852 | 2022-02-05T17:35:26 | 2022-02-05T17:35:26 | 112,932,549 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 653 | h | #pragma once
#include "slComponent.h"
#include "HostSession.h"
#include "ClientSession.h"
#include "Gameplay.h"
class cMultiOptions;
class cMultiplayerSetup : public slComponent
{
public:
std::shared_ptr<HostSession> host;
std::shared_ptr<ClientSession> client;
cMultiOptions* options;
Gameplay* next = nullptr;
public:
// Inherited via slComponent
virtual void Init() override;
virtual bool Input(sf::Event * e) override;
virtual void Update(float dt) override;
virtual void Draw() override;
bool HostGame(sf::Uint16 port);
bool JoinGame(sf::IpAddress ip, sf::Uint16 port);
void LeaveGame();
void Broadcast(sf::Packet packet);
};
| [
"sirwesleybarlow@gmail.com"
] | sirwesleybarlow@gmail.com |
5bda2b02f26355cf8dfc9954fc0c66e4c9de75be | a4ff7cb6cab7810696a00863b79c059153008928 | /Classes/third_party_lib/boost/libs/mpl/test/at.cpp | aadac4e813f7266195390a2cf5699d9c468d1da6 | [
"BSL-1.0"
] | permissive | xuanyuantd/ToolsBuilder | d945faa4a5bb1907e497ef69495629cc8ae76a20 | 79b198166c41dd4fe4afc5708a290f37d8a033e3 | refs/heads/master | 2021-01-10T01:20:33.136861 | 2016-04-01T08:35:28 | 2016-04-01T08:40:01 | 55,213,813 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,075 | cpp |
// Copyright Aleksey Gurtovoy 2000-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/libs/mpl for documentation.
// $Id: at.cpp 49240 2008-10-10 09:21:07Z agurtovoy $
// $Date: 2008-10-10 17:21:07 +0800 (周五, 2008-10-10) $
// $Revision: 49240 $
#include <boost/mpl/at.hpp>
#include <boost/mpl/vector/vector10_c.hpp>
#include <boost/mpl/aux_/test.hpp>
template< typename Seq, int n > struct at_test
{
typedef typename at_c<Seq,n>::type t;
MPL_ASSERT(( is_same< t, integral_c<int,9-n> > ));
MPL_ASSERT_RELATION( t::value, ==, 9 - n );
};
MPL_TEST_CASE()
{
typedef vector10_c<int,9,8,7,6,5,4,3,2,1,0> numbers;
at_test< numbers, 0 >();
at_test< numbers, 1 >();
at_test< numbers, 2 >();
at_test< numbers, 3 >();
at_test< numbers, 4 >();
at_test< numbers, 5 >();
at_test< numbers, 6 >();
at_test< numbers, 7 >();
at_test< numbers, 8 >();
at_test< numbers, 9 >();
}
| [
"tangdi_netbook@github.com"
] | tangdi_netbook@github.com |
66e72b71943a5d7b25110c4c7a00afa164cadcb3 | 7d24b70703af758efaa90ff0ceaa0fc7e5bdf4c8 | /code_full_filter/main.cpp | 2840394e1560b9559e3f71f1e55e1aae4979f937 | [] | no_license | foxliu/markov_filter | 1a7859f76d1acfd848007766ba916f5c5fa1a8db | c8bd243eca65ac04c02e108bdad23f7feac3123d | refs/heads/master | 2020-03-09T10:24:21.894900 | 2018-04-09T08:05:59 | 2018-04-09T08:05:59 | 128,736,375 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,838 | cpp | #include <iostream>
#include <algorithm>
#include <vector>
#include "helpers.h"
using namespace std;
std::vector<float> initialize_priors(int map_size, std::vector<float> landmark_positions,
float control_stdev);
float motion_model(float pseudo_position, float movement, std::vector<float> priors,
int map_size, int control_stdev);
//function to get pseudo ranges
std::vector<float> pseudo_range_estimator(std::vector<float> landmark_positions,
float pseudo_position);
//observation model: calculates likelihood prob term based on landmark proximity
float observation_model(std::vector<float> landmark_positions, std::vector<float> observations,
std::vector<float> pseudo_ranges, float distance_max,
float observation_stdev);
int main()
{
//set standard deviation of control:
float control_stdev = 1.0f;
//meters vehicle moves per time step
float movement_per_timestep = 1.0f;
//set observation standard deviation:
float observation_stdev = 1.0f;
//number of x positions on map
int map_size = 25;
//set distance max
float distance_max = map_size;
//define landmarks
std::vector<float> landmark_positions{3, 9, 14, 23};
//define observations vector, each inner vector represents a set of observations
//for a time step
std::vector<std::vector<float>> sensor_obs{{1, 7, 12, 21}, {0, 6, 11, 20}, {5, 10, 19}, {4, 9, 18}, {3, 8, 17}, {2, 7, 16}, {1, 6, 15}, {0, 5, 14}, {4, 13}, {3, 12}, {2, 11}, {1, 10}, {0, 9}, {8}, {7}, {6}, {5}, {4}, {3}, {2}, {1}, {0}, {}, {}, {}};
//TODO: initialize priors
std::vector<float> priors;
priors = initialize_priors(map_size, landmark_positions, control_stdev);
//UNCOMMENT TO SEE THIS STEP OF THE FILTER
/*std::cout << "-----------PRIORS INIT--------------" << endl;
for (unsigned int p = 0; p < priors.size(); p++){
std::cout << priors[p] << endl;
}*/
//initialize posteriors
std::vector<float> posteriors(map_size, 0.0);
//specify time steps
int time_steps = sensor_obs.size();
//declare observations vector
std::vector<float> observations;
//cycle through time steps
for (unsigned int t = 0; t < time_steps; t++)
{
//UNCOMMENT TO SEE THIS STEP OF THE FILTER
/*
std::cout << "---------------TIME STEP---------------" << endl;
std::cout << "t = " << t << endl;
std::cout << "-----Motion----------OBS----------------PRODUCT--" << endl;
*/
if (!sensor_obs[t].empty())
{
observations = sensor_obs[t];
}
else
{
observations = {float(distance_max)};
}
//step through each pseudo position x (i)
for (unsigned int i = 0; i < map_size; ++i)
{
float pseudo_position = float(i);
//TODO: get the motion model probability for each x position
float motion_prob = motion_model(pseudo_position, movement_per_timestep, priors, map_size, control_stdev);
//TODO: get pseudo ranges
std::vector<float> pseudo_ranges = pseudo_range_estimator(landmark_positions, pseudo_position);
//TODO: get observation probability
float observation_prob = observation_model(landmark_positions, observations, pseudo_ranges, distance_max,
observation_stdev);
//TODO: calculate the ith posterior and pass to posteriors vector
posteriors[i] = motion_prob * observation_prob;
//UNCOMMENT TO SEE THIS STEP OF THE FILTER
/*
std::cout << motion_prob << "\t" << observation_prob << "\t"
<< "\t" << motion_prob * observation_prob << endl;
*/
}
//UNCOMMENT TO SEE THIS STEP OF THE FILTER
// std::cout << "----------RAW---------------" << endl;
/*
for (unsigned int p = 0; p < posteriors.size(); p++) {
std::cout << posteriors[p] << endl;
}
*/
//TODO: normalize posteriors (see helpers.h for a helper function)
posteriors = Helpers::normalize_vector(posteriors);
//print to stdout
// std::cout << posteriors[t] << "\t" << priors[t] << endl;
//UNCOMMENT TO SEE THIS STEP OF THE FILTER
// std::cout << "----------NORMALIZED---------------" << endl;
//TODO: update priors
priors = posteriors;
//UNCOMMENT TO SEE THIS STEP OF THE FILTER
/*for (unsigned int p = 0; p < posteriors.size(); p++) {
std::cout << posteriors[p] << endl;
}
*/
//print final posteriors vector to stdout
for (unsigned int p = 0; p < posteriors.size(); p++)
{
std::cout << posteriors[p] << endl;
}
}
return 0;
};
//observation model: calculates likelihood prob term based on landmark proximity
float observation_model(std::vector<float> landmark_positions, std::vector<float> observations,
std::vector<float> pseudo_ranges, float distance_max,
float observation_stdev)
{
//initialize observation probability:
float distance_prob = 1.0f;
//run over current observation vector:
for (unsigned int z = 0; z < observations.size(); ++z)
{
//define min distance:
float pseudo_range_min;
//check, if distance vector exists:
if (pseudo_ranges.size() > 0)
{
//set min distance:
pseudo_range_min = pseudo_ranges[0];
//remove this entry from pseudo_ranges-vector:
pseudo_ranges.erase(pseudo_ranges.begin());
}
//no or negative distances: set min distance to a large number:
else
{
pseudo_range_min = std::numeric_limits<const float>::infinity();
}
//estimate the probabiity for observation model, this is our likelihood:
distance_prob *= Helpers::normpdf(observations[z], pseudo_range_min,
observation_stdev);
}
return distance_prob;
}
std::vector<float> pseudo_range_estimator(std::vector<float> landmark_positions,
float pseudo_position)
{
//define pseudo observation vector:
std::vector<float> pseudo_ranges;
//loop over number of landmarks and estimate pseudo ranges:
for (unsigned int l = 0; l < landmark_positions.size(); ++l)
{
//estimate pseudo range for each single landmark
//and the current state position pose_i:
float range_l = landmark_positions[l] - pseudo_position;
//check if distances are positive:
if (range_l > 0.0f)
{
pseudo_ranges.push_back(range_l);
}
}
//sort pseudo range vector:
sort(pseudo_ranges.begin(), pseudo_ranges.end());
return pseudo_ranges;
}
//motion model: calculates prob of being at an estimated position at time t
float motion_model(float pseudo_position, float movement, std::vector<float> priors,
int map_size, int control_stdev)
{
//initialize probability
float position_prob = 0.0f;
//step over state space for all possible positions x (convolution):
for (unsigned int j = 0; j < map_size; ++j)
{
float next_pseudo_position = float(j);
//distance from i to j
float distance_ij = pseudo_position - next_pseudo_position;
//transition probabilities:
float transition_prob = Helpers::normpdf(distance_ij, movement,
control_stdev);
//estimate probability for the motion model, this is our prior
position_prob += transition_prob * priors[j];
}
return position_prob;
}
//initialize priors assumimg vehicle at landmark +/- 1.0 meters position stdev
std::vector<float> initialize_priors(int map_size, std::vector<float> landmark_positions,
float control_stdev)
{
//initialize priors assumimg vehicle at landmark +/- 1.0 meters position stdev
//set all priors to 0.0
std::vector<float> priors(map_size, 0.0);
//set each landmark positon +/1 to 1.0/9.0 (9 possible postions)
float normalization_term = landmark_positions.size() * (control_stdev * 2 + 1);
for (unsigned int i = 0; i < landmark_positions.size(); i++)
{
int landmark_center = landmark_positions[i];
priors[landmark_center] = 1.0f / normalization_term;
priors[landmark_center - 1] = 1.0f / normalization_term;
priors[landmark_center + 1] = 1.0f / normalization_term;
}
return priors;
}
| [
"liusonghui@bestpay.com.cn"
] | liusonghui@bestpay.com.cn |
94e8f6cf6dc773d58cbe4677b52e2f909af824b8 | 5a7e7a0ca3c86af3667fb5b24630e0768bd7d8f0 | /day1/kianana/data/std.cpp | c2c249f6e1ef1c49d18240bc48987a8afa0b1a00 | [] | no_license | DiamondJack/CCPC2018QHD | fc7192bf46a5a6f32b43ce2a1f04c1232aede64f | 259127541688fdfda3152b04b48dd50e95681457 | refs/heads/master | 2020-03-28T02:11:53.772920 | 2018-10-16T12:10:31 | 2018-10-16T12:10:31 | 147,554,313 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 16,232 | cpp | #include<cstdio>
#include<iostream>
#include<cmath>
#include<cstring>
#include<cstdlib>
#include<ctime>
#include<algorithm>
using namespace std;
inline int read()
{
int num=0,sgn=1;
char ch=getchar();
while (ch!='-'&&(ch<'0'||ch>'9'))ch=getchar();
if (ch=='-')sgn=-1,ch=getchar();
while (ch>='0'&&ch<='9')num*=10,num+=ch-'0',ch=getchar();
return num*sgn;
}
struct exchange
{
int u1,v1,u2,v2;
int rank;
exchange(){}
exchange(int _u1,int _v1,int _u2,int _v2,int _rk)
{u1=_u1;v1=_v1;u2=_u2;v2=_v2;rank=_rk;}
}mx,tmp;
bool operator<(exchange A,exchange B)
{
if (A.rank!=B.rank)return A.rank<B.rank;
if (A.v1+A.v2!=B.v1+B.v2)return (A.v1+A.v2)<(B.v1+B.v2);
return (A.u1+A.u2)>(B.u1+B.u2);
}
bool operator>(exchange A,exchange B)
{
if (A.rank!=B.rank)return A.rank>B.rank;
if (A.v1+A.v2!=B.v1+B.v2)return (A.v1+A.v2)>(B.v1+B.v2);
return (A.u1+A.u2)<(B.u1+B.u2);
}
int T;
int k,n,m;
char s[15];
int area[35][15],sp[35][15];
int times,score;
void print()
{
puts("\n##########\n");
for (int i=1;i<=k;i++)
{
for (int j=1;j<=m;j++)
putchar('A'+area[i][j]-1);
puts("");
}
puts("\n##########\n");
}
void find()
{
for (int i=1;i<n;i++)
for (int j=1;j<=m;j++)
if ((sp[k-n+i][j]==3)&&(sp[k-n+i+1][j]==3))
{
tmp=exchange(k-n+i,j,k-n+i+1,j,6);
if (tmp>mx)mx=tmp;
}
for (int i=1;i<=n;i++)
for (int j=1;j<m;j++)
if ((sp[k-n+i][j]==3)&&(sp[k-n+i][j+1]==3))
{
tmp=exchange(k-n+i,j,k-n+i,j+1,6);
if (tmp>mx)mx=tmp;
}
if (mx.rank==6)return;
int cnt[7];
memset(cnt,0,sizeof(cnt));
for (int i=1;i<=n;i++)
for (int j=1;j<=m;j++)
cnt[area[k-n+i][j]]++;
for (int i=1;i<=n;i++)
for (int j=1;j<=m;j++)
if (sp[k-n+i][j]==3)
{
int s=0;
if (i>1&&(cnt[area[k-n+i-1][j]]>=s))s=cnt[area[k-n+i-1][j]];
if (i<n&&(cnt[area[k-n+i+1][j]]>=s))s=cnt[area[k-n+i+1][j]];
if (j>1&&(cnt[area[k-n+i][j-1]]>=s))s=cnt[area[k-n+i][j-1]];
if (j<m&&(cnt[area[k-n+i][j+1]]>=s))s=cnt[area[k-n+i][j+1]];
if (i>1&&(cnt[area[k-n+i-1][j]]==s))
{
tmp=exchange(k-n+i,j,k-n+i-1,j,5);
if (tmp>mx)mx=tmp;
}
if (i<n&&(cnt[area[k-n+i+1][j]]==s))
{
tmp=exchange(k-n+i,j,k-n+i+1,j,5);
if (tmp>mx)mx=tmp;
}
if (j>1&&(cnt[area[k-n+i][j-1]]==s))
{
tmp=exchange(k-n+i,j,k-n+i,j-1,5);
if (tmp>mx)mx=tmp;
}
if (j<m&&(cnt[area[k-n+i][j+1]]==s))
{
tmp=exchange(k-n+i,j,k-n+i,j+1,5);
if (tmp>mx)mx=tmp;
}
}
if (mx.rank==5)return;
for (int i=1;i<=n;i++)
for (int j=1;j<=m;j++)
{
if (i>1)
{
if ((area[k-n+i][j]==area[k-n+i-1][j-1])&&(area[k-n+i][j]==area[k-n+i-1][j+1])&&(sp[k-n+i-1][j-1]||sp[k-n+i-1][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i-1,j,4);
if (tmp>mx)mx=tmp;
}
if ((j>=3)&&(area[k-n+i][j]==area[k-n+i-1][j-1])&&(area[k-n+i][j]==area[k-n+i-1][j-2])&&(sp[k-n+i-1][j-1]||sp[k-n+i-1][j-2]))
{
tmp=exchange(k-n+i,j,k-n+i-1,j,4);
if (tmp>mx)mx=tmp;
}
if ((j<=m-2)&&(area[k-n+i][j]==area[k-n+i-1][j+1])&&(area[k-n+i][j]==area[k-n+i-1][j+2])&&(sp[k-n+i-1][j+1]||sp[k-n+i-1][j+2]))
{
tmp=exchange(k-n+i,j,k-n+i-1,j,4);
if (tmp>mx)mx=tmp;
}
}
if (i<n)
{
if ((area[k-n+i][j]==area[k-n+i+1][j-1])&&(area[k-n+i][j]==area[k-n+i+1][j+1])&&(sp[k-n+i+1][j-1]||sp[k-n+i+1][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i+1,j,4);
if (tmp>mx)mx=tmp;
}
if ((j>=3)&&(area[k-n+i][j]==area[k-n+i+1][j-1])&&(area[k-n+i][j]==area[k-n+i+1][j-2])&&(sp[k-n+i+1][j-1]||sp[k-n+i+1][j-2]))
{
tmp=exchange(k-n+i,j,k-n+i+1,j,4);
if (tmp>mx)mx=tmp;
}
if ((j<=m-2)&&(area[k-n+i][j]==area[k-n+i+1][j+1])&&(area[k-n+i][j]==area[k-n+i+1][j+2])&&(sp[k-n+i+1][j+1]||sp[k-n+i+1][j+2]))
{
tmp=exchange(k-n+i,j,k-n+i+1,j,4);
if (tmp>mx)mx=tmp;
}
}
if (j>1)
{
if ((area[k-n+i][j]==area[k-n+i-1][j-1])&&(area[k-n+i][j]==area[k-n+i+1][j-1])&&(sp[k-n+i-1][j-1]||sp[k-n+i+1][j-1]))
{
tmp=exchange(k-n+i,j,k-n+i,j-1,4);
if (tmp>mx)mx=tmp;
}
if ((i>=3)&&(area[k-n+i][j]==area[k-n+i-1][j-1])&&(area[k-n+i][j]==area[k-n+i-2][j-1])&&(sp[k-n+i-1][j-1]||sp[k-n+i-2][j-1]))
{
tmp=exchange(k-n+i,j,k-n+i,j-1,4);
if (tmp>mx)mx=tmp;
}
if ((i<=n-2)&&(area[k-n+i][j]==area[k-n+i+1][j-1])&&(area[k-n+i][j]==area[k-n+i+2][j-1])&&(sp[k-n+i+1][j-1]||sp[k-n+i+2][j-1]))
{
tmp=exchange(k-n+i,j,k-n+i,j-1,4);
if (tmp>mx)mx=tmp;
}
}
if (j<m)
{
if ((area[k-n+i][j]==area[k-n+i-1][j+1])&&(area[k-n+i][j]==area[k-n+i+1][j+1])&&(sp[k-n+i-1][j+1]||sp[k-n+i+1][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i,j+1,4);
if (tmp>mx)mx=tmp;
}
if ((i>=3)&&(area[k-n+i][j]==area[k-n+i-1][j+1])&&(area[k-n+i][j]==area[k-n+i-2][j+1])&&(sp[k-n+i-1][j+1]||sp[k-n+i-2][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i,j+1,4);
if (tmp>mx)mx=tmp;
}
if ((i<=n-2)&&(area[k-n+i][j]==area[k-n+i+1][j+1])&&(area[k-n+i][j]==area[k-n+i+2][j+1])&&(sp[k-n+i+1][j+1]||sp[k-n+i+2][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i,j+1,4);
if (tmp>mx)mx=tmp;
}
}
}
if (mx.rank==4)return;
for (int i=1;i<=n;i++)
for (int j=1;j<=m;j++)
{
if (i>1)
{
if ((j>=3)&&(j<=m-2)
&&(area[k-n+i][j]==area[k-n+i-1][j-1])&&(area[k-n+i][j]==area[k-n+i-1][j-2])
&&(area[k-n+i][j]==area[k-n+i-1][j+1])&&(area[k-n+i][j]==area[k-n+i-1][j+2]))
{
tmp=exchange(k-n+i,j,k-n+i-1,j,3);
if (tmp>mx)mx=tmp;
}
}
if (i<n)
{
if ((j>=3)&&(j<=m-2)
&&(area[k-n+i][j]==area[k-n+i+1][j-1])&&(area[k-n+i][j]==area[k-n+i+1][j-2])
&&(area[k-n+i][j]==area[k-n+i+1][j+1])&&(area[k-n+i][j]==area[k-n+i+1][j+2]))
{
tmp=exchange(k-n+i,j,k-n+i+1,j,3);
if (tmp>mx)mx=tmp;
}
}
if (j>1)
{
if ((i>=3)&&(i<=n-2)
&&(area[k-n+i][j]==area[k-n+i-1][j-1])&&(area[k-n+i][j]==area[k-n+i-2][j-1])
&&(area[k-n+i][j]==area[k-n+i+1][j-1])&&(area[k-n+i][j]==area[k-n+i+2][j-1]))
{
tmp=exchange(k-n+i,j,k-n+i,j-1,3);
if (tmp>mx)mx=tmp;
}
}
if (j<m)
{
if ((i>=3)&&(i<=n-2)
&&(area[k-n+i][j]==area[k-n+i-1][j+1])&&(area[k-n+i][j]==area[k-n+i-2][j+1])
&&(area[k-n+i][j]==area[k-n+i+1][j+1])&&(area[k-n+i][j]==area[k-n+i+2][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i,j+1,3);
if (tmp>mx)mx=tmp;
}
}
}
if (mx.rank==3)return;
for (int i=1;i<=n;i++)
for (int j=1;j<=m;j++)
{
if (i>1)
{
if ((j>=2)&&(j<=m-2)
&&(area[k-n+i][j]==area[k-n+i-1][j-1])
&&(area[k-n+i][j]==area[k-n+i-1][j+1])&&(area[k-n+i][j]==area[k-n+i-1][j+2]))
{
tmp=exchange(k-n+i,j,k-n+i-1,j,2);
if (tmp>mx)mx=tmp;
}
if ((j>=3)&&(j<=m-1)
&&(area[k-n+i][j]==area[k-n+i-1][j-1])&&(area[k-n+i][j]==area[k-n+i-1][j-2])
&&(area[k-n+i][j]==area[k-n+i-1][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i-1,j,2);
if (tmp>mx)mx=tmp;
}
}
if (i<n)
{
if ((j>=2)&&(j<=m-2)
&&(area[k-n+i][j]==area[k-n+i+1][j-1])
&&(area[k-n+i][j]==area[k-n+i+1][j+1])&&(area[k-n+i][j]==area[k-n+i+1][j+2]))
{
tmp=exchange(k-n+i,j,k-n+i+1,j,2);
if (tmp>mx)mx=tmp;
}
if ((j>=3)&&(j<=m-1)
&&(area[k-n+i][j]==area[k-n+i+1][j-1])&&(area[k-n+i][j]==area[k-n+i+1][j-2])
&&(area[k-n+i][j]==area[k-n+i+1][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i+1,j,2);
if (tmp>mx)mx=tmp;
}
}
if (j>1)
{
if ((i>=2)&&(i<=n-2)
&&(area[k-n+i][j]==area[k-n+i-1][j-1])
&&(area[k-n+i][j]==area[k-n+i+1][j-1])&&(area[k-n+i][j]==area[k-n+i+2][j-1]))
{
tmp=exchange(k-n+i,j,k-n+i,j-1,2);
if (tmp>mx)mx=tmp;
}
if ((i>=3)&&(i<=n-1)
&&(area[k-n+i][j]==area[k-n+i-1][j-1])&&(area[k-n+i][j]==area[k-n+i-2][j-1])
&&(area[k-n+i][j]==area[k-n+i+1][j-1]))
{
tmp=exchange(k-n+i,j,k-n+i,j-1,2);
if (tmp>mx)mx=tmp;
}
}
if (j<m)
{
if ((i>=2)&&(i<=n-2)
&&(area[k-n+i][j]==area[k-n+i-1][j+1])
&&(area[k-n+i][j]==area[k-n+i+1][j+1])&&(area[k-n+i][j]==area[k-n+i+2][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i,j+1,2);
if (tmp>mx)mx=tmp;
}
if ((i>=3)&&(i<=n-1)
&&(area[k-n+i][j]==area[k-n+i-1][j+1])&&(area[k-n+i][j]==area[k-n+i-2][j+1])
&&(area[k-n+i][j]==area[k-n+i+1][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i,j+1,2);
if (tmp>mx)mx=tmp;
}
}
}
if (mx.rank==2)return;
for (int i=1;i<=n;i++)
for (int j=1;j<=m;j++)
{
if (i>1)
{
if ((j>=2)&&(j<=m-1)
&&(area[k-n+i][j]==area[k-n+i-1][j-1])
&&(area[k-n+i][j]==area[k-n+i-1][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i-1,j,1);
if (tmp>mx)mx=tmp;
}
if ((j>=3)
&&(area[k-n+i][j]==area[k-n+i-1][j-1])
&&(area[k-n+i][j]==area[k-n+i-1][j-2]))
{
tmp=exchange(k-n+i,j,k-n+i-1,j,1);
if (tmp>mx)mx=tmp;
}
if ((j<=m-2)
&&(area[k-n+i][j]==area[k-n+i-1][j+1])
&&(area[k-n+i][j]==area[k-n+i-1][j+2]))
{
tmp=exchange(k-n+i,j,k-n+i-1,j,1);
if (tmp>mx)mx=tmp;
}
}
if (i<n)
{
if ((j>=2)&&(j<=m-1)
&&(area[k-n+i][j]==area[k-n+i+1][j-1])
&&(area[k-n+i][j]==area[k-n+i+1][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i+1,j,1);
if (tmp>mx)mx=tmp;
}
if ((j>=3)
&&(area[k-n+i][j]==area[k-n+i+1][j-1])
&&(area[k-n+i][j]==area[k-n+i+1][j-2]))
{
tmp=exchange(k-n+i,j,k-n+i+1,j,1);
if (tmp>mx)mx=tmp;
}
if ((j<=m-2)
&&(area[k-n+i][j]==area[k-n+i+1][j+1])
&&(area[k-n+i][j]==area[k-n+i+1][j+2]))
{
tmp=exchange(k-n+i,j,k-n+i+1,j,1);
if (tmp>mx)mx=tmp;
}
}
if (j>1)
{
if ((i>=2)&&(i<=n-1)
&&(area[k-n+i][j]==area[k-n+i-1][j-1])
&&(area[k-n+i][j]==area[k-n+i+1][j-1]))
{
tmp=exchange(k-n+i,j,k-n+i,j-1,1);
if (tmp>mx)mx=tmp;
}
if ((i>=3)
&&(area[k-n+i][j]==area[k-n+i-1][j-1])
&&(area[k-n+i][j]==area[k-n+i-2][j-1]))
{
tmp=exchange(k-n+i,j,k-n+i,j-1,1);
if (tmp>mx)mx=tmp;
}
if ((i<=n-2)
&&(area[k-n+i][j]==area[k-n+i+1][j-1])
&&(area[k-n+i][j]==area[k-n+i+2][j-1]))
{
tmp=exchange(k-n+i,j,k-n+i,j-1,1);
if (tmp>mx)mx=tmp;
}
}
if (j<m)
{
if ((i>=2)&&(i<=n-1)
&&(area[k-n+i][j]==area[k-n+i-1][j+1])
&&(area[k-n+i][j]==area[k-n+i+1][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i,j+1,1);
if (tmp>mx)mx=tmp;
}
if ((i>=3)
&&(area[k-n+i][j]==area[k-n+i-1][j+1])
&&(area[k-n+i][j]==area[k-n+i-2][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i,j+1,1);
if (tmp>mx)mx=tmp;
}
if ((i<=n-2)
&&(area[k-n+i][j]==area[k-n+i+1][j+1])
&&(area[k-n+i][j]==area[k-n+i+2][j+1]))
{
tmp=exchange(k-n+i,j,k-n+i,j+1,1);
if (tmp>mx)mx=tmp;
}
}
}
}
void remove(int times)
{
bool rm[15][15];
memset(rm,0,sizeof(rm));
if (mx.rank==6)
{
for (int i=1;i<=n;i++)
for (int j=1;j<=m;j++)
rm[i][j]=1;
}
else if (mx.rank==5)
{
int color;
if (sp[mx.u1][mx.v1]!=3)color=area[mx.u1][mx.v1];
else color=area[mx.u2][mx.v2];
for (int i=1;i<=n;i++)
for (int j=1;j<=m;j++)
if (area[k-n+i][j]==color)
rm[i][j]=1;
rm[mx.u1-k+n][mx.v1]=rm[mx.u2-k+n][mx.v2]=1;
}
else
{
for (int i=1;i<=n;i++)
for (int j=1;j<=m;j++)
{
if ((j>=2)&&(j<=m-1)&&(area[k-n+i][j]==area[k-n+i][j-1])&&(area[k-n+i][j]==area[k-n+i][j+1]))
{
rm[i][j]=1;
rm[i][j-1]=1;
rm[i][j+1]=1;
}
if ((i>=2)&&(i<=n-1)&&(area[k-n+i][j]==area[k-n+i-1][j])&&(area[k-n+i][j]==area[k-n+i+1][j]))
{
rm[i][j]=1;
rm[i-1][j]=1;
rm[i+1][j]=1;
}
}
}
for (int i=1;i<=n;i++)
for (int j=1;j<=m;j++)
{
if (rm[i][j])continue;
for (int p=1;p<=n;p++)
if (rm[p][j]&&(sp[k-n+p][j]==1))rm[i][j]=1;
for (int p=1;p<=m;p++)
if (rm[i][p]&&(sp[k-n+i][p]==2))rm[i][j]=1;
}
int new_area[35][15],new_sp[35][15];
memset(new_area,0,sizeof(new_area));
memset(new_sp,0,sizeof(new_sp));
if (mx.v1>=2&&mx.v1<=m-1)
{
if ((area[mx.u1][mx.v1]==area[mx.u1][mx.v1-1])&&(area[mx.u1][mx.v1]==area[mx.u1][mx.v1-2])
&&(area[mx.u1][mx.v1]==area[mx.u1][mx.v1+1])&&(area[mx.u1][mx.v1]==area[mx.u1][mx.v1+2]))
{
new_sp[mx.u1][mx.v1-2]=3;
}
else if ((area[mx.u1][mx.v1]==area[mx.u1][mx.v1-1])
&&(area[mx.u1][mx.v1]==area[mx.u1][mx.v1+1])&&(area[mx.u1][mx.v1]==area[mx.u1][mx.v1+2]))
{
new_area[mx.u1][mx.v1-1]=area[mx.u1][mx.v1];
new_sp[mx.u1][mx.v1-1]=1;
}
else if ((area[mx.u1][mx.v1]==area[mx.u1][mx.v1-1])&&(area[mx.u1][mx.v1]==area[mx.u1][mx.v1-2])
&&(area[mx.u1][mx.v1]==area[mx.u1][mx.v1+1]))
{
new_area[mx.u1][mx.v1-2]=area[mx.u1][mx.v1];
new_sp[mx.u1][mx.v1-2]=1;
}
}
if (mx.u1>=k-n+2&&mx.u1<=k-1)
{
if ((area[mx.u1][mx.v1]==area[mx.u1-1][mx.v1])&&(area[mx.u1][mx.v1]==area[mx.u1-2][mx.v1])
&&(area[mx.u1][mx.v1]==area[mx.u1+1][mx.v1])&&(area[mx.u1][mx.v1]==area[mx.u1+2][mx.v1]))
{
new_sp[mx.u1+2][mx.v1]=3;
}
else if ((area[mx.u1][mx.v1]==area[mx.u1-1][mx.v1])
&&(area[mx.u1][mx.v1]==area[mx.u1+1][mx.v1])&&(area[mx.u1][mx.v1]==area[mx.u1+2][mx.v1]))
{
new_area[mx.u1+2][mx.v1]=area[mx.u1][mx.v1];
new_sp[mx.u1+2][mx.v1]=2;
}
else if ((area[mx.u1][mx.v1]==area[mx.u1-1][mx.v1])&&(area[mx.u1][mx.v1]==area[mx.u1-2][mx.v1])
&&(area[mx.u1][mx.v1]==area[mx.u1+1][mx.v1]))
{
new_area[mx.u1+1][mx.v1]=area[mx.u1][mx.v1];
new_sp[mx.u1+1][mx.v1]=2;
}
}
if (mx.v2>=2&&mx.v2<=m-1)
{
if ((area[mx.u2][mx.v2]==area[mx.u2][mx.v2-1])&&(area[mx.u2][mx.v2]==area[mx.u2][mx.v2-2])
&&(area[mx.u2][mx.v2]==area[mx.u2][mx.v2+1])&&(area[mx.u2][mx.v2]==area[mx.u2][mx.v2+2]))
{
new_sp[mx.u2][mx.v2-2]=3;
}
else if ((area[mx.u2][mx.v2]==area[mx.u2][mx.v2-1])
&&(area[mx.u2][mx.v2]==area[mx.u2][mx.v2+1])&&(area[mx.u2][mx.v2]==area[mx.u2][mx.v2+2]))
{
new_area[mx.u2][mx.v2-1]=area[mx.u2][mx.v2];
new_sp[mx.u2][mx.v2-1]=1;
}
else if ((area[mx.u2][mx.v2]==area[mx.u2][mx.v2-1])&&(area[mx.u2][mx.v2]==area[mx.u2][mx.v2-2])
&&(area[mx.u2][mx.v2]==area[mx.u2][mx.v2+1]))
{
new_area[mx.u2][mx.v2-2]=area[mx.u2][mx.v2];
new_sp[mx.u2][mx.v2-2]=1;
}
}
if (mx.u2>=k-n+2&&mx.u2<=k-1)
{
if ((area[mx.u2][mx.v2]==area[mx.u2-1][mx.v2])&&(area[mx.u2][mx.v2]==area[mx.u2-2][mx.v2])
&&(area[mx.u2][mx.v2]==area[mx.u2+1][mx.v2])&&(area[mx.u2][mx.v2]==area[mx.u2+2][mx.v2]))
{
new_sp[mx.u2+2][mx.v2]=3;
}
else if ((area[mx.u2][mx.v2]==area[mx.u2-1][mx.v2])
&&(area[mx.u2][mx.v2]==area[mx.u2+1][mx.v2])&&(area[mx.u2][mx.v2]==area[mx.u2+2][mx.v2]))
{
new_area[mx.u2+2][mx.v2]=area[mx.u2][mx.v2];
new_sp[mx.u2+2][mx.v2]=2;
}
else if ((area[mx.u2][mx.v2]==area[mx.u2-1][mx.v2])&&(area[mx.u2][mx.v2]==area[mx.u2-2][mx.v2])
&&(area[mx.u2][mx.v2]==area[mx.u2+1][mx.v2]))
{
new_area[mx.u2+1][mx.v2]=area[mx.u2][mx.v2];
new_sp[mx.u2+1][mx.v2]=2;
}
}
for (int i=1;i<=n;i++)
for (int j=1;j<=m;j++)
if (rm[i][j])
{
score+=times*(sp[k-n+i][j]?3:1);
area[k-n+i][j]=sp[k-n+i][j]=0;
}
for (int i=k-n+1;i<=k;i++)
for (int j=1;j<=m;j++)
if (rm[i-k+n][j])
{
area[i][j]=new_area[i][j];
sp[i][j]=new_sp[i][j];
}
}
void fall()
{
for (int p=1;p<=k;p++)
for (int i=1;i<k;i++)
for (int j=1;j<=m;j++)
if ((area[i+1][j]==0)&&(sp[i+1][j]==0))
{
area[i+1][j]=area[i][j];
area[i][j]=0;
sp[i+1][j]=sp[i][j];
sp[i][j]=0;
}
}
bool empty()
{
for (int i=1;i<=n;i++)
for (int j=1;j<=m;j++)
if (!area[k-n+i][j])return 1;
return 0;
}
bool check()
{
for (int i=2;i<n;i++)
for (int j=2;j<m;j++)
{
if ((area[k-n+i][j]==area[k-n+i-1][j])&&(area[k-n+i][j]==area[k-n+i+1][j]))return 1;
if ((area[k-n+i][j]==area[k-n+i][j-1])&&(area[k-n+i][j]==area[k-n+i][j+1]))return 1;
}
return 0;
}
int main()
{
freopen("1.in","r",stdin);
freopen("1.ans","w",stdout);
scanf("%d",&T);
while (T--)
{
scanf("%d%d%d",&k,&n,&m);
memset(area,0,sizeof(area));
for (int i=1;i<=k;i++)
{
scanf("%s",s+1);
for (int j=1;j<=m;j++)
area[i][j]=s[j]-'A'+1;
}
memset(sp,0,sizeof(sp));
score=0;
while (true)
{
mx=exchange(0,0,0,0,0);
find();
if (mx.rank==0)break;
swap(area[mx.u1][mx.v1],area[mx.u2][mx.v2]);
remove(times=1);
mx=exchange(0,0,0,0,0);
fall();
if (empty())break;
while (check())
{
times*=2;
remove(times);
fall();
if (empty())break;
}
if (empty())break;
}
printf("%d\n",score);
}
return 0;
}
| [
"minehahata@outlook.com"
] | minehahata@outlook.com |
3dcf5298031bd1db4b46383bea2270595e10dab6 | 784883785e9bfdb7eb8031b1311321f2901e13bd | /C++ Codes/Fibeasy.cpp | 46f88e5fe733b159cff815bb0ecaefb9f20b9567 | [] | no_license | jaimittal1998/Competitive-Programming | 3a6cea7ce56ab3fae0dedd00212df84ec7212b9d | d2387e6de4c3e029ec7b87b6b98fb6607400a150 | refs/heads/master | 2022-11-10T03:44:49.209525 | 2020-06-22T12:40:36 | 2020-06-22T12:40:36 | 118,754,177 | 2 | 2 | null | 2018-10-06T17:27:40 | 2018-01-24T11:08:38 | C++ | UTF-8 | C++ | false | false | 385 | cpp | #include<bits/stdc++.h>
using namespace std;
int fib(int n) {
double phi = (1 + sqrt(5)) / 2;
return round(pow(phi, n) / sqrt(5));
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
long T;
cin>>T;
while(T--)
{
long N;
cin>>N;
long p = (long)log2(N);
long id = (long)pow(2, p);
cout<<fib(id-1)%10<<endl;
}
return 0;
}
| [
"30296016+jaimittal1998@users.noreply.github.com"
] | 30296016+jaimittal1998@users.noreply.github.com |
6002da773457fb481e52adb1b54cabfd5033e46c | 9f8d8a0107bce1431859a7660f02573f1f8f8dce | /Deck/Deck.h | 5ca0e7cde51f22731004512943e5a8d0e534305c | [] | no_license | PaulChu756/1stYear | 7cd880effcd1acff25885e49c449d017bf9b0255 | 212d471173d7134c0bbd0843e63fd30182c9bcab | refs/heads/master | 2021-03-22T00:37:25.643580 | 2016-09-15T21:13:28 | 2016-09-15T21:13:28 | 68,332,000 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 106 | h | #pragma once
#include <iostream>
class Deck
{
public:
int cards = 52;
int players;
int dealCards();
}; | [
"paulchu756@gmail.com"
] | paulchu756@gmail.com |
9f9ae09a8c4590ed97d004d0ed1aaa5538c385f6 | 69814c8bc7a132b09bd7d99d431fe0373e722c33 | /cubecodec/PictureBuffer.h | e064aaefd3b3f2756fbd6cb6f9dadf68a55adf34 | [] | no_license | korzec/Cube | ec278e98763f55f0553e66008b4a08f18cafd126 | 7a15995d038e29b5371d087c966fbcacea6a825c | refs/heads/master | 2021-01-19T09:29:08.833665 | 2011-11-10T20:50:19 | 2011-11-10T20:50:19 | 2,861,535 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 814 | h | /*
* File: PictureBuffer.h
* Author: korzec
*
* Created on July 17, 2011, 3:30 PM
*/
#ifndef PICTUREBUFFER_H
#define PICTUREBUFFER_H
#include "types.h"
#include "Picture.h"
#include <vector>
///holds a vector of Picture
class PictureBuffer
{
size_t maxSize;
PictureVector pictures;
public:
/// initializes buffer with max size
PictureBuffer(size_t);
///adds picture to the buffer
bool Add(Picture&);
///adds group of pictures if there is enough space
bool AddGOP(PictureVector&);
///removes oldest picture
bool RemoveOldest();
///outputs current buffer size
int GetCount();
bool isNotFull();
bool GetGOP(size_t, PictureVector&);
///returns false if buffer is smaller than size
bool RemoveOldGOP(size_t);
};
#endif /* PICTUREBUFFER_H */
| [
"korzec@gmail.com"
] | korzec@gmail.com |
b4f8ec25270b04e0187b9a15fe9c9b77c39a3d71 | 428989cb9837b6fedeb95e4fcc0a89f705542b24 | /erle/ros2_ws/install/include/std_msgs/msg/dds_opensplice/float64__type_support.hpp | 4e1e375699862378285f173cc1d03d820cb7ab28 | [] | no_license | swift-nav/ros_rover | 70406572cfcf413ce13cf6e6b47a43d5298d64fc | 308f10114b35c70b933ee2a47be342e6c2f2887a | refs/heads/master | 2020-04-14T22:51:38.911378 | 2016-07-08T21:44:22 | 2016-07-08T21:44:22 | 60,873,336 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 121 | hpp | /home/erle/ros2_ws/build/std_msgs/rosidl_typesupport_opensplice_cpp/std_msgs/msg/dds_opensplice/float64__type_support.hpp | [
"igdoty@swiftnav.com"
] | igdoty@swiftnav.com |
990b63495dadd111ae7f2cc9935c113b8c51f269 | 44503210083fdc9ecf8d26bdd523c39ee05e6cd5 | /libs/activityManagerTools/src/ControlThread.cpp | 5a55728efd2b02d6dbc7990bf1e10dec2102688a | [] | no_license | traversaro/ocra-wbi-plugins | 17ec816ac0a4bd1bb7a5890463c0092267b57893 | 214cec3729132def1c1be90c0b17cedc02fde6e6 | refs/heads/master | 2021-01-18T00:40:26.533301 | 2016-01-18T22:41:13 | 2016-01-18T22:41:13 | 49,941,987 | 0 | 0 | null | 2016-01-19T09:36:09 | 2016-01-19T09:36:09 | null | UTF-8 | C++ | false | false | 9,340 | cpp | #include <activityManagerTools/ControlThread.h>
int ControlThread::threadId = 0;
ControlThread::ControlThread(int period, const std::string& taskRpcPortName):
RateThread(period),
taskRpcServerName(taskRpcPortName),
controlThreadPeriod(period),
weightDimension(0),
stateDimension(0),
closePortTimeout(5.0)
{
ControlThread::threadId++;
}
ControlThread::~ControlThread()
{
}
bool ControlThread::threadInit()
{
if(openControlPorts()){
if(connectControlPorts()){
if(getTaskDimensions()){
getTaskParameters(originalTaskParams);
currentTaskParams = originalTaskParams;
}
}
}
while(waitingForFirstStateMessage)
{
yarp::os::Time::delay(controlThreadPeriod/1000.);
}
return ct_threadInit();
}
void ControlThread::threadRelease()
{
std::cout << "\nControlThread: Closing control ports for thread id = " << ControlThread::threadId << " for task: " << originalTaskParams.name << ".\n\n";
inputPort.close();
outputPort.close();
yarp::os::Bottle message, reply;
message.addString("closeControlPorts");
threadRpcClient.write(message, reply);
double closeDelay = 0.5;
double closeDelayTotal = 0.0;
while (!reply.get(0).asInt() && closeDelayTotal < closePortTimeout) // if 1
{
reply.clear();
threadRpcClient.write(message, reply);
yarp::os::Time::delay(closeDelay);
closeDelayTotal += closeDelay;
}
if (reply.get(0).asInt()) {
threadRpcClient.close();
}else{
std::cout << "[WARNING](ControlThread::threadRelease): Couldn't close task control ports." << std::endl;
}
std::cout << "Done.\n";
ct_threadRelease();
}
void ControlThread::run()
{
ct_run();
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool ControlThread::openControlPorts()
{
bool portsOpened = yarp.checkNetwork();
if (portsOpened)
{
std::string portNameBase = "/CT/" + getThreadType() + "/id_";
std::stringstream portNameStream;
portNameStream << ControlThread::threadId;
portNameBase += portNameStream.str();
inputPortName = portNameBase + ":i";
outputPortName = portNameBase + ":o";
portsOpened = portsOpened && inputPort.open(inputPortName.c_str());
portsOpened = portsOpened && outputPort.open(outputPortName.c_str());
threadRpcClientName = portNameBase + "/rpc:o";
portsOpened = portsOpened && threadRpcClient.open(threadRpcClientName.c_str());
isFirstInputBottle = true;
inpCallback = new inputCallback(*this);
inputPort.setReader(*inpCallback);
waitingForFirstStateMessage = true;
}
else{
std::cout << "[ERROR](ControlThread::openControlPorts): Yarp network not running." << std::endl;
}
return portsOpened;
}
bool ControlThread::connectControlPorts()
{
bool portsConnected = yarp.checkNetwork();
if (portsConnected)
{
portsConnected = portsConnected && yarp.connect(threadRpcClientName.c_str(), taskRpcServerName.c_str());
yarp::os::Bottle message, reply;
message.addString("openControlPorts");
threadRpcClient.write(message, reply);
if (reply.get(0).asInt()) // if 1
{
std::string taskOutputPortName, taskInputPortName;
message.clear();
reply.clear();
message.addString("getControlPortNames");
threadRpcClient.write(message, reply);
taskInputPortName = reply.get(1).asString();
taskOutputPortName = reply.get(2).asString();
portsConnected = portsConnected && yarp.connect(taskOutputPortName.c_str(), inputPortName.c_str());
portsConnected = portsConnected && yarp.connect(outputPortName.c_str(), taskInputPortName.c_str());
}
else
{
portsConnected = false;
}
}
else{
std::cout << "[ERROR](ControlThread::connectControlPorts): Yarp network not running." << std::endl;
}
return portsConnected;
}
bool ControlThread::parseInput(yarp::os::Bottle* input)
{
if (isFirstInputBottle) {
currentStateVector.resize(input->size());
isFirstInputBottle = false;
waitingForFirstStateMessage = false;
}
for(int i=0; i<input->size(); i++)
{
currentStateVector(i) = input->get(i).asDouble();
}
}
/**************************************************************************************************
Nested PortReader Class
**************************************************************************************************/
ControlThread::inputCallback::inputCallback(ControlThread& ctBaseRef):ctBase(ctBaseRef)
{
//do nothing
}
bool ControlThread::inputCallback::read(yarp::os::ConnectionReader& connection)
{
// std::cout << "Got a message!" << std::endl;
yarp::os::Bottle input;
if (input.read(connection)){
return ctBase.parseInput(&input);
}
else{
return false;
}
}
/**************************************************************************************************
**************************************************************************************************/
Eigen::VectorXd ControlThread::getCurrentState()
{
return currentStateVector;
}
void ControlThread::sendGetStateMessage()
{
yarp::os::Bottle message;
message.addString("updateCurrentStateAndSend");
inputPort.write(message);
}
bool ControlThread::deactivateTask()
{
yarp::os::Bottle message, reply;
message.addString("deactivate");
threadRpcClient.write(message, reply);
if (reply.get(0).asString()=="deactivated")
{
getTaskParameters(currentTaskParams);
return true;
}
else{return false;}
}
bool ControlThread::activateTask()
{
yarp::os::Bottle message, reply;
message.addString("activate");
threadRpcClient.write(message, reply);
if (reply.get(0).asString()=="activated")
{
getTaskParameters(currentTaskParams);
return true;
}
else{return false;}
}
bool ControlThread::getTaskDimensions()
{
yarp::os::Bottle message, reply;
message.addString("getWeight");
threadRpcClient.write(message, reply);
if (reply.size()>1) {
weightDimension = reply.size()-1;
}else{
std::cout << "[ERROR](ControlThread::getTaskDimensions): Did not get a valid response from the task for its weight dimension." << std::endl;
return false;
}
message.clear();
reply.clear();
message.addString("getDesired");
threadRpcClient.write(message, reply);
if (reply.size()>1) {
stateDimension = reply.size()-1;
}else{
std::cout << "[ERROR](ControlThread::getTaskDimensions): Did not get a valid response from the task for its state dimension." << std::endl;
return false;
}
return true;
}
bool ControlThread::getTaskParameters(TaskParameters& TP)
{
TP.weight.resize(weightDimension);
TP.desired.resize(stateDimension);
TP.currentState.resize(stateDimension);
yarp::os::Bottle message, reply;
message.addString("getStiffness");
message.addString("getDamping");
message.addString("getDimension");
message.addString("getWeight");
message.addString("getDesired");
message.addString("getCurrentState");
message.addString("getType");
message.addString("getName");
message.addString("getActivityStatus");
int maxCount = message.size();
int count=0;
threadRpcClient.write(message, reply);
for(int i=0; i<reply.size(); i++)
{
if (reply.get(i).asString()=="Kp:"){
i++;
TP.kp = reply.get(i).asDouble();
count++;
}
else if (reply.get(i).asString()=="Kd:"){
i++;
TP.kd = reply.get(i).asDouble();
count++;
}
else if (reply.get(i).asString()=="Dimension:"){
i++;
TP.dimension = reply.get(i).asInt();
count++;
}
else if (reply.get(i).asString()=="Weight:"){
for(int j=0; j<weightDimension; j++){
i++;
TP.weight(j) = reply.get(i).asDouble();
}
count++;
}
else if (reply.get(i).asString()=="Desired:"){
for(int j=0; j<stateDimension; j++){
i++;
TP.desired(j) = reply.get(i).asDouble();
}
count++;
}
else if (reply.get(i).asString()=="currentState:"){
for(int j=0; j<stateDimension; j++){
i++;
TP.currentState(j) = reply.get(i).asDouble();
}
count++;
}
else if (reply.get(i).asString()=="Type:"){
i++;
TP.type = reply.get(i).asString();
count++;
}
else if (reply.get(i).asString()=="Name:"){
i++;
TP.name = reply.get(i).asString();
count++;
}
else if (reply.get(i).asString()=="activated"){
i++;
TP.isActive = reply.get(i).asBool();
count++;
}
}
return count==maxCount;
}
| [
"rlober@gmail.com"
] | rlober@gmail.com |
28028518b7a91475ab46008db4872b6e7118e4de | 1c102e6ec3b1f8926ef79fb2057419c20b5aa121 | /Exception3.cpp | fafb1427b7a7c5ee0c8af9f7ecf48718b04b4e94 | [] | no_license | amo-susi/robe_cpp | d0ac2c381138d61959406e00f65c5b61e1dc3c1c | 6f4f72dc6ccb92e52956c99c16ebe4e4fbbbcbcd | refs/heads/master | 2022-05-11T15:49:35.294442 | 2018-09-19T06:57:08 | 2018-09-19T06:57:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 369 | cpp | #include <iostream>
using namespace std;
void Error() {
try {
throw 1;
} catch(int error) {
throw "Error";
} catch(const char* error) {
cerr << "こっちでキャッチされるかな?" << endl;
}
}
int main() {
try {
Error();
} catch(const char* error) {
cerr << "それともこっちかな?" << endl;
}
}
| [
"an74abc@gmail.com"
] | an74abc@gmail.com |
b4a8e26d7531a6e10bad210225695412923444af | fc450cfb9e517ae947bb54b1aa8c6e00dcdd276f | /Part_2_textures_and_sprites/include/game.h | a3f12ff83e558961932de33e0610b5dd7878d64e | [] | no_license | turbo-team-fv/sfml-course | 4f60ed7dfea41a19134ebede0b0d0f83c95a99e0 | 02d26ee5fabc64e82fb106332d9913a1c9e26086 | refs/heads/master | 2020-04-27T06:40:24.662120 | 2019-03-06T09:27:51 | 2019-03-06T09:27:51 | 174,115,177 | 0 | 0 | null | 2019-03-06T09:35:39 | 2019-03-06T09:35:38 | null | UTF-8 | C++ | false | false | 392 | h | #pragma once
#ifndef GAME_H
#define GAME_H
#include <SFML/Graphics.hpp>
using namespace sf;
class game
{
public:
// Constructor
game(int width, int height, std::string title);
void gameLoop();
void draw();
private:
RenderWindow * window1;
int fps;
Texture * texture1;
Sprite * sprite1;
};
#endif // GAME_H
| [
"ramonmorcillocascales@gmail.com"
] | ramonmorcillocascales@gmail.com |
1809c201e4253590d562412dfa0d784a961e0c59 | 19765ddeccc56a2d6742b3361e02e395a523c78a | /src/sexp/Ast.cpp | 38cf495b73b52e348009488fbacdfd0e76773502 | [
"Apache-2.0"
] | permissive | KarlSchimpf/decompressor-prototype | d524c65b663763bc761263edb407b44d9a8dac40 | 72ef821ab7408fc9954a8ddb417614ded6b58481 | refs/heads/master | 2020-04-04T19:20:02.339744 | 2016-08-03T17:07:43 | 2016-08-03T17:07:43 | 60,622,859 | 0 | 0 | null | 2017-03-13T22:23:39 | 2016-06-07T15:05:32 | C++ | UTF-8 | C++ | false | false | 17,370 | cpp | /* -*- C++ -*- */
/*
* Copyright 2016 WebAssembly Community Group participants
*
* 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.
*/
/* Implements AST's for modeling filter s-expressions */
#include "sexp/Ast.h"
#include "sexp/TextWriter.h"
#include "utils/Defs.h"
#include <algorithm>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
namespace wasm {
using namespace alloc;
using namespace decode;
using namespace utils;
namespace filt {
AstTraitsType AstTraits[NumNodeTypes] = {
#define X(tag, opcode, sexp_name, type_name, text_num_args, text_max_args) \
{ Op##tag, sexp_name, type_name, text_num_args, text_max_args } \
,
AST_OPCODE_TABLE
#undef X
};
const char* getNodeSexpName(NodeType Type) {
// TODO(KarlSchimpf): Make thread safe
static std::unordered_map<int, const char*> Mapping;
if (Mapping.empty()) {
for (size_t i = 0; i < NumNodeTypes; ++i) {
AstTraitsType& Traits = AstTraits[i];
Mapping[int(Traits.Type)] = Traits.SexpName;
}
}
char* Name = const_cast<char*>(Mapping[static_cast<int>(Type)]);
if (Name == nullptr) {
std::string NewName(std::string("NodeType::") +
std::to_string(static_cast<int>(Type)));
Name = new char[NewName.size() + 1];
Name[NewName.size()] = '\0';
memcpy(Name, NewName.data(), NewName.size());
Mapping[static_cast<int>(Type)] = Name;
}
return Name;
}
const char* getNodeTypeName(NodeType Type) {
// TODO(KarlSchimpf): Make thread safe
static std::unordered_map<int, const char*> Mapping;
if (Mapping.empty()) {
for (size_t i = 0; i < NumNodeTypes; ++i) {
AstTraitsType& Traits = AstTraits[i];
if (Traits.TypeName)
Mapping[int(Traits.Type)] = Traits.TypeName;
}
}
const char* Name = Mapping[static_cast<int>(Type)];
if (Name == nullptr)
Mapping[static_cast<int>(Type)] = Name = getNodeSexpName(Type);
return Name;
}
TraceClassSexp Node::Trace("filter sexp");
void Node::forceCompilation() {
}
void Node::append(Node*) {
decode::fatal("Node::append not supported for ast node!");
}
void Node::clearCaches(NodeVectorType &AdditionalNodes) {}
void Node::installCaches(NodeVectorType &AdditionalNodes) {}
// Note: we create duumy virtual forceCompilation() to force legal
// class definitions to be compiled in here. Classes not explicitly
// instantiated here will not link. This used to force an error if
// a node type is not defined with the correct template class.
void IntegerNode::forceCompilation() {
}
void SymbolNode::forceCompilation() {
}
void SymbolNode::clearCaches(NodeVectorType &AdditionalNodes) {
if (DefineDefinition)
AdditionalNodes.push_back(DefineDefinition);
if (DefaultDefinition)
AdditionalNodes.push_back(DefaultDefinition);
}
void SymbolNode::installCaches(NodeVectorType &AdditionalNodes) {
if (DefineDefinition)
AdditionalNodes.push_back(DefineDefinition);
if (DefaultDefinition)
AdditionalNodes.push_back(DefaultDefinition);
}
std::string SymbolNode::getStringName() const {
std::string Str(Name.size(), '\0');
for (size_t i = 0; i < Name.size(); ++i)
Str[i] = char(Name[i]);
return Str;
}
void SymbolNode::setDefineDefinition(Node* Defn) {
if (Defn) {
IsDefineUsingDefault = false;
DefineDefinition = Defn;
} else {
IsDefineUsingDefault = true;
DefineDefinition = DefaultDefinition;
}
}
void SymbolNode::setDefaultDefinition(Node* Defn) {
assert(Defn != nullptr);
DefaultDefinition = Defn;
if (IsDefineUsingDefault) {
DefineDefinition = Defn;
}
}
SymbolTable::SymbolTable(alloc::Allocator* Alloc) : Alloc(Alloc) {
Error = Alloc->create<ErrorNode>();
}
SymbolNode* SymbolTable::getSymbolDefinition(ExternalName& Name) {
SymbolNode* Node = SymbolMap[Name];
if (Node == nullptr) {
Node = Alloc->create<SymbolNode>(Alloc, Name);
Node->setDefaultDefinition(Error);
SymbolMap[Name] = Node;
}
return Node;
}
void SymbolTable::install(Node *Root) {
TraceClass::Method _("install", Node::Trace);
// Before starting, clear all known caches.
VisitedNodesType VisitedNodes;
NodeVectorType AdditionalNodes;
for (const auto &Pair : SymbolMap)
clearSubtreeCaches(Pair.second, VisitedNodes, AdditionalNodes);
clearSubtreeCaches(Root, VisitedNodes, AdditionalNodes);
NodeVectorType MoreNodes;
while (!AdditionalNodes.empty()) {
MoreNodes.swap(AdditionalNodes);
while (!MoreNodes.empty()) {
Node *Nd = MoreNodes.back();
MoreNodes.pop_back();
clearSubtreeCaches(Nd, VisitedNodes, AdditionalNodes);
}
}
VisitedNodes.clear();
installDefinitions(Root);
for (const auto &Pair : SymbolMap)
installSubtreeCaches(Pair.second, VisitedNodes, AdditionalNodes);
while (!AdditionalNodes.empty()) {
MoreNodes.swap(AdditionalNodes);
while (!MoreNodes.empty()) {
Node *Nd = MoreNodes.back();
MoreNodes.pop_back();
installSubtreeCaches(Nd, VisitedNodes, AdditionalNodes);
}
}
}
void SymbolTable::clearSubtreeCaches(Node *Nd,
VisitedNodesType &VisitedNodes,
NodeVectorType &AdditionalNodes) {
if (VisitedNodes.count(Nd))
return;
TraceClass::Method _("clearSubtreeCaches", Node::Trace);
Node::Trace.traceSexp(Nd);
VisitedNodes.insert(Nd);
Nd->clearCaches(AdditionalNodes);
for (auto *Kid : *Nd)
AdditionalNodes.push_back(Kid);
}
void SymbolTable::installSubtreeCaches(Node *Nd,
VisitedNodesType &VisitedNodes,
NodeVectorType &AdditionalNodes) {
if (VisitedNodes.count(Nd))
return;
TraceClass::Method _("installSubtreeCaches", Node::Trace);
Node::Trace.traceSexp(Nd);
VisitedNodes.insert(Nd);
Nd->installCaches(AdditionalNodes);
for (auto *Kid : *Nd)
AdditionalNodes.push_back(Kid);
}
void SymbolTable::installDefinitions(Node* Root) {
TraceClass::Method _("installDefinitions", Node::Trace);
Node::Trace.traceSexp(Root);
if (Root == nullptr)
return;
switch (Root->getType()) {
default:
return;
case OpFile:
case OpSection:
for (Node* Kid : *Root)
installDefinitions(Kid);
return;
case OpDefine: {
auto* DefineSymbol = dyn_cast<SymbolNode>(Root->getKid(0));
assert(DefineSymbol);
DefineSymbol->setDefineDefinition(Root->getKid(1));
return;
}
case OpDefault: {
auto* DefaultSymbol = dyn_cast<SymbolNode>(Root->getKid(0));
assert(DefaultSymbol);
DefaultSymbol->setDefaultDefinition(Root->getKid(1));
return;
}
case OpUndefine: {
auto* UndefineSymbol = dyn_cast<SymbolNode>(Root->getKid(0));
assert(UndefineSymbol);
UndefineSymbol->setDefineDefinition(nullptr);
}
}
}
Node* NullaryNode::getKid(int) const {
return nullptr;
}
void NullaryNode::setKid(int, Node*) {
decode::fatal("NullaryNode::setKid not allowed");
}
bool NullaryNode::implementsClass(NodeType Type) {
switch (Type) {
default:
return false;
#define X(tag) \
case Op##tag: \
return true;
AST_NULLARYNODE_TABLE
#undef X
}
}
#define X(tag) \
void tag##Node::forceCompilation() {}
AST_NULLARYNODE_TABLE
#undef X
Node* UnaryNode::getKid(int Index) const {
if (Index < 1)
return Kids[0];
return nullptr;
}
void UnaryNode::setKid(int Index, Node* NewValue) {
assert(Index < 1);
Kids[0] = NewValue;
}
bool UnaryNode::implementsClass(NodeType Type) {
switch (Type) {
default:
return false;
#define X(tag) \
case Op##tag: \
return true;
AST_UNARYNODE_TABLE
#undef X
}
}
#define X(tag) \
void tag##Node::forceCompilation() {}
AST_UNARYNODE_TABLE
#undef X
Node* BinaryNode::getKid(int Index) const {
if (Index < 2)
return Kids[Index];
return nullptr;
}
void BinaryNode::setKid(int Index, Node* NewValue) {
assert(Index < 2);
Kids[Index] = NewValue;
}
bool BinaryNode::implementsClass(NodeType Type) {
switch (Type) {
default:
return false;
#define X(tag) \
case Op##tag: \
return true;
AST_BINARYNODE_TABLE
#undef X
}
}
#define X(tag) \
void tag##Node::forceCompilation() {}
AST_BINARYNODE_TABLE
#undef X
Node* TernaryNode::getKid(int Index) const {
if (Index < 3)
return Kids[Index];
return nullptr;
}
void TernaryNode::setKid(int Index, Node* NewValue) {
assert(Index < 3);
Kids[Index] = NewValue;
}
bool TernaryNode::implementsClass(NodeType Type) {
switch (Type) {
default:
return false;
#define X(tag) \
case Op##tag: \
return true;
AST_TERNARYNODE_TABLE
#undef X
}
}
#define X(tag) \
void tag##Node::forceCompilation() {}
AST_TERNARYNODE_TABLE
#undef X
bool NaryNode::implementsClass(NodeType Type) {
switch (Type) {
default:
return false;
#define X(tag) \
case Op##tag: \
return true;
AST_NARYNODE_TABLE
#undef X
}
}
void NaryNode::forceCompilation() {
}
#define X(tag) \
void tag##Node::forceCompilation() {}
AST_NARYNODE_TABLE
#undef X
void SelectBaseNode::forceCompilation() {
}
const CaseNode* SelectBaseNode::getCase(IntType Key) const {
if (LookupMap.count(Key))
return LookupMap.at(Key);
return nullptr;
}
void SelectBaseNode::installFastLookup() {
TextWriter Writer;
for (auto* Kid : *this) {
if (const auto* Case = dyn_cast<CaseNode>(Kid)) {
if (const auto* Key = dyn_cast<IntegerNode>(Case->getKid(0))) {
LookupMap[Key->getValue()] = Case;
}
}
}
}
int OpcodeNode::WriteRange::compare(const WriteRange &R) const {
if (Min < R.Min)
return -1;
if (Min > R.Min)
return 1;
if (Max < R.Max)
return -1;
if (Max > R.Max)
return 1;
if ((void*)Case < (void*)R.Case)
return -1;
if ((void*)Case > (void*)R.Case)
return 1;
return 0;
}
void OpcodeNode::WriteRange::traceInternal(const char* Prefix) const {
FILE* Out = Node::Trace.getFile();
Node::Trace.indent();
fprintf(Out, "[%" PRIxMAX "..%" PRIxMAX "](%" PRIuMAX"):\n",
uintmax_t(Min), uintmax_t(Max), uintmax_t(ShiftValue));
Node::Trace.traceSexp(Case);
}
namespace {
constexpr uint32_t MaxOpcodeWidth = 64;
IntType getWidthMask(uint32_t BitWidth) {
return std::numeric_limits<IntType>::max() >> (MaxOpcodeWidth - BitWidth);
}
IntType getIntegerValue(Node* N) {
if (auto* IntVal = dyn_cast<IntegerNode>(N))
return IntVal->getValue();
fatal("Integer value expected but not found");
return 0;
}
bool getCaseSelectorWidth(const Node *Nd, uint32_t &Width) {
switch (Nd->getType()) {
default:
// Not allowed in opcode cases.
Node::Trace.errorSexp("Non-fixed width opcode format: ", Nd);
return false;
case OpUint8NoArgs:
Width = 8;
return true;
case OpUint8OneArg:
break;
case OpUint32NoArgs:
Width = 32;
return true;
case OpUint32OneArg:
break;
case OpUint64NoArgs:
Width = 64;
return true;
case OpUint64OneArg:
break;
}
Width = getIntegerValue(Nd->getKid(0));
if (Width == 0 || Width >= MaxOpcodeWidth) {
Node::Trace.errorSexp("Bit size not valid: ", Nd);
return false;
}
return true;
}
bool addFormatWidth(const Node *Nd,
std::unordered_set<uint32_t> &CaseWidths) {
uint32_t Width;
if (!getCaseSelectorWidth(Nd, Width))
return false;
CaseWidths.insert(Width);
return true;
}
bool collectCaseWidths(IntType Key, const Node *Nd,
std::unordered_set<uint32_t> &CaseWidths) {
switch (Nd->getType()) {
default:
// Not allowed in opcode cases.
Node::Trace.errorSexp("Non-fixed width opcode format: ", Nd);
return false;
case OpOpcode:
if (isa<LastReadNode>(Nd->getKid(0))) {
for (int i = 1, NumKids = Nd->getNumKids(); i < NumKids; ++i) {
Node *Kid = Nd->getKid(i);
assert(isa<CaseNode>(Kid));
const CaseNode *Case = cast<CaseNode>(Kid);
IntType CaseKey = getIntegerValue(Case->getKid(0));
const Node *CaseBody = Case->getKid(1);
if (CaseKey == Key)
// Already handled by outer case.
continue;
if (!collectCaseWidths(CaseKey, CaseBody, CaseWidths)) {
Node::Trace.errorSexp("Inside: ", Nd);
return false;
}
}
} else {
uint32_t Width;
if (!getCaseSelectorWidth(Nd->getKid(0), Width)) {
Node::Trace.errorSexp("Inside: ", Nd);
return false;
}
if (Width >= MaxOpcodeWidth) {
Node::Trace.errorSexp("Bit width(s) too big: ", Nd);
return false;
}
CaseWidths.insert(Width);
for (int i = 1, NumKids = Nd->getNumKids(); i < NumKids; ++i) {
Node *Kid = Nd->getKid(i);
assert(isa<CaseNode>(Kid));
const CaseNode *Case = cast<CaseNode>(Kid);
IntType CaseKey = getIntegerValue(Case->getKid(0));
const Node *CaseBody = Case->getKid(1);
std::unordered_set<uint32_t> LocalCaseWidths;
if (!collectCaseWidths(CaseKey, CaseBody, LocalCaseWidths)) {
Node::Trace.errorSexp("Inside: ", Nd);
return false;
}
for (uint32_t CaseWidth: LocalCaseWidths) {
uint32_t CombinedWidth = Width + CaseWidth;
if (CombinedWidth >= MaxOpcodeWidth) {
Node::Trace.errorSexp("Bit width(s) too big: ", Nd);
return false;
}
CaseWidths.insert(CombinedWidth);
}
}
}
return true;
case OpUint8NoArgs:
case OpUint8OneArg:
case OpUint32NoArgs:
case OpUint32OneArg:
case OpUint64NoArgs:
case OpUint64OneArg:
return addFormatWidth(Nd, CaseWidths);
case OpEval:
if (auto *Sym = dyn_cast<SymbolNode>(Nd->getKid(0)))
return collectCaseWidths(Key, Sym->getDefineDefinition(),
CaseWidths);
Node::Trace.errorSexp("Inside: ", Nd);
return false;
}
}
} // end of anonymous namespace
#define X(tag) \
void tag##Node::forceCompilation() {}
AST_SELECTNODE_TABLE
#undef X
void OpcodeNode::forceCompilation() {
}
void OpcodeNode::clearCaches(NodeVectorType &AdditionalNodes) {
CaseRangeVector.clear();
}
void OpcodeNode::installCaseRanges() {
uint32_t InitialWidth;
if (!getCaseSelectorWidth(getKid(0), InitialWidth)) {
Node::Trace.errorSexp("Inside: ", this);
fatal("Unable to install caches for opcode s-expression");
}
for (int i = 1, NumKids = getNumKids(); i < NumKids; ++ i) {
assert(isa<CaseNode>(Kids[i]));
const CaseNode *Case = cast<CaseNode>(Kids[i]);
std::unordered_set<uint32_t> CaseWidths;
IntType Key = getIntegerValue(Case->getKid(0));
if (!collectCaseWidths(Key, Case->getKid(1),
CaseWidths)) {
Node::Trace.errorSexp("Inside: ", Case);
Node::Trace.errorSexp("Inside: ", this);
fatal("Unable to install caches for opcode s-expression");
}
for (uint32_t NestedWidth : CaseWidths) {
uint32_t Width = InitialWidth + NestedWidth;
if (Width > MaxOpcodeWidth) {
Node::Trace.errorSexp("Bit width(s) too big: ", this);
fatal("Unable to install caches for opcode s-expression");
}
IntType Min = Key << NestedWidth;
IntType Max = Min + getWidthMask(NestedWidth);
WriteRange Range(Case, Min, Max, NestedWidth);
CaseRangeVector.push_back(Range);
}
}
// Validate that ranges are not overlapping.
std::sort(CaseRangeVector.begin(), CaseRangeVector.end());
for (size_t i = 0, Last=CaseRangeVector.size() - 1; i < Last; ++i) {
const WriteRange &R1 = CaseRangeVector[i];
const WriteRange &R2 = CaseRangeVector[i+1];
if (R1.getMax() >= R2.getMin()) {
Node::Trace.errorSexp("Range 1: ", R1.getCase());
Node::Trace.errorSexp("Range 2: ", R2.getCase());
Node::Trace.errorSexp("Inside: ", this);
fatal("Opcode case ranges not unique");
}
}
}
void OpcodeNode::installCaches(NodeVectorType &AdditionalNodes) {
TraceClass::Method _("OpcodeNode::installCaches", Node::Trace);
Node::Trace.traceSexp(this);
installCaseRanges();
}
const CaseNode *OpcodeNode::getWriteCase(decode::IntType Value,
uint32_t &SelShift,
IntType &CaseMask) const {
// TODO(kschimf): Find a faster lookup (use at least binary search).
for (const auto &Range : CaseRangeVector) {
if (Value < Range.getMin()) {
SelShift = 0;
return nullptr;
}
else if (Value <= Range.getMax()) {
SelShift = Range.getShiftValue();
CaseMask = getWidthMask(SelShift);
return Range.getCase();
}
}
SelShift = 0;
return nullptr;
}
} // end of namespace filt
} // end of namespace wasm
| [
"noreply@github.com"
] | noreply@github.com |
c2bf79d257cdbc5cbf0ad646bfcded28c07594be | 6f2b6e9d77fc4dd5e1dae8ba6e5a66eb7c7ae849 | /sstd_boost/sstd/boost/hana/union.hpp | bebb9c23624d86937a179097e06fdc9c5adde350 | [
"BSL-1.0"
] | permissive | KqSMea8/sstd_library | 9e4e622e1b01bed5de7322c2682539400d13dd58 | 0fcb815f50d538517e70a788914da7fbbe786ce1 | refs/heads/master | 2020-05-03T21:07:01.650034 | 2019-04-01T00:10:47 | 2019-04-01T00:10:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,049 | hpp | /*!
@file
Defines `boost::hana::union`.
@copyright Louis Dionne 2013-2017
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#ifndef BOOST_HANA_UNION_HPP
#define BOOST_HANA_UNION_HPP
#include <sstd/boost/hana/fwd/union.hpp>
#include <sstd/boost/hana/config.hpp>
#include <sstd/boost/hana/core/dispatch.hpp>
BOOST_HANA_NAMESPACE_BEGIN
//! @cond
template <typename Xs, typename Ys>
constexpr auto union_t::operator()(Xs&& xs, Ys&& ys) const {
using S = typename hana::tag_of<Xs>::type;
using Union = BOOST_HANA_DISPATCH_IF(union_impl<S>,
true
);
return Union::apply(static_cast<Xs&&>(xs), static_cast<Ys&&>(ys));
}
//! @endcond
template <typename S, bool condition>
struct union_impl<S, when<condition>> : default_ {
template <typename ...Args>
static constexpr auto apply(Args&& ...) = delete;
};
BOOST_HANA_NAMESPACE_END
#endif // !BOOST_HANA_UNION_HPP
| [
"zhaixueqiang@hotmail.com"
] | zhaixueqiang@hotmail.com |
8071fea56cafb71ab18ef6a5a19051da4e0cac82 | a40ad4585fb8d7fd63cc0b5e2551dafa7eaa281f | /laser_emisor/laser_emisor.ino | 224bc1e4eb63fdc75c1c2441dc63003726a4c7c1 | [] | no_license | jmgimenezinf/teclado-binario-laser-arduino | 5a7e9df1660fda1fa2c25bcf96a158d8eaa6cc49 | c05f3ec412fdbd0265f8e7e6a4d7ea6dc90b4d4f | refs/heads/master | 2020-03-14T09:53:45.575803 | 2018-04-30T04:15:13 | 2018-04-30T04:15:13 | 131,554,660 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 419 | ino | #include <Morse.h>
#include <Wire.h>
#include <BH1750.h>
Morse morse(2);
String mensaje="0";
void setup() {
pinMode(2,OUTPUT);
Serial.begin(9600);
}
void loop() {
signal_envio();
morse.Write("h");
signal_end_transmission();
}
void signal_envio(){
digitalWrite(2,1);
delay(5000);
//digitalWrite(2,0);
}
void signal_end_transmission(){
digitalWrite(2,0);
delay(5000);
//digitalWrite(2,1);
//delay(3000);
}
| [
"jm.gimenez.inf@gmail.com"
] | jm.gimenez.inf@gmail.com |
b1ad68ca255e196ad285ec25c452ff3346fc906a | 2948d1810269e81530db93fec1f790b8fbf80bdf | /redis_executor/redis_context_pool.h | 74798da37eac9c9359b97cb0bb8efed888ce328c | [] | no_license | kornwilliams/linux_server | eee94949fcb51088f58c203689b7f97a45cca967 | b4bf891574b6b2290fd60d67d9da5ee67d699718 | refs/heads/master | 2021-01-22T03:13:41.502127 | 2015-06-29T07:36:25 | 2015-06-29T07:36:25 | 38,231,792 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 500 | h | #ifndef _REDIS_REDIS_CONTEXT_POOL_H_
#define _REDIS_REDIS_CONTEXT_POOL_H_
#include <hiredis/hiredis.h>
#include "base/object_pool.h"
namespace redis {
class RedisContextPool : public base::ObjectPool<redisContext> {
public:
RedisContextPool() : base::ObjectPool<redisContext>(0, 20, 0, 100) {
}
virtual ~RedisContextPool();
protected:
virtual redisContext * Create(const std::string & key);
virtual void Destroy(redisContext * context);
};
}
#endif // _REDIS_REDIS_CONTEXT_POOL_H_
| [
"yuanyin8688@gmail.com"
] | yuanyin8688@gmail.com |
b7462442a665887ed704c08082ab686affc3594c | c0cb4ffb337dc5e392d3bbafeb418f7580c05000 | /10900/10929.cpp | 87dcac929709bc7bd992dd1d4dd0b1f54cea0398 | [] | no_license | ghj0504520/UVA | b3a7d6b6ba308916681fd8a6e25932a55f7455b3 | 8e49a1424538e907f4bdbe5543cc6966d4ea5a4e | refs/heads/master | 2023-05-01T07:49:18.162394 | 2023-04-24T07:48:11 | 2023-04-24T07:48:11 | 38,348,555 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 611 | cpp | #include<iostream>
#include<cstdio>
#include<string.h>
using namespace std;
int main()
{
char a[20000];
while(cin>>a )
{
if(a[0]=='0'&&a[1]=='\0')break;
int sum =strlen(a);
int odd=0, even =0;
for(int i=0;i<sum;i++)
{
i%2==0? even=even+(int)(a[i]-48) : odd=odd+(int)(a[i]-48);
}if(odd>even)
{
int swap =even;
even=odd;
odd=swap;
}
if((even-odd)%11==0)
{
for(int i=0;i<sum ;i++)
cout<<a[i];
printf(" is a multiple of 11.\n");
}else if((even-odd)%11!=0)
{
for(int i=0;i<sum ;i++)
cout<<a[i];
printf(" is not a multiple of 11.\n");
}
}
}
| [
"ghj0504520.cywjjy@gmail.com"
] | ghj0504520.cywjjy@gmail.com |
d3be66894005a5a9ed6c8bba5ec4edb9b66e356b | d2f30d9fb226185956c3da1e5372664aaa506312 | /atmosphere/ATM/ATMSpectralGrid.cpp | c24265a3431bf2d8e58eb0218444287aa08304b9 | [] | no_license | radio-astro/casasynthesis | 1e2fdacfcfc4313adde8f7524739a4dfd80d4c8f | 1cb9cd6a346d3ade9a6f563696d225c24654041c | refs/heads/master | 2021-01-17T05:22:01.380405 | 2019-01-08T10:43:34 | 2019-01-08T10:43:34 | 40,664,934 | 1 | 1 | null | 2022-12-16T13:17:36 | 2015-08-13T15:01:41 | C++ | UTF-8 | C++ | false | false | 25,452 | cpp | /*******************************************************************************
* ALMA - Atacama Large Millimiter Array
* (c) Instituto de Estructura de la Materia, 2009
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 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
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* "@(#) $Id: ATMSpectralGrid.cpp Exp $"
*
* who when what
* -------- -------- ----------------------------------------------
* pardo 24/03/09 created
*/
#include "ATMSpectralGrid.h"
#include <iostream>
#include <limits>
#include <math.h>
#include <vector>
#include <string>
using namespace std;
ATM_NAMESPACE_BEGIN
// public methods:
// constructors
SpectralGrid::SpectralGrid(const Frequency &oneFreq)
{
v_chanFreq_.reserve(1);
freqUnits_ = "Hz";
v_transfertId_.resize(0); // not sure this is necessary!
unsigned int numChan = 1;
unsigned int refChan = 0;
Frequency chanSep(0.0);
add(numChan, refChan, oneFreq, chanSep);
vector<unsigned int> v_dummyInt;
vv_assocSpwId_.push_back(v_dummyInt); // put an empty vector
vector<string> v_dummyString;
vv_assocNature_.push_back(v_dummyString); // put an empty vector
}
SpectralGrid::SpectralGrid(unsigned int numChan,
unsigned int refChan,
const Frequency &refFreq,
const Frequency &chanSep)
{
// cout << " SpectralGrid constructor" << endl;
v_chanFreq_.reserve(numChan);
freqUnits_ = "Hz";
v_transfertId_.resize(0); // not sure this is necessary!
add(numChan, refChan, refFreq, chanSep);
vector<unsigned int> v_dummyInt;
vv_assocSpwId_.push_back(v_dummyInt); // put an empty vector
vector<string> v_dummyString;
vv_assocNature_.push_back(v_dummyString); // put an empty vector
}
SpectralGrid::SpectralGrid(unsigned int numChan,
unsigned int refChan,
const Frequency &refFreq,
const Frequency &chanSep,
const Frequency &intermediateFreq,
const SidebandSide &sbSide,
const SidebandType &sbType)
{
freqUnits_ = "Hz";
v_transfertId_.resize(0); // not sure this is necessary!
v_chanFreq_.reserve(numChan);
/* cout << " la" << endl; */
add(numChan, refChan, refFreq, chanSep, intermediateFreq, sbSide, sbType);
}
SpectralGrid::SpectralGrid(unsigned int numChan,
unsigned int refChan,
double* chanFreq,
const string &freqUnits)
{
v_chanFreq_.reserve(numChan);
freqUnits_ = "Hz";
v_transfertId_.resize(0); // not sure this is necessary!
add(numChan, refChan, chanFreq, freqUnits);
}
void SpectralGrid::add(unsigned int numChan,
unsigned int refChan,
const Frequency &refFreq,
const Frequency &chanSep,
const Frequency &intermediateFreq,
const SidebandSide &sbSide,
const SidebandType &sbType)
{
double chSep;
vector<string> v_assocNature;
vector<unsigned int> v_assocSpwId;
unsigned int spwId = v_transfertId_.size();
if(sbSide == LSB) { // LSB tuning
// the LSB:
add(numChan, refChan, refFreq, chanSep); // LSB
v_sidebandSide_[spwId] = LSB;
v_sidebandType_[spwId] = sbType;
double loFreq = refFreq.get() + intermediateFreq.get(); // store loFreq for USB
v_loFreq_[spwId] = loFreq;
v_assocSpwId.push_back(v_numChan_.size());
vv_assocSpwId_[vv_assocSpwId_.size() - 1] = v_assocSpwId;
v_assocNature.push_back("USB");
vv_assocNature_[vv_assocNature_.size() - 1] = v_assocNature;
// the USB:
spwId = v_transfertId_.size();
double refFreqUSB = refFreq.get() + 2.*intermediateFreq.get(); // fix refFreq in the image band (refChan is unchanged)
chSep = -chanSep.get();
add(numChan, refChan, Frequency(refFreqUSB), Frequency(chSep));
v_sidebandSide_[spwId] = USB;
v_sidebandType_[spwId] = sbType;
v_loFreq_[spwId] = loFreq;
v_assocSpwId[0] = v_numChan_.size() - 2;
vv_assocSpwId_[vv_assocSpwId_.size() - 1] = v_assocSpwId;
v_assocNature[0] = "LSB";
vv_assocNature_[vv_assocNature_.size() - 1] = v_assocNature;
} else { // USB tuning
// the USB:
add(numChan, refChan, refFreq, chanSep);
v_sidebandSide_[spwId] = USB;
v_sidebandType_[spwId] = sbType;
double loFreq = refFreq.get() - intermediateFreq.get();
v_loFreq_[spwId] = loFreq;
v_assocSpwId.push_back(v_numChan_.size());
vv_assocSpwId_[vv_assocSpwId_.size() - 1] = v_assocSpwId;
v_assocNature.push_back("LSB");
vv_assocNature_[vv_assocNature_.size() - 1] = v_assocNature;
// the LSB:
spwId = v_transfertId_.size();
double refFreqLSB = refFreq.get() - 2.*intermediateFreq.get(); // fix refFreq in the image band (refChan is unchanged)
chSep = -chanSep.get();
add(numChan, refChan, Frequency(refFreqLSB), Frequency(chSep));
v_sidebandSide_[spwId] = LSB;
v_sidebandType_[spwId] = sbType;
v_loFreq_[spwId] = loFreq;
v_assocSpwId[0] = v_numChan_.size() - 2;
vv_assocSpwId_[vv_assocSpwId_.size() - 1] = v_assocSpwId;
v_assocNature[0] = "USB";
vv_assocNature_[vv_assocNature_.size() - 1] = v_assocNature;
}
}
unsigned int SpectralGrid::add(unsigned int numChan,
unsigned int refChan,
const Frequency &refFreq,
const Frequency &chanSep)
{
freqUnits_ = "Hz";
unsigned int spwId = v_transfertId_.size();
v_loFreq_.push_back(refFreq.get());
if(spwId == 0) {
v_transfertId_.push_back(0);
} else {
v_transfertId_.push_back(v_transfertId_[spwId - 1] + v_numChan_[spwId - 1]);
}
v_numChan_.push_back(numChan);
v_refChan_.push_back(refChan);
v_refFreq_.push_back(refFreq.get(freqUnits_));
v_chanSep_.push_back(chanSep.get(freqUnits_));
double* chanFreq = new double[numChan];
{
double freqOffset = v_refFreq_[spwId] - v_chanSep_[spwId]
* (double) (v_refChan_[spwId] - 1.);
for(unsigned int i = 0; i < numChan; i++) {
chanFreq[i] = freqOffset + (double) i * v_chanSep_[spwId];
}
appendChanFreq(numChan, chanFreq);
if(numChan > 1) {
if(chanFreq[0] > chanFreq[1]) {
v_minFreq_.push_back(chanFreq[numChan - 1]);
v_maxFreq_.push_back(chanFreq[0]);
} else {
v_minFreq_.push_back(chanFreq[0]);
v_maxFreq_.push_back(chanFreq[numChan - 1]);
}
} else {
v_minFreq_.push_back(chanFreq[0]);
v_maxFreq_.push_back(chanFreq[0]);
}
v_sidebandSide_ .push_back(NOSB);
v_sidebandType_ .push_back(NOTYPE);
v_intermediateFrequency_.push_back(0.0);
}
vector<unsigned int> v_dummyAssoc;
vv_assocSpwId_.push_back(v_dummyAssoc);
vector<string> v_dummyNature;
vv_assocNature_.push_back(v_dummyNature);
delete [] chanFreq;
return spwId;
}
void SpectralGrid::appendChanFreq(unsigned int numChan, double* chanFreq)
{
// unsigned int k=v_chanFreq_.size();
for(unsigned int i = 0; i < numChan; i++) {
v_chanFreq_.push_back(chanFreq[i]); // cout << i << "v_chanFreq_="<<v_chanFreq_[k+i]<<endl;
}
}
void SpectralGrid::appendChanFreq(unsigned int numChan, const vector<double> &chanFreq)
{
// unsigned int k=v_chanFreq_.size();
for(unsigned int i = 0; i < numChan; i++) {
v_chanFreq_.push_back(chanFreq[i]); // cout << i << "v_chanFreq_="<<v_chanFreq_[k+i]<<endl;
}
}
unsigned int SpectralGrid::add(unsigned int numChan,
unsigned int refChan,
double* chanFreq,
const string &freqUnits)
{
double fact = 1.0;
if(freqUnits == "GHz") fact = 1.0E9;
if(freqUnits == "MHz") fact = 1.0E6;
if(freqUnits == "kHz") fact = 1.0E3;
unsigned int spwId = v_transfertId_.size();
if(spwId == 0) {
v_transfertId_.push_back(0);
} else {
v_transfertId_.push_back(v_transfertId_[spwId - 1] + v_numChan_[spwId - 1]);
}
v_numChan_.push_back(numChan);
v_refChan_.push_back(refChan);
bool regular = true;
double minFreq = 1.E30;
double maxFreq = 0;
double chanSep = 0;
if(numChan > 1) chanSep = fact * (chanFreq[1] - chanFreq[0]);
chanFreq[0] = fact * chanFreq[0];
for(unsigned int i = 1; i < numChan; i++) {
chanFreq[i] = fact * chanFreq[i];
if(fabs(chanFreq[i] - chanFreq[i - 1] - chanSep) > 1.0E-12) regular = false;
if(chanFreq[i] < minFreq) minFreq = chanFreq[i];
if(chanFreq[i] > maxFreq) maxFreq = chanFreq[i];
}
appendChanFreq(numChan, chanFreq);
v_refFreq_.push_back(chanFreq[refChan - 1]);
if(regular) {
v_chanSep_.push_back(chanSep);
} else {
v_chanSep_.push_back(0);
}
v_sidebandSide_ .push_back(NOSB);
v_sidebandType_ .push_back(NOTYPE);
v_intermediateFrequency_.push_back(0.0);
return spwId;
}
SpectralGrid::SpectralGrid(unsigned int numChan,
double refFreq,
double* chanFreq,
const string &freqUnits)
{
v_chanFreq_.reserve(numChan);
freqUnits_ = "Hz";
v_transfertId_.resize(0); // not sure this is necessary!
add(numChan, refFreq, chanFreq, freqUnits);
vector<unsigned int> v_dummyInt;
vv_assocSpwId_.push_back(v_dummyInt); // put an empty vector
vector<string> v_dummyString;
vv_assocNature_.push_back(v_dummyString); // put an empty vector
}
SpectralGrid::SpectralGrid(double refFreq,
const vector<double> &chanFreq,
const string &freqUnits)
{
v_chanFreq_.reserve(chanFreq.size());
freqUnits_ = "Hz";
v_transfertId_.resize(0); // not sure this is necessary!
add(chanFreq.size(), refFreq, chanFreq, freqUnits);
vector<unsigned int> v_dummyInt;
vv_assocSpwId_.push_back(v_dummyInt); // put an empty vector
vector<string> v_dummyString;
vv_assocNature_.push_back(v_dummyString); // put an empty vector
}
SpectralGrid::SpectralGrid(const vector<double> &chanFreq, const string &freqUnits)
{
v_chanFreq_.reserve(chanFreq.size());
freqUnits_ = "Hz";
v_transfertId_.resize(0); // not sure this is necessary!
double refFreq = (Frequency(chanFreq[0], freqUnits)).get("Hz"); // We take the frequency of the first channel as
// reference frequency because it has not been specified
add(chanFreq.size(), refFreq, chanFreq, freqUnits);
vector<unsigned int> v_dummyInt;
vv_assocSpwId_.push_back(v_dummyInt); // put an empty vector
vector<string> v_dummyString;
vv_assocNature_.push_back(v_dummyString); // put an empty vector
}
SpectralGrid::SpectralGrid(const vector<Frequency> &chanFreq)
{
v_chanFreq_.reserve(chanFreq.size());
freqUnits_ = "Hz";
v_transfertId_.resize(0); // not sure this is necessary!
double refFreq = chanFreq[0].get("Hz"); // We take the frequency of the first channel as
// reference frequency because it has not been specified
vector<double> chanFreq_double;
for(unsigned int i = 0; i < chanFreq.size(); i++) {
chanFreq_double.push_back(chanFreq[i].get("GHz"));
}
add(chanFreq.size(), refFreq, chanFreq_double, "GHz");
vector<unsigned int> v_dummyInt;
vv_assocSpwId_.push_back(v_dummyInt); // put an empty vector
vector<string> v_dummyString;
vv_assocNature_.push_back(v_dummyString); // put an empty vector
}
unsigned int SpectralGrid::add(unsigned int numChan,
double refFreq,
double* chanFreq,
const string &freqUnits)
{
bool regular = true;
double fact = 1.0;
if(freqUnits == "GHz") fact = 1.0E9;
if(freqUnits == "MHz") fact = 1.0E6;
if(freqUnits == "kHz") fact = 1.0E3;
freqUnits_ = "Hz";
unsigned int spwId = v_transfertId_.size();
if(spwId == 0) {
v_transfertId_.push_back(0);
} else {
v_transfertId_.push_back(v_transfertId_[spwId - 1] + v_numChan_[spwId - 1]);
}
v_numChan_.push_back(numChan);
v_refFreq_.push_back(fact * refFreq);
double chanSep = fact * (chanFreq[1] - chanFreq[0]);
double minFreq = 1.E30;
double maxFreq = 0;
chanFreq[0] = fact * chanFreq[0];
for(unsigned int i = 1; i < numChan; i++) {
chanFreq[i] = fact * chanFreq[i];
if(fabs(chanFreq[i] - chanFreq[i - 1] - chanSep) > 1.0E-12) regular = false;
if(chanFreq[i] < minFreq) minFreq = chanFreq[i];
if(chanFreq[i] > maxFreq) maxFreq = chanFreq[i];
}
appendChanFreq(numChan, chanFreq);
v_minFreq_.push_back(minFreq);
v_maxFreq_.push_back(maxFreq);
if(numChan > 1) {
if(regular) {
v_refChan_.push_back((unsigned int) (1. + (refFreq - v_chanFreq_[0]
+ 1.E-12) / chanSep));
v_chanSep_.push_back(chanSep);
} else {
v_refChan_.push_back(0);
v_chanSep_.push_back(0.0);
}
} else {
v_refChan_.push_back(0);
v_chanSep_.push_back(0.0);
}
v_sidebandSide_ .push_back(NOSB);
v_sidebandType_ .push_back(NOTYPE);
v_intermediateFrequency_.push_back(0.0);
return spwId;
}
unsigned int SpectralGrid::add(unsigned int numChan,
double refFreq,
const vector<double> &chanFreq,
const string &freqUnits)
{
bool regular = true;
double fact = 1.0;
if(freqUnits == "GHz") fact = 1.0E9;
if(freqUnits == "MHz") fact = 1.0E6;
if(freqUnits == "kHz") fact = 1.0E3;
freqUnits_ = "Hz";
unsigned int spwId = v_transfertId_.size();
if(spwId == 0) {
v_transfertId_.push_back(0);
} else {
v_transfertId_.push_back(v_transfertId_[spwId - 1] + v_numChan_[spwId - 1]);
}
v_numChan_.push_back(numChan);
v_refFreq_.push_back(fact * refFreq);
double chanSep = fact * (chanFreq[1] - chanFreq[0]);
vector<double> chanFreqHz(numChan);
chanFreqHz[0] = fact * chanFreq[0];
double minFreq = chanFreqHz[0];
double maxFreq = chanFreqHz[0];
for(unsigned int i = 1; i < numChan; i++) {
chanFreqHz[i] = fact * chanFreq[i];
if(fabs(chanFreqHz[i] - chanFreqHz[i - 1] - chanSep) > 1.0E-12) regular = false;
if(chanFreqHz[i] < minFreq) minFreq = chanFreqHz[i];
if(chanFreqHz[i] > maxFreq) maxFreq = chanFreqHz[i];
}
appendChanFreq(numChan, chanFreqHz);
v_minFreq_.push_back(minFreq);
v_maxFreq_.push_back(maxFreq);
if(numChan > 1) {
if(regular) {
v_refChan_.push_back((unsigned int) (1. + (refFreq - v_chanFreq_[0]
+ 1.E-12) / chanSep));
v_chanSep_.push_back(chanSep);
} else {
v_refChan_.push_back(0);
v_chanSep_.push_back(0.0);
}
} else {
v_refChan_.push_back(0);
v_chanSep_.push_back(0.0);
}
v_sidebandSide_ .push_back(NOSB);
v_sidebandType_ .push_back(NOTYPE);
v_intermediateFrequency_.push_back(0.0);
return spwId;
}
SpectralGrid::SpectralGrid(const SpectralGrid & a)
{
// cout << " SpectralGrid copy constructor" << endl;
freqUnits_ = a.freqUnits_;
v_chanFreq_ = a.v_chanFreq_;
v_numChan_ = a.v_numChan_; // cout << numChan_ << endl;
v_refChan_ = a.v_refChan_; // cout << refChan_ << endl;
v_refFreq_ = a.v_refFreq_; // cout << refChan_ << endl;
v_chanSep_ = a.v_chanSep_; // cout << chanSep_ << endl;
v_maxFreq_ = a.v_maxFreq_; // cout << maxFreq_ << endl;
v_minFreq_ = a.v_minFreq_; // cout << minFreq_ << endl;
v_intermediateFrequency_ = a.v_intermediateFrequency_;
v_loFreq_ = a.v_loFreq_;
v_sidebandSide_ = a.v_sidebandSide_;
v_sidebandType_ = a.v_sidebandType_;
vv_assocSpwId_ = a.vv_assocSpwId_;
vv_assocNature_ = a.vv_assocNature_;
v_transfertId_ = a.v_transfertId_;
// cout << "v_chanFreq_.size()=" << v_chanFreq_.size() << endl;
}
SpectralGrid::SpectralGrid()
{
}
// destructor
SpectralGrid::~SpectralGrid()
{
}
bool SpectralGrid::wrongSpwId(unsigned int spwId) const
{
if(spwId > (v_transfertId_.size() - 1)) {
cout << " SpectralGrid: ERROR: " << spwId
<< " is a wrong spectral window identifier" << endl;
return (bool) true;
}
return (bool) false;
}
// accessors and utilities:
unsigned int SpectralGrid::getNumSpectralWindow() const
{
return v_transfertId_.size();
}
unsigned int SpectralGrid::getNumChan() const
{
return v_numChan_[0];
}
unsigned int SpectralGrid::getNumChan(unsigned int spwId) const
{
if(wrongSpwId(spwId)) return 0;
return v_numChan_[spwId];
}
unsigned int SpectralGrid::getRefChan() const
{
return v_refChan_[0];
}
unsigned int SpectralGrid::getRefChan(unsigned int spwId) const
{
if(wrongSpwId(spwId)) return 32767;
return v_refChan_[spwId];
}
Frequency SpectralGrid::getRefFreq() const
{
return Frequency(v_refFreq_[0], "Hz");
}
Frequency SpectralGrid::getRefFreq(unsigned int spwId) const
{
if(wrongSpwId(spwId)) return 32767.;
return Frequency(v_refFreq_[spwId], "Hz");
}
Frequency SpectralGrid::getChanSep() const
{
return Frequency(v_chanSep_[0], "Hz");
}
Frequency SpectralGrid::getChanSep(unsigned int spwId) const
{
if(wrongSpwId(spwId)) return 32767.;
return Frequency(v_chanSep_[spwId], "Hz");
}
Frequency SpectralGrid::getChanFreq(unsigned int i) const
{
return Frequency(v_chanFreq_[i], "Hz");
}
Frequency SpectralGrid::getChanWidth(unsigned int i) const
{
if(i == 0){
return getChanFreq(i+1)-getChanFreq(i);
}else{
return getChanFreq(i)-getChanFreq(i-1);
}
}
Frequency SpectralGrid::getChanFreq(unsigned int spwId, unsigned int chanIdx) const
{
if(wrongSpwId(spwId)) return 32767.;
return Frequency(v_chanFreq_[v_transfertId_[spwId] + chanIdx], "Hz");
}
Frequency SpectralGrid::getChanWidth(unsigned int spwId, unsigned int chanIdx) const
{
if(wrongSpwId(spwId)) return 32767.;
unsigned int banda=spwId;
unsigned int canalmasuno=chanIdx+1;
unsigned int canal=chanIdx;
unsigned int canalmenosuno=chanIdx-1;
// cout << "banda,canal-1,canal,canal+1= " << banda << " " << canalmenosuno << " " << canal << " " << canalmasuno << endl;
if(chanIdx == 0){
return getChanFreq(spwId,canalmasuno)-getChanFreq(spwId,canal);
}else{
// cout << "ChanFreq(" << banda << "," << canal << ")=" << getChanFreq(banda,canal).get("GHz") << endl;
// cout << "ChanFreq(" << banda << "," << canalmenosuno << ")=" << getChanFreq(banda,canalmenosuno).get("GHz") << endl;
return getChanFreq(banda,canal)-getChanFreq(banda,canalmenosuno);
}
}
vector<double> SpectralGrid::getSbChanFreq(unsigned int spwId,
unsigned int chanIdx,
const string &units) const
{
vector<double> v_dummyVector;
if(wrongSpwId(spwId)) return v_dummyVector;
v_dummyVector.push_back(getChanFreq(spwId, chanIdx).get(units));
for(unsigned int n = 0; n < vv_assocNature_[spwId].size(); n++) {
if(vv_assocNature_[spwId][n] == "USB" || vv_assocNature_[spwId][n] == "LSB") {
unsigned int assocSpwId = vv_assocSpwId_[spwId][n];
v_dummyVector.push_back(getChanFreq(assocSpwId, chanIdx).get(units));
}
}
return v_dummyVector;
}
vector<double> SpectralGrid::getSpectralWindow(unsigned int spwId) const
{
vector<double> v_chanFreq;
if(wrongSpwId(spwId)) return v_chanFreq;
v_chanFreq.reserve(v_numChan_[spwId]);
for(unsigned int n = 0; n < v_numChan_[spwId]; n++)
v_chanFreq.push_back(v_chanFreq_[v_transfertId_[spwId] + n]);
return v_chanFreq;
}
Frequency SpectralGrid::getMinFreq() const
{
return Frequency(v_minFreq_[0], "Hz");
}
Frequency SpectralGrid::getMinFreq(unsigned int spwId) const
{
if(wrongSpwId(spwId)) return 32767.;
return Frequency(v_minFreq_[spwId], "Hz");
}
Frequency SpectralGrid::getMaxFreq() const
{
return Frequency(v_maxFreq_[0], "Hz");
}
Frequency SpectralGrid::getMaxFreq(unsigned int spwId) const
{
if(wrongSpwId(spwId)) return 32767.;
return Frequency(v_maxFreq_[spwId], "Hz");
}
double SpectralGrid::getChanNum(double freq) const
{
if(v_numChan_[0] == 1) return 1;
if(v_chanSep_[0] == 0.0) { // irregular grid, look for the nearest channel
double sep = 1.E30;
int k = -1;
for(unsigned int i = 0; i < v_numChan_[0]; i++) {
if(sep > fabs(v_chanFreq_[v_transfertId_[0] + i] - freq)) {
sep = fabs(v_chanFreq_[v_transfertId_[0] + i] - freq);
k = i;
}
}
return (double) 1 - v_refChan_[0] + k; // channel the nearest
} else { // regular spectral grid
return (freq - v_refFreq_[0]) / v_chanSep_[0];
}
}
double SpectralGrid::getChanNum(unsigned int spwId, double freq) const
{
if(wrongSpwId(spwId)) return 32767.;
if(v_numChan_[spwId] == 1) return 1;
if(v_chanSep_[spwId] == 0.0) { // irregular grid, look for the nearest channel
double sep = 1.E30;
int k = -1;
for(unsigned int i = 0; i < v_numChan_[spwId]; i++) {
if(sep > fabs(v_chanFreq_[v_transfertId_[spwId] + i] - freq)) {
sep = fabs(v_chanFreq_[v_transfertId_[spwId] + i] - freq);
k = i;
}
}
return (double) 1 - v_refChan_[spwId] + k; // channel the nearest
} else { // regular spectral grid
return (freq - v_refFreq_[spwId]) / v_chanSep_[spwId];
}
}
Frequency SpectralGrid::getBandwidth() const
{
return Frequency(v_maxFreq_[0] - v_minFreq_[0], "Hz");
}
Frequency SpectralGrid::getBandwidth(unsigned int spwId) const
{
if(wrongSpwId(spwId)) return 32767.;
return Frequency(v_maxFreq_[spwId] - v_minFreq_[spwId], "Hz");
}
bool SpectralGrid::isRegular() const
{
if(v_chanSep_[0] == 0.0) return false;
return true;
}
bool SpectralGrid::isRegular(unsigned int spwId) const
{
if(wrongSpwId(spwId)) return 32767.;
if(v_chanSep_[spwId] == 0.0) return false;
return true;
}
string SpectralGrid::getSidebandSide(unsigned int spwId) const
{
if(!wrongSpwId(spwId)) {
if(vv_assocSpwId_[spwId].size() == 0) {
/* cout << "WARNING: the spectral window with the identifier "<< spwId
<< " has no associated spectral window "<< endl; */
return "";
}
if(v_sidebandSide_[spwId] == NOSB) return "NoSB";
if(v_sidebandSide_[spwId] == LSB) return "LSB";
if(v_sidebandSide_[spwId] == USB) return "USB";
}
return "";
}
string SpectralGrid::getSidebandType(unsigned int spwId) const
{
if(!wrongSpwId(spwId)) {
if(vv_assocSpwId_[spwId].size() == 0) {
/* cout << "WARNING: the spectral window with the identifier "<< spwId
<< " has no associated spectral window "<< endl; */
}
return "";
if(v_sidebandType_[spwId] == DSB) return " DSB";
if(v_sidebandType_[spwId] == SSB) return " SSB";
if(v_sidebandType_[spwId] == TWOSB) return " 2SB";
}
return "";
}
string SpectralGrid::getSideband(unsigned int spwId) const
{
if(!wrongSpwId(spwId)) {
if(vv_assocSpwId_[spwId].size() == 0) {
/* cout << "WARNING: the spectral window with the identifier "<< spwId
<< " has no associated spectral window "<< endl; */
}
return "";
if(getSidebandSide(spwId) == "NoSB") {
return getSidebandSide(spwId);
} else {
string sbTypeSide = getSidebandSide(spwId) + " with type ";
return (sbTypeSide + getSidebandType(spwId));
}
}
return "";
}
vector<string> SpectralGrid::getAssocNature(unsigned int spwId) const
{
if(!wrongSpwId(spwId)) {
if(vv_assocNature_[spwId].size() == 0) {
/* cout << "WARNING: the spectral window with the identifier "<< spwId
<< " has no associated spectral window "<< endl; */
}
return vv_assocNature_[spwId];
}
vector<string> v_dummyVector;
return v_dummyVector;
}
vector<unsigned int> SpectralGrid::getAssocSpwId(unsigned int spwId) const
{
if(!wrongSpwId(spwId)) {
if(vv_assocSpwId_[spwId].size() == 0) {
/* cout << "WARNING: the spectral window with the identifier "<< spwId
<< " has no associated spectral window "<< endl; */
/* cout << "vv_assocSpwId_[" <<spwId<<"]=" << vv_assocSpwId_[spwId][0] << endl; */
}
return vv_assocSpwId_[spwId];
}
vector<unsigned int> v_dummyVector;
return v_dummyVector;
}
vector<unsigned int> SpectralGrid::getAssocSpwIds(const vector<unsigned int> &spwIds) const
{
unsigned int spwId;
vector<unsigned int> assoc_spwIds;
for(unsigned int n = 0; n < spwIds.size(); n++) {
spwId = spwIds[n];
if(!wrongSpwId(spwId)) {
if(vv_assocSpwId_[spwId].size() == 0) {
/* cout << "WARNING: the spectral window with the identifier "<< spwId
<< " has no associated spectral window "<< endl; */
/* cout << "vv_assocSpwId_[" <<spwId<<"]=" << vv_assocSpwId_[spwId][0] << endl; */
}
assoc_spwIds.push_back((vv_assocSpwId_[spwId])[0]);
} else {
assoc_spwIds.push_back(spwId);
}
}
return assoc_spwIds;
}
double SpectralGrid::getLoFrequency() const
{
return v_loFreq_[0];
}
double SpectralGrid::getLoFrequency(unsigned int spwId) const
{
if(wrongSpwId(spwId)) return 32767.;
return v_loFreq_[spwId];
}
ATM_NAMESPACE_END
| [
"gijs@pythonic.nl"
] | gijs@pythonic.nl |
9c73181fd359a7c97bff8b81a150e36e282f5147 | 97ee22c2ffa7967a0321694b14b18be171e49008 | /Gyro/Arduino/MPU9250BasicAHRS_I2C_sendToOracle/src/MPU9250.h | dee574e052afad5e0a58ec23461926a5c7a1ce60 | [] | no_license | morfant/RFD | 9a1f2b9ca66a298b26c204152be463d0e586a2b7 | 2231a7fae2467947531c0951625f28c94789bbda | refs/heads/master | 2020-06-04T14:35:21.633090 | 2019-10-30T01:10:48 | 2019-10-30T01:10:48 | 192,063,352 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,890 | h | /*
Note: The MPU9250 is an I2C sensor and uses the Arduino Wire library.
Because the sensor is not 5V tolerant, we are using a 3.3 V 8 MHz Pro Mini or
a 3.3 V Teensy 3.1. We have disabled the internal pull-ups used by the Wire
library in the Wire.h/twi.c utility file. We are also using the 400 kHz fast
I2C mode by setting the TWI_FREQ to 400000L /twi.h utility file.
*/
#ifndef _MPU9250_H_
#define _MPU9250_H_
#include <SPI.h>
#include <Wire.h>
#define SERIAL_DEBUG true
// See also MPU-9250 Register Map and Descriptions, Revision 4.0,
// RM-MPU-9250A-00, Rev. 1.4, 9/9/2013 for registers not listed in above
// document; the MPU9250 and MPU9150 are virtually identical but the latter has
// a different register map
//Magnetometer Registers
#define WHO_AM_I_AK8963 0x00 // (AKA WIA) should return 0x48
#define INFO 0x01
#define AK8963_ST1 0x02 // data ready status bit 0
#define AK8963_XOUT_L 0x03 // data
#define AK8963_XOUT_H 0x04
#define AK8963_YOUT_L 0x05
#define AK8963_YOUT_H 0x06
#define AK8963_ZOUT_L 0x07
#define AK8963_ZOUT_H 0x08
#define AK8963_ST2 0x09 // Data overflow bit 3 and data read error status bit 2
#define AK8963_CNTL 0x0A // Power down (0000), single-measurement (0001), self-test (1000) and Fuse ROM (1111) modes on bits 3:0
#define AK8963_ASTC 0x0C // Self test control
#define AK8963_I2CDIS 0x0F // I2C disable
#define AK8963_ASAX 0x10 // Fuse ROM x-axis sensitivity adjustment value
#define AK8963_ASAY 0x11 // Fuse ROM y-axis sensitivity adjustment value
#define AK8963_ASAZ 0x12 // Fuse ROM z-axis sensitivity adjustment value
#define SELF_TEST_X_GYRO 0x00
#define SELF_TEST_Y_GYRO 0x01
#define SELF_TEST_Z_GYRO 0x02
/*#define X_FINE_GAIN 0x03 // [7:0] fine gain
#define Y_FINE_GAIN 0x04
#define Z_FINE_GAIN 0x05
#define XA_OFFSET_H 0x06 // User-defined trim values for accelerometer
#define XA_OFFSET_L_TC 0x07
#define YA_OFFSET_H 0x08
#define YA_OFFSET_L_TC 0x09
#define ZA_OFFSET_H 0x0A
#define ZA_OFFSET_L_TC 0x0B */
#define SELF_TEST_X_ACCEL 0x0D
#define SELF_TEST_Y_ACCEL 0x0E
#define SELF_TEST_Z_ACCEL 0x0F
#define SELF_TEST_A 0x10
#define XG_OFFSET_H 0x13 // User-defined trim values for gyroscope
#define XG_OFFSET_L 0x14
#define YG_OFFSET_H 0x15
#define YG_OFFSET_L 0x16
#define ZG_OFFSET_H 0x17
#define ZG_OFFSET_L 0x18
#define SMPLRT_DIV 0x19
#define CONFIG 0x1A
#define GYRO_CONFIG 0x1B
#define ACCEL_CONFIG 0x1C
#define ACCEL_CONFIG2 0x1D
#define LP_ACCEL_ODR 0x1E
#define WOM_THR 0x1F
// Duration counter threshold for motion interrupt generation, 1 kHz rate,
// LSB = 1 ms
#define MOT_DUR 0x20
// Zero-motion detection threshold bits [7:0]
#define ZMOT_THR 0x21
// Duration counter threshold for zero motion interrupt generation, 16 Hz rate,
// LSB = 64 ms
#define ZRMOT_DUR 0x22
#define FIFO_EN 0x23
#define I2C_MST_CTRL 0x24
#define I2C_SLV0_ADDR 0x25
#define I2C_SLV0_REG 0x26
#define I2C_SLV0_CTRL 0x27
#define I2C_SLV1_ADDR 0x28
#define I2C_SLV1_REG 0x29
#define I2C_SLV1_CTRL 0x2A
#define I2C_SLV2_ADDR 0x2B
#define I2C_SLV2_REG 0x2C
#define I2C_SLV2_CTRL 0x2D
#define I2C_SLV3_ADDR 0x2E
#define I2C_SLV3_REG 0x2F
#define I2C_SLV3_CTRL 0x30
#define I2C_SLV4_ADDR 0x31
#define I2C_SLV4_REG 0x32
#define I2C_SLV4_DO 0x33
#define I2C_SLV4_CTRL 0x34
#define I2C_SLV4_DI 0x35
#define I2C_MST_STATUS 0x36
#define INT_PIN_CFG 0x37
#define INT_ENABLE 0x38
#define DMP_INT_STATUS 0x39 // Check DMP interrupt
#define INT_STATUS 0x3A
#define ACCEL_XOUT_H 0x3B
#define ACCEL_XOUT_L 0x3C
#define ACCEL_YOUT_H 0x3D
#define ACCEL_YOUT_L 0x3E
#define ACCEL_ZOUT_H 0x3F
#define ACCEL_ZOUT_L 0x40
#define TEMP_OUT_H 0x41
#define TEMP_OUT_L 0x42
#define GYRO_XOUT_H 0x43
#define GYRO_XOUT_L 0x44
#define GYRO_YOUT_H 0x45
#define GYRO_YOUT_L 0x46
#define GYRO_ZOUT_H 0x47
#define GYRO_ZOUT_L 0x48
#define EXT_SENS_DATA_00 0x49
#define EXT_SENS_DATA_01 0x4A
#define EXT_SENS_DATA_02 0x4B
#define EXT_SENS_DATA_03 0x4C
#define EXT_SENS_DATA_04 0x4D
#define EXT_SENS_DATA_05 0x4E
#define EXT_SENS_DATA_06 0x4F
#define EXT_SENS_DATA_07 0x50
#define EXT_SENS_DATA_08 0x51
#define EXT_SENS_DATA_09 0x52
#define EXT_SENS_DATA_10 0x53
#define EXT_SENS_DATA_11 0x54
#define EXT_SENS_DATA_12 0x55
#define EXT_SENS_DATA_13 0x56
#define EXT_SENS_DATA_14 0x57
#define EXT_SENS_DATA_15 0x58
#define EXT_SENS_DATA_16 0x59
#define EXT_SENS_DATA_17 0x5A
#define EXT_SENS_DATA_18 0x5B
#define EXT_SENS_DATA_19 0x5C
#define EXT_SENS_DATA_20 0x5D
#define EXT_SENS_DATA_21 0x5E
#define EXT_SENS_DATA_22 0x5F
#define EXT_SENS_DATA_23 0x60
#define MOT_DETECT_STATUS 0x61
#define I2C_SLV0_DO 0x63
#define I2C_SLV1_DO 0x64
#define I2C_SLV2_DO 0x65
#define I2C_SLV3_DO 0x66
#define I2C_MST_DELAY_CTRL 0x67
#define SIGNAL_PATH_RESET 0x68
#define MOT_DETECT_CTRL 0x69
#define USER_CTRL 0x6A // Bit 7 enable DMP, bit 3 reset DMP
#define PWR_MGMT_1 0x6B // Device defaults to the SLEEP mode
#define PWR_MGMT_2 0x6C
#define DMP_BANK 0x6D // Activates a specific bank in the DMP
#define DMP_RW_PNT 0x6E // Set read/write pointer to a specific start address in specified DMP bank
#define DMP_REG 0x6F // Register in DMP from which to read or to which to write
#define DMP_REG_1 0x70
#define DMP_REG_2 0x71
#define FIFO_COUNTH 0x72
#define FIFO_COUNTL 0x73
#define FIFO_R_W 0x74
#define WHO_AM_I_MPU9250 0x75 // Should return 0x71
#define XA_OFFSET_H 0x77
#define XA_OFFSET_L 0x78
#define YA_OFFSET_H 0x7A
#define YA_OFFSET_L 0x7B
#define ZA_OFFSET_H 0x7D
#define ZA_OFFSET_L 0x7E
// Using the MPU-9250 breakout board, ADO is set to 0
// Seven-bit device address is 110100 for ADO = 0 and 110101 for ADO = 1
// The previous preprocessor directives were sensitive to the location that the user defined AD1
// Now simply define MPU9250_ADDRESS as one of the two following depending on your application
#define MPU9250_ADDRESS_AD1 0x69 // Device address when ADO = 1
#define MPU9250_ADDRESS_AD0 0x68 // Device address when ADO = 0
#define AK8963_ADDRESS 0x0C // Address of magnetometer
#define READ_FLAG 0x80
#define NOT_SPI -1
#define SPI_DATA_RATE 1000000 // 1MHz is the max speed of the MPU-9250
#define SPI_MODE SPI_MODE3
class MPU9250
{
protected:
public: // temporary
// Set initial input parameters
enum Ascale
{
AFS_2G = 0,
AFS_4G,
AFS_8G,
AFS_16G
};
enum Gscale {
GFS_250DPS = 0,
GFS_500DPS,
GFS_1000DPS,
GFS_2000DPS
};
enum Mscale {
MFS_14BITS = 0, // 0.6 mG per LSB
MFS_16BITS // 0.15 mG per LSB
};
enum M_MODE {
M_8HZ = 0x02, // 8 Hz update
M_100HZ = 0x06 // 100 Hz continuous magnetometer
};
TwoWire * _wire; // Allows for use of various I2C ports
uint8_t _I2Caddr = MPU9250_ADDRESS_AD0; // Use AD0 by default
SPIClass * _spi; // Allows for use of different SPI ports
int8_t _csPin; // SPI chip select pin
uint32_t _interfaceSpeed; // Stores the desired I2C or SPi clock rate
// TODO: Add setter methods for this hard coded stuff
// Specify sensor full scale
uint8_t Gscale = GFS_250DPS;
uint8_t Ascale = AFS_2G;
// Choose either 14-bit or 16-bit magnetometer resolution
uint8_t Mscale = MFS_16BITS;
// 2 for 8 Hz, 6 for 100 Hz continuous magnetometer data read
uint8_t Mmode = M_8HZ;
uint8_t writeByteWire(uint8_t, uint8_t, uint8_t);
uint8_t writeByteSPI(uint8_t, uint8_t);
uint8_t writeMagByteSPI(uint8_t subAddress, uint8_t data);
uint8_t readByteSPI(uint8_t subAddress);
uint8_t readMagByteSPI(uint8_t subAddress);
uint8_t readByteWire(uint8_t address, uint8_t subAddress);
bool magInit();
void kickHardware();
void select();
void deselect();
void setupMagForSPI();
// TODO: Remove this next line
public:
uint8_t ak8963WhoAmI_SPI();
public:
float pitch, yaw, roll;
float temperature; // Stores the real internal chip temperature in Celsius
int16_t tempCount; // Temperature raw count output
uint32_t delt_t = 0; // Used to control display output rate
uint32_t count = 0, sumCount = 0; // used to control display output rate
float deltat = 0.0f, sum = 0.0f; // integration interval for both filter schemes
uint32_t lastUpdate = 0, firstUpdate = 0; // used to calculate integration interval
uint32_t Now = 0; // used to calculate integration interval
int16_t gyroCount[3]; // Stores the 16-bit signed gyro sensor output
int16_t magCount[3]; // Stores the 16-bit signed magnetometer sensor output
// Scale resolutions per LSB for the sensors
float aRes, gRes, mRes;
// Variables to hold latest sensor data values
float ax, ay, az, gx, gy, gz, mx, my, mz;
// Factory mag calibration and mag bias
float factoryMagCalibration[3] = {0, 0, 0}, factoryMagBias[3] = {0, 0, 0};
// Bias corrections for gyro, accelerometer, and magnetometer
float gyroBias[3] = {0, 0, 0},
accelBias[3] = {0, 0, 0},
magBias[3] = {0, 0, 0},
magScale[3] = {0, 0, 0};
float selfTest[6];
// Stores the 16-bit signed accelerometer sensor output
int16_t accelCount[3];
// Public method declarations
MPU9250( int8_t csPin, SPIClass &spiInterface = SPI, uint32_t spi_freq = SPI_DATA_RATE);
MPU9250( uint8_t address = MPU9250_ADDRESS_AD0, TwoWire &wirePort = Wire, uint32_t clock_frequency = 100000 );
void getMres();
void getGres();
void getAres();
void readAccelData(int16_t *);
void readGyroData(int16_t *);
void readMagData(int16_t *);
int16_t readTempData();
void updateTime();
void initAK8963(float *);
void initMPU9250();
void calibrateMPU9250(float * gyroBias, float * accelBias);
void MPU9250SelfTest(float * destination);
void magCalMPU9250(float * dest1, float * dest2, int _sampleCount);
uint8_t writeByte(uint8_t, uint8_t, uint8_t);
uint8_t readByte(uint8_t, uint8_t);
uint8_t readBytes(uint8_t, uint8_t, uint8_t, uint8_t *);
// TODO: make SPI/Wire private
uint8_t readBytesSPI(uint8_t, uint8_t, uint8_t *);
uint8_t readBytesWire(uint8_t, uint8_t, uint8_t, uint8_t *);
bool isInI2cMode() { return _csPin == -1; }
bool begin();
}; // class MPU9250
#endif // _MPU9250_H_
| [
"giy.hands@gmail.com"
] | giy.hands@gmail.com |
af993a4cc79df5e6cc009d0d69bdede3dcc5df3b | 390cab55847ae1d7df771bfe0916f058097e6278 | /CreateMap/OutPutDlg.cpp | b492dde5ec1356c5babf3920ca6e828352ea05ea | [] | no_license | hwsmh/A-Search | 792bf3902f92cec093413de8cbe3f6dddf37646a | 61ca3d26ec19f34757b12130a0a618e57ede3629 | refs/heads/master | 2021-01-20T04:56:05.679118 | 2017-08-25T11:30:33 | 2017-08-25T11:30:33 | 101,397,724 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,261 | cpp | // OutPutDlg.cpp : 实现文件
//
#include "stdafx.h"
#include "CreateMap.h"
#include "OutPutDlg.h"
#include "afxdialogex.h"
// COutPutDlg 对话框
IMPLEMENT_DYNAMIC(COutPutDlg, CDialogEx)
COutPutDlg::COutPutDlg(CListCtrl* list, int W, int H, CWnd* pParent /*=NULL*/)
: CDialogEx(IDD_DIALOG1, pParent)
,plist(list)
{
m_nH = H;
m_nV = W;
}
COutPutDlg::~COutPutDlg()
{
}
void COutPutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(COutPutDlg, CDialogEx)
END_MESSAGE_MAP()
// COutPutDlg 消息处理程序
BOOL COutPutDlg::OnInitDialog()
{
CDialogEx::OnInitDialog();
// TODO: 在此添加额外的初始化
CString str;
CString buf;
str.Format("int map[%d][%d]={\r\n",m_nH * 2 + 1,m_nV * 2 + 1);
if (plist != NULL)
{
int count = plist->GetItemCount();
for (int i = 0; i<count ;i++)
{
str += " {";
for (int j = 0;j <m_nV * 2 + 1;j++)
{
buf = plist->GetItemText(i, j);
if (buf == "?")
{
str += "0";
}
else
{
str += buf;
}
str += ",";
}
str += "},\r\n";
}
}
str += "};";
SetDlgItemText(IDC_EDIT1, str);
return TRUE; // return TRUE unless you set the focus to a control
// 异常: OCX 属性页应返回 FALSE
}
| [
"929272671@qq.com"
] | 929272671@qq.com |
1cfe11ec6ad38a92678a746328d6f9c22ad06adc | 9a8073543bd0d027dc147d400845deb29f9d691c | /cpp/src/binary/jit/util/type.cpp | 0a43b7c8890ffe82f64ee2f3de24db3414da52e9 | [
"Apache-2.0"
] | permissive | VibhuJawa/cudf | 4615224a5a2ea6c404ead643dd7917bba0a7e010 | cda516e19fc49f30c1ad0a4c51051da24ba07f66 | refs/heads/branch-0.7 | 2023-09-01T03:22:41.053211 | 2019-05-08T00:41:33 | 2019-05-08T00:41:33 | 185,284,364 | 1 | 0 | Apache-2.0 | 2021-01-19T23:42:15 | 2019-05-06T23:09:29 | Cuda | UTF-8 | C++ | false | false | 4,614 | cpp | /*
* Copyright (c) 2019, NVIDIA CORPORATION.
*
* Copyright 2018-2019 BlazingDB, Inc.
* Copyright 2018 Christian Noboa Mardini <christian@blazingdb.com>
*
* 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 "binary/jit/util/type.h"
#include "utilities/type_dispatcher.hpp"
namespace cudf {
namespace binops {
namespace jit {
/**---------------------------------------------------------------------------*
* @brief Functor to get type name in string
*
* This functor uses the unofficial compiler macro __PRETTY_FUNCTION__
* to obtain the function signature which contains the template type name.
* The type name is searched and extracted from the string.
*
* Example (clang): __PRETTY_FUNCTION__ =
* std::string type_name::operator()() [T = short]
* returns std::string("short")
*
* Example (gcc): __PRETTY_FUNCTION__ =
* std::__cxx11::string type_name::operator()() [with T = short int; std::__cxx11::string = std::__cxx11::basic_string<char>]
* returns std::string("short int")
*
* In case the type is wrapped using `wrapper`, the extra string "wrapper<" is
* also skipped to get the underlying wrapped type.
*
*---------------------------------------------------------------------------**/
struct type_name {
template <class T>
CUDA_HOST_DEVICE_CALLABLE
std::string operator()() {
#if defined(__clang__) || defined(__GNUC__)
std::string p = __PRETTY_FUNCTION__;
std::string search_str = "T = ";
size_t start_pos = p.find(search_str) + search_str.size();
std::string wrapper_str = "wrapper<";
size_t wrapper_pos = p.find(wrapper_str, start_pos);
if (wrapper_pos != std::string::npos)
start_pos = wrapper_pos + wrapper_str.size();
size_t end_pos = p.find_first_of(",;]", start_pos);
return p.substr(start_pos, end_pos - start_pos);
#else
# error Only clang and gcc supported
#endif
}
};
/**---------------------------------------------------------------------------*
* @brief Get the Type Name
*
* @param type The data type
* @return std::string Name of the data type in string
*---------------------------------------------------------------------------**/
std::string getTypeName(gdf_dtype type) {
return type_dispatcher(type, type_name());
}
/**---------------------------------------------------------------------------*
* @brief Get the Operator Name
*
* @param ope (enum) The binary operator as enum of type gdf_binary_operator
* @return std::string The name of the operator as string
*---------------------------------------------------------------------------**/
std::string getOperatorName(gdf_binary_operator ope) {
switch (ope) {
case GDF_ADD:
return "Add";
case GDF_SUB:
return "Sub";
case GDF_MUL:
return "Mul";
case GDF_DIV:
return "Div";
case GDF_TRUE_DIV:
return "TrueDiv";
case GDF_FLOOR_DIV:
return "FloorDiv";
case GDF_MOD:
return "Mod";
case GDF_POW:
return "Pow";
case GDF_EQUAL:
return "Equal";
case GDF_NOT_EQUAL:
return "NotEqual";
case GDF_LESS:
return "Less";
case GDF_GREATER:
return "Greater";
case GDF_LESS_EQUAL:
return "LessEqual";
case GDF_GREATER_EQUAL:
return "GreaterEqual";
case GDF_BITWISE_AND:
return "BitwiseAnd";
case GDF_BITWISE_OR:
return "BitwiseOr";
case GDF_BITWISE_XOR:
return "BitwiseXor";
default:
return "None";
}
}
} // namespace jit
} // namespace binops
} // namespace cudf
| [
"dmakkar@nvidia.com"
] | dmakkar@nvidia.com |
cf5a4897e0d1fcd101d44e3fd69b4d8d607c8838 | af88029ba3ef854bc736fb150cc1eb6d80e9b305 | /Sprite.h | 3c627f050874b8fa592e866d0bc1afc4c100dcd6 | [] | no_license | XanMarta/alexa-game-engine | 11cc024696b8efeeaf4294adc740fe0703986d8f | 555dcba1dfde1a796524265ff1d603002c5ded55 | refs/heads/master | 2022-11-05T14:11:51.119109 | 2020-06-25T09:10:47 | 2020-06-25T09:10:47 | 263,297,988 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 329 | h | #ifndef SPRITE_H_INCLUDED
#define SPRITE_H_INCLUDED
#include "CanvasItem.h"
#include "RenderPack.h"
class Sprite : public CanvasItem
{
public:
image_type image;
void fix_to_size(Vector2 new_size);
void _physics_process();
private:
void render();
};
#endif // SPRITE_H_INCLUDED
| [
"gmxancrazy24114@gmail.com"
] | gmxancrazy24114@gmail.com |
9efde2bccf92961062a4d409c00ca28a6fc171cc | 4b07a94c883d2ed87501ba6c8fbd47a0c9a8d0c5 | /src/test/cpp/integration/Syl2_2_Test.cpp | f428d1003d90a6787bc805157f00c8056436420b | [] | no_license | bcdev/s3-synergy | 2e46177a36be19b4df92d6cb20970e720e7acecf | f241ccc0840a451565bcd430f2854af24c8b4f01 | refs/heads/master | 2021-01-23T17:30:21.798975 | 2014-10-01T13:27:03 | 2014-10-01T13:27:03 | 1,068,661 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,719 | cpp | /*
* Copyright (C) 2012 Brockmann Consult GmbH (info@brockmann-consult.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. This program is distributed in the hope 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 "../../../../src/main/cpp/core/ExitCode.h"
#include "../../../../src/main/cpp/modules/Aer.h"
#include "../../../../src/main/cpp/modules/Aei.h"
#include "../../../../src/main/cpp/modules/Ave.h"
#include "../../../../src/main/cpp/modules/Aco.h"
#include "../../../../src/main/cpp/modules/Col.h"
#include "../../../../src/main/cpp/modules/Pcl.h"
#include "../../../../src/main/cpp/reader/SynL1Reader.h"
#include "../../../../src/main/cpp/util/JobOrderParser.h"
#include "../../../../src/main/cpp/util/BasicTask.h"
#include "../../../../src/main/cpp/writer/SynL2Writer.h"
#include "../../../../src/main/cpp/writer/ManifestWriter.h"
#include "Syl2_2_Test.h"
CPPUNIT_TEST_SUITE_REGISTRATION(Syl2_2_Test);
Syl2_2_Test::Syl2_2_Test() {
}
Syl2_2_Test::~Syl2_2_Test() {
}
void Syl2_2_Test::setUp() {
}
void Syl2_2_Test::tearDown() {
}
void Syl2_2_Test::testIntegrationOfSynL2Modules() {
BasicTask task("SY_INT_SYL2_2");
shared_ptr<Module> reader = shared_ptr<Module>(new SynL1Reader());
shared_ptr<Module> col = shared_ptr<Module>(new Col());
shared_ptr<Module> pcl = shared_ptr<Module>(new Pcl());
shared_ptr<Module> ave = shared_ptr<Module>(new Ave());
shared_ptr<Module> aer = shared_ptr<Module>(new Aer());
shared_ptr<Module> aei = shared_ptr<Module>(new Aei());
shared_ptr<Module> aco = shared_ptr<Module>(new Aco());
shared_ptr<Module> writer = shared_ptr<Module>(new SynL2Writer());
shared_ptr<Module> manifestWriter = shared_ptr<Module>(new ManifestWriter(Constants::PRODUCT_SY2));
task.getContext().addModule(reader);
task.getContext().addModule(col);
task.getContext().addModule(pcl);
task.getContext().addModule(ave);
task.getContext().addModule(aer);
task.getContext().addModule(aei);
task.getContext().addModule(aco);
task.getContext().addModule(writer);
task.getContext().addModule(manifestWriter);
const int exitCode = task.execute(Constants::S3_SYNERGY_HOME + "/src/test/resources/jobs/JobOrder.SY_INT_SYL2_2.xml");
CPPUNIT_ASSERT(exitCode == ExitCode::OK);
}
| [
"ralf.quast@brockmann-consult.de"
] | ralf.quast@brockmann-consult.de |
0f432ad8894ce61443b887fdb2cca3c77af2704e | dcfa30f2e72377c66f907f002c52dd437de24d89 | /Visitor/cpp-source/rooms/LivingRoom.h | 3f9372da2136f0d78441b16a3a608a8cc29513f8 | [] | no_license | ghostrgk/PatternsCollection | 7fa9dad89e76c6702b227cf301b615ce1d7a8900 | bfd6fa1e6d63fe6759c5fff25d676706fd39c5c9 | refs/heads/master | 2022-09-11T08:50:54.455743 | 2020-05-24T14:23:48 | 2020-05-24T14:23:48 | 266,544,917 | 0 | 0 | null | 2020-05-24T13:18:53 | 2020-05-24T13:18:52 | null | UTF-8 | C++ | false | false | 222 | h | //
// Created by Pavel Akhtyamov on 2019-04-23.
//
#pragma once
#include "ElementRoom.h"
class LivingRoom : public ElementRoom {
public:
void Accept(Visitor *visitor) override;
std::string GetName() override;
};
| [
"akhtyamovpavel@gmail.com"
] | akhtyamovpavel@gmail.com |
49f8ef82d3ca2a105174b14a6b78d4a616eaa0a6 | 5d4bbc4ba9ab0ddf8a44034ad1a8f3cf0ee274a3 | /numberOfSubmatricesThatSumToTarget.cpp | 2e0b20bc292c967a1f43026286c99ef9ebc85790 | [] | no_license | a5batra/LeetCode-Solutions-in-C-plus-plus | eda25d641859d8da193825cf06fd7db845862224 | 2124763fce4b5f7c150c95578bf972fbba3d3b50 | refs/heads/master | 2021-12-08T21:41:11.234971 | 2021-08-11T20:43:13 | 2021-08-11T20:43:13 | 243,896,276 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,452 | cpp | //
// Created by Ankit Batra on 6/13/21.
//
/* Given a matrix and a target, return the number of non-empty submatrices that sum to target.
* A submatrix x1, y1, x2, y2 is the set of all cells matrix[x][y] with x1 <= x <= x2 and y1 <= y <= y2.
* Two submatrices (x1, y1, x2, y2) and (x1', y1', x2', y2') are different if they have some coordinate that is
* different: for example, if x1 != x1'. */
class Solution {
public:
int numSubmatrixSumTarget(vector<vector<int>>& matrix, int target) {
int m = matrix.size();
int n = matrix[0].size();
vector<vector<int>> rowPrefixSum(m, vector<int>(n));
for (int i = 0; i < m; ++i) rowPrefixSum[i][0] = matrix[i][0];
for (int i = 0; i < m; ++i) {
for (int j = 1; j < n; ++j) {
rowPrefixSum[i][j] = rowPrefixSum[i][j - 1] + matrix[i][j];
}
}
int ans = 0;
for (int c1 = 0; c1 < n; ++c1) {
for (int c2 = c1; c2 < n; ++c2) {
int prefixSum = 0;
unordered_map<int, int> dict;
dict[0] = 1;
for (int row = 0; row < m; ++row) {
prefixSum += rowPrefixSum[row][c2] - (c1 > 0 ? rowPrefixSum[row][c1 - 1] : 0);
if (dict.count(prefixSum - target)) ans += dict[prefixSum - target];
dict[prefixSum]++;
}
}
}
return ans;
}
};
| [
"a5batra@ucsd.edu"
] | a5batra@ucsd.edu |
1eb60c423990fb71b6c0e48a810f465a0f9160a5 | bd18edfafeec1470d9776f5a696780cbd8c2e978 | /SlimDX/source/direct3d10/EffectMatrixVariable.h | bc47817f153d35d728ac8be313205845969764c6 | [
"MIT"
] | permissive | MogreBindings/EngineDeps | 1e37db6cd2aad791dfbdfec452111c860f635349 | 7d1b8ecaa2cbd8e8e21ec47b3ce3a5ab979bdde7 | refs/heads/master | 2023-03-30T00:45:53.489795 | 2020-06-30T10:48:12 | 2020-06-30T10:48:12 | 276,069,149 | 0 | 1 | null | 2021-04-05T16:05:53 | 2020-06-30T10:33:46 | C++ | UTF-8 | C++ | false | false | 1,631 | h | /*
* Copyright (c) 2007-2010 SlimDX Group
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#pragma once
#include "../math/Matrix.h"
#include "EffectVariable.h"
namespace SlimDX
{
namespace Direct3D10
{
public ref class EffectMatrixVariable : public EffectVariable
{
private:
ID3D10EffectMatrixVariable* m_Pointer;
internal:
EffectMatrixVariable( ID3D10EffectMatrixVariable* pointer );
public:
EffectMatrixVariable( System::IntPtr pointer );
Result SetMatrix( Matrix matrix );
Result SetMatrix( array<Matrix>^ matrices );
};
}
}; | [
"Michael@localhost"
] | Michael@localhost |
444c2ee09a3a63506c3c72010643c932e5edbc24 | 36b415892c074f32eb77c2b91a5689e4d3d50eef | /NodoClase.cpp | 9d430f6ee06f7f16d11c7efe5baa231b755c2690 | [] | no_license | JosephArayaM/Proyecto-2 | beae70ebf7e745869b8dd0d0677b8aee4f411f83 | eacfbbfcd4a68a6d0510bff4f59772d177c3b4f0 | refs/heads/master | 2020-09-06T06:08:38.246246 | 2019-11-12T20:40:34 | 2019-11-12T20:40:34 | 220,346,861 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 530 | cpp | #include "NodoClase.h"
NodoClase::NodoClase(){
}
NodoClase::NodoClase(Clase* clase, NodoClase* siguiente){
this->clase = clase;
this->siguiente = siguiente;
}
NodoClase::~NodoClase(){}
Clase* NodoClase::getClase() {
return clase;
}
NodoClase* NodoClase::getSiguiente() {
return siguiente;
}
void NodoClase::setClase(Clase* clas) {
clase = clas;
}
void NodoClase::setSiguiente(NodoClase* _siguiente) {
siguiente = _siguiente;
}
string NodoClase::toString() {
return clase->toString();
} | [
"noreply@github.com"
] | noreply@github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.